diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2024-04-25 09:13:22 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2024-04-25 09:13:22 +0700 |
| commit | 175ee679cbd2af2245bc9468312a6ad28419e110 (patch) | |
| tree | 3e9a7ca24bfaf427bb977c4c20779297153db323 | |
| parent | 2fc3d45984feaf591fbd74f0ba04b692486311ed (diff) | |
Fix sale order field syntax
| -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 6f140072..3b6879cd 100755 --- a/indoteknik_custom/models/sale_order.py +++ b/indoteknik_custom/models/sale_order.py @@ -94,7 +94,7 @@ class SaleOrder(models.Model): web_approval = fields.Selection([ ('company', 'Company'), ('cust_manager', 'Customer Manager'), - ('cust_director', 'Customer Director') + ('cust_director', 'Customer Director'), ('cust_procurement', 'Customer Procurement') ], string='Web Approval', copy=False) compute_fullfillment = fields.Boolean(string='Compute Fullfillment', compute="_compute_fullfillment") |
