diff options
| author | FIN-IT_AndriFP <andrifebriyadiputra@gmail.com> | 2026-03-03 15:51:31 +0700 |
|---|---|---|
| committer | FIN-IT_AndriFP <andrifebriyadiputra@gmail.com> | 2026-03-03 15:51:31 +0700 |
| commit | d2d5a3b514d2974c97fac6eb922f7cd1f7b99096 (patch) | |
| tree | ffca622aed33f3a77999fda7e6e2ab76b117e030 | |
| parent | 6ff3a1abae7c0d9db659991811b69d4ad66effb8 (diff) | |
fix message
| -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 914a5329..723f225c 100644 --- a/indoteknik_custom/models/account_move.py +++ b/indoteknik_custom/models/account_move.py @@ -789,7 +789,7 @@ class AccountMove(models.Model): def action_open_change_date_wizard(self): if not self.env.user.is_accounting: - raise UserError('Hanya Accounting yang bisa Reset to Draft') + raise UserError('Hanya Accounting yang bisa edit tanggal journal entry') non_draft = self.filtered(lambda m: m.state != 'draft') if non_draft: raise UserError('Hanya invoice dengan status draft yang bisa diubah tanggalnya. Mohon reset ke draft terlebih dahulu.') |
