From 985b1c45bf22e69523e3f4bc54586a7706fbb887 Mon Sep 17 00:00:00 2001 From: Camille Morand Date: Tue, 7 Jun 2022 10:49:08 +0200 Subject: [PATCH] [MIG] account_move_budget: Migration to 15.0 --- account_move_budget/__manifest__.py | 2 +- account_move_budget/models/account_move_budget_line.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/account_move_budget/__manifest__.py b/account_move_budget/__manifest__.py index f63b6848..c371c161 100644 --- a/account_move_budget/__manifest__.py +++ b/account_move_budget/__manifest__.py @@ -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)", diff --git a/account_move_budget/models/account_move_budget_line.py b/account_move_budget/models/account_move_budget_line.py index 3bfff1d0..c73fae16 100644 --- a/account_move_budget/models/account_move_budget_line.py +++ b/account_move_budget/models/account_move_budget_line.py @@ -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" )