From b49fc1dcecd3543917c46f6c0a1505b271da5c51 Mon Sep 17 00:00:00 2001 From: Mqdd Date: Tue, 2 Dec 2025 10:03:46 +0700 Subject: fix stock inven action start --- indoteknik_custom/models/stock_inventory.py | 1 + 1 file changed, 1 insertion(+) 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): -- cgit v1.2.3