diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2024-09-30 14:08:26 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2024-09-30 14:08:26 +0700 |
| commit | 3b83868fbdb29e8f5208035e5166a13e5d24f382 (patch) | |
| tree | 437eae685994f9f85682fe53805a476b45164d6d /indoteknik_custom/models/sale_order.py | |
| parent | e48193b793216a4ab82d88753ae144c08c3ddfaf (diff) | |
| parent | 5e1a6dc4d2bb04a36fcaef023fb9894336ebd4f6 (diff) | |
Merge branch 'unreserved_permission' into production
# Conflicts:
# indoteknik_custom/models/__init__.py
# indoteknik_custom/security/ir.model.access.csv
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 798b9109..d0a34007 100755 --- a/indoteknik_custom/models/sale_order.py +++ b/indoteknik_custom/models/sale_order.py @@ -111,6 +111,7 @@ class SaleOrder(models.Model): date_driver_departure = fields.Datetime(string='Departure Date', compute='_compute_date_kirim', copy=False) note_website = fields.Char(string="Note Website") use_button = fields.Boolean(string='Using Calculate Selling Price', copy=False) + unreserve_id = fields.Many2one('stock.picking', 'Unreserve Picking') voucher_shipping_id = fields.Many2one(comodel_name='voucher', string='Voucher Shipping', copy=False) margin_after_delivery_purchase = fields.Float(string='Margin After Delivery Purchase', compute='_compute_margin_after_delivery_purchase') percent_margin_after_delivery_purchase = fields.Float(string='% Margin After Delivery Purchase', compute='_compute_margin_after_delivery_purchase') |
