diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2022-09-19 11:07:17 +0700 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2022-09-19 11:07:17 +0700 |
| commit | de08a79ca870602ec45f396a8476cfdc3c38aee6 (patch) | |
| tree | b92fb1affefe2579a87edd195fe34f2d8c1ca50d /indoteknik_custom/models/sale_order.py | |
| parent | 68cb8eaa625b9c96de7aeb9fc45c1db81921661e (diff) | |
| parent | b1c1914eafc652711633f6f11b096a2013cad7e2 (diff) | |
Merge & fix conflicts
Diffstat (limited to 'indoteknik_custom/models/sale_order.py')
| -rwxr-xr-x | indoteknik_custom/models/sale_order.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indoteknik_custom/models/sale_order.py b/indoteknik_custom/models/sale_order.py index 57a4921e..1db8a445 100755 --- a/indoteknik_custom/models/sale_order.py +++ b/indoteknik_custom/models/sale_order.py @@ -17,6 +17,7 @@ class SaleOrder(models.Model): ('pengajuan2', 'Approval Tyas'), ('approved', 'Approved'), ], string='Approval Status', readonly=True, copy=False, index=True, tracking=3) + carrier_id = fields.Many2one('delivery.carrier', string='Shipping Method') have_visit_service = fields.Boolean(string='Have Visit Service', help='To compute is customer get visit service', compute='_compute_have_visit_service') def _compute_have_visit_service(self): |
