diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2025-02-25 11:17:36 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2025-02-25 11:17:36 +0700 |
| commit | 787aa90ca730936c93e0afb250285ebc8708ad3a (patch) | |
| tree | 03131e5148eb8d99e02086bbb63f6a7f06a1e25d | |
| parent | f7a149c71824ba40f9e585d1df287b36853b7213 (diff) | |
<iman> cr approved margin SO
| -rwxr-xr-x | indoteknik_custom/models/sale_order.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/sale_order.py b/indoteknik_custom/models/sale_order.py index 430b4526..e23f39bc 100755 --- a/indoteknik_custom/models/sale_order.py +++ b/indoteknik_custom/models/sale_order.py @@ -1122,7 +1122,7 @@ class SaleOrder(models.Model): return self.total_percent_margin < 15 and not self.env.user.is_leader def _requires_approval_margin_manager(self): - return self.total_percent_margin <= 20 and not self.env.user.is_leader and not self.env.user.is_sales_manager + return self.total_percent_margin >= 15 and not self.env.user.is_leader and not self.env.user.is_sales_manager def _create_approval_notification(self, approval_role): title = 'Warning' |
