diff options
| -rw-r--r-- | indoteknik_custom/models/stock_inventory.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indoteknik_custom/models/stock_inventory.py b/indoteknik_custom/models/stock_inventory.py index e41854ef..432d9225 100644 --- a/indoteknik_custom/models/stock_inventory.py +++ b/indoteknik_custom/models/stock_inventory.py @@ -55,6 +55,7 @@ class StockInventory(models.Model): def action_start(self): if self.env.user.id not in [21, 17, 6277]: raise UserError("Hanya Rafly, denise, dan faisal yang bisa start inventory") + return super(StockInventory, self).action_start() @api.model def create(self, vals): |
