From c9cb2d810fc88d7abbb20e91825d9df662053162 Mon Sep 17 00:00:00 2001 From: mreficent Date: Mon, 25 Nov 2019 15:21:04 +0100 Subject: [PATCH] [FIX] Remove unneeded and inefficient "store=True" --- account_move_fiscal_year/__manifest__.py | 2 +- account_move_fiscal_year/models/account_move_line.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/account_move_fiscal_year/__manifest__.py b/account_move_fiscal_year/__manifest__.py index e7502678..68bfd6e5 100644 --- a/account_move_fiscal_year/__manifest__.py +++ b/account_move_fiscal_year/__manifest__.py @@ -5,7 +5,7 @@ 'name': 'Account Move Fiscal Year', 'summary': """ Display the fiscal year on journal entries/item""", - 'version': '12.0.1.0.0', + 'version': '12.0.1.1.0', 'license': 'AGPL-3', 'author': 'ACSONE SA/NV, Odoo Community Association (OCA)', 'website': 'https://github.com/OCA/account-financial-tools', diff --git a/account_move_fiscal_year/models/account_move_line.py b/account_move_fiscal_year/models/account_move_line.py index 9b398a66..c85db8c7 100644 --- a/account_move_fiscal_year/models/account_move_line.py +++ b/account_move_fiscal_year/models/account_move_line.py @@ -10,4 +10,4 @@ class AccountMoveLine(models.Model): date_range_fy_id = fields.Many2one( related='move_id.date_range_fy_id', - store=True, copy=False) + )