summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/account_bank_statement.py
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2024-03-06 10:40:21 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2024-03-06 10:40:21 +0700
commitb774b4d834ee8f77b5d2782e88ed910d6778b9be (patch)
tree48c06bc14bac1694f78d60f4dd79cf8efb9e46d3 /indoteknik_custom/models/account_bank_statement.py
parentd569804844ee77f9f08879dda8c3f1e292470813 (diff)
parentde5a35b272b4c84b5eb7ab8d9d429a9cbae46381 (diff)
Merge branch 'production' into feature/web-sale-approval
Diffstat (limited to 'indoteknik_custom/models/account_bank_statement.py')
-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