diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2024-03-05 16:37:53 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2024-03-05 16:37:53 +0700 |
| commit | de5a35b272b4c84b5eb7ab8d9d429a9cbae46381 (patch) | |
| tree | 4250c5efb15b9f1e583427f6c2d20f7f5ae5b6d5 | |
| parent | 20042c0435492373f80a1e1d768185a2cd9e6f88 (diff) | |
| parent | c92baf9e02598c7556d85c010900c13b5eb81f61 (diff) | |
Merge branch 'production' of bitbucket.org:altafixco/indoteknik-addons into production
| -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 f44f624e..759329b0 100755 --- a/indoteknik_custom/models/sale_order.py +++ b/indoteknik_custom/models/sale_order.py @@ -15,7 +15,7 @@ class SaleOrder(models.Model): ('pengajuan2', 'Approval Pimpinan'), ('approved', 'Approved'), ], string='Approval Status', readonly=True, copy=False, index=True, tracking=3) - carrier_id = fields.Many2one('delivery.carrier', string='Shipping Method') + carrier_id = fields.Many2one('delivery.carrier', string='Shipping Method', tracking=3) have_visit_service = fields.Boolean(string='Have Visit Service', compute='_have_visit_service', help='To compute is customer get visit service') delivery_amt = fields.Float('Delivery Amt') shipping_cost_covered = fields.Selection([ |
