diff options
| -rw-r--r-- | indoteknik_custom/models/account_move.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/account_move.py b/indoteknik_custom/models/account_move.py index 58f142dc..e681d96e 100644 --- a/indoteknik_custom/models/account_move.py +++ b/indoteknik_custom/models/account_move.py @@ -320,7 +320,7 @@ class AccountMove(models.Model): def write(self, vals): if not self.env.user.is_accounting: - raise UserError("Hanya IT FAT yang bisa ubah data") + raise UserError("Hanya Finence yang bisa ubah data") return super(AccountMove, self).write(vals) # def write(self, vals): |
