diff options
| -rw-r--r-- | indoteknik_custom/models/account_bank_statement.py | 4 |
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 |
