Skip to content

Commit

Permalink
[FIX] Remove unneeded and inefficient "store=True"
Browse files Browse the repository at this point in the history
  • Loading branch information
MiquelRForgeFlow committed Nov 25, 2019
1 parent a2be428 commit 9d89a67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion account_move_fiscal_month/models/account_move_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ class AccountMoveLine(models.Model):

date_range_fm_id = fields.Many2one(
related='move_id.date_range_fm_id', readonly=True,
store=True, copy=False)
copy=False)
2 changes: 1 addition & 1 deletion account_move_fiscal_year/models/account_move_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ class AccountMoveLine(models.Model):

date_range_fy_id = fields.Many2one(
related='move_id.date_range_fy_id', readonly=True,
store=True, copy=False)
copy=False)

0 comments on commit 9d89a67

Please sign in to comment.