From 3b74c7064eaad188e92333cafcf73cc1e500f58b Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Mon, 4 Mar 2024 09:50:02 +0700 Subject: Update account bank statement access message --- indoteknik_custom/models/account_bank_statement.py | 4 ++-- 1 file 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 -- cgit v1.2.3