diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-12-08 15:31:46 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-12-08 15:31:46 +0700 |
| commit | de6039ab7675d91bcfcb67747d3c72be95a379e6 (patch) | |
| tree | df1fa2d9f235298988045c5be5a8e60b9951fd13 /indoteknik_custom/models/account_bank_statement.py | |
| parent | c1f7742c254898fa5981e8ca7d870ac42d3f8346 (diff) | |
| parent | c63d12bb9192ce845aace7489939c47c24973c66 (diff) | |
Merge branch 'production' into change/feature/promotion-program
Diffstat (limited to 'indoteknik_custom/models/account_bank_statement.py')
| -rw-r--r-- | indoteknik_custom/models/account_bank_statement.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/account_bank_statement.py b/indoteknik_custom/models/account_bank_statement.py index 23008f13..61e9ca31 100644 --- a/indoteknik_custom/models/account_bank_statement.py +++ b/indoteknik_custom/models/account_bank_statement.py @@ -4,7 +4,7 @@ from odoo.exceptions import AccessError, UserError, ValidationError class AccountBankStatement(models.Model): _inherit = "account.bank.statement" - is_edit = fields.Boolean(string='Unlock', default=False) + is_edit = fields.Boolean(string='Unlock', default=False, tracking=True) def is_edited(self): if not self.env.user.is_admin_reconcile: |
