2
0

[MIG] account_move_budget: Migration to 15.0

This commit is contained in:
Camille Morand 2022-06-07 10:49:08 +02:00 committed by David Jaen
parent 123c761944
commit 985b1c45bf
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
{
"name": "Account Move Budget",
"summary": "Create Accounting Budgets",
"version": "14.0.1.0.0",
"version": "15.0.1.0.0",
"category": "Accounting & Finance",
"website": "https://github.com/OCA/account-financial-tools",
"author": "ForgeFlow, " "Odoo Community Association (OCA)",

View File

@ -45,7 +45,7 @@ class AccountMoveBudgetLine(models.Model):
domain=[("deprecated", "=", False)],
default=lambda self: self._context.get("account_id", False),
)
date = fields.Date(string="Date", index=True, required=True)
date = fields.Date(index=True, required=True)
analytic_account_id = fields.Many2one(
"account.analytic.account", string="Analytic Account"
)