summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models
diff options
context:
space:
mode:
authorAzka Nathan <darizkyfaz@gmail.com>2023-11-04 09:19:07 +0700
committerAzka Nathan <darizkyfaz@gmail.com>2023-11-04 09:19:07 +0700
commitd05d1f609441ff0ead57d447c0ece63a968410de (patch)
tree9d10ebc0c2a6df0c556da90300a02f4e0205c019 /indoteknik_custom/models
parente94cfd1fee485d0e84fb50a66a7584572452b5dc (diff)
invisible field edit on reconcile
Diffstat (limited to 'indoteknik_custom/models')
-rw-r--r--indoteknik_custom/models/account_bank_statement.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/indoteknik_custom/models/account_bank_statement.py b/indoteknik_custom/models/account_bank_statement.py
index 495367e8..23008f13 100644
--- a/indoteknik_custom/models/account_bank_statement.py
+++ b/indoteknik_custom/models/account_bank_statement.py
@@ -4,16 +4,16 @@ from odoo.exceptions import AccessError, UserError, ValidationError
class AccountBankStatement(models.Model):
_inherit = "account.bank.statement"
- is_edit = fields.Boolean(string='Edit', default=False)
+ is_edit = fields.Boolean(string='Unlock', default=False)
def is_edited(self):
if not self.env.user.is_admin_reconcile:
- raise UserError('Yang berhak hanya Mba Tania')
+ raise UserError('Yang berhak hanya Mba Tania dan Iqmal Saputra')
self.is_edit = True
def not_edited(self):
if not self.env.user.is_admin_reconcile:
- raise UserError('Yang berhak hanya Mba Tania')
+ raise UserError('Yang berhak hanya Mba Tania dan Iqmal Saputra')
self.is_edit = False \ No newline at end of file