2
0

[FIX] Remove unneeded and inefficient "store=True"

This commit is contained in:
mreficent 2019-11-25 15:21:04 +01:00 committed by BT-anieto
parent 3b2d853189
commit 5b09f6024b
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
{
'name': 'Account Move Fiscal Month',
'summary': """Display the fiscal month 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',

View File

@ -10,4 +10,4 @@ class AccountMoveLine(models.Model):
date_range_fm_id = fields.Many2one(
related='move_id.date_range_fm_id',
store=True, copy=False)
)