diff options
| -rw-r--r-- | fixco_custom/models/account_move.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fixco_custom/models/account_move.py b/fixco_custom/models/account_move.py index f8a9073..519c8d5 100644 --- a/fixco_custom/models/account_move.py +++ b/fixco_custom/models/account_move.py @@ -309,7 +309,7 @@ class AccountMove(models.Model): } def action_post(self): - if self.env.user.id not in [24, 13, 10, 2, 9, 15, 8, 22]: + if self.env.user.id not in [24, 13, 10, 2, 9, 15, 8, 22, 11]: raise UserError('Hanya Accounting yang bisa Post') for entry in self: |
