diff options
| -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: |
