summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2024-03-04 09:50:02 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2024-03-04 09:50:02 +0700
commit3b74c7064eaad188e92333cafcf73cc1e500f58b (patch)
tree426137fa8efd5655e8f253834194fdf5cdce842f
parent388ea472f3913accd9e962f7f5c592860be98488 (diff)
Update account bank statement access message
-rw-r--r--indoteknik_custom/models/account_bank_statement.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/indoteknik_custom/models/account_bank_statement.py b/indoteknik_custom/models/account_bank_statement.py
index 61e9ca31..801dad6a 100644
--- a/indoteknik_custom/models/account_bank_statement.py
+++ b/indoteknik_custom/models/account_bank_statement.py
@@ -8,12 +8,12 @@ class AccountBankStatement(models.Model):
def is_edited(self):
if not self.env.user.is_admin_reconcile:
- raise UserError('Yang berhak hanya Mba Tania dan Iqmal Saputra')
+ raise UserError('Anda tidak memiliki akses')
self.is_edit = True
def not_edited(self):
if not self.env.user.is_admin_reconcile:
- raise UserError('Yang berhak hanya Mba Tania dan Iqmal Saputra')
+ raise UserError('Anda tidak memiliki akses')
self.is_edit = False \ No newline at end of file