diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2024-01-23 10:03:42 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2024-01-23 10:03:42 +0700 |
| commit | f7fe2253a8c79ff5172cf74c1f1aa341c9bf4f07 (patch) | |
| tree | 9c3b7f9cd9b5fd1296d9670ec7337e715c60dc8e /indoteknik_custom/models/sale_order.py | |
| parent | e5dbcd62560f4083d413d474b123ed971926a2a0 (diff) | |
fix bug purchase pricelist, bug automatic purchase, bug log saleorder eta date
Diffstat (limited to 'indoteknik_custom/models/sale_order.py')
| -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 44790480..f00f5b1d 100755 --- a/indoteknik_custom/models/sale_order.py +++ b/indoteknik_custom/models/sale_order.py @@ -82,7 +82,7 @@ class SaleOrder(models.Model): email = fields.Char(string='Email') picking_iu_id = fields.Many2one('stock.picking', 'Picking IU') helper_by_id = fields.Many2one('res.users', 'Helper By') - eta_date = fields.Datetime(string='ETA Date', tracking=3, copy=False, compute='_compute_eta_date') + eta_date = fields.Datetime(string='ETA Date', copy=False, compute='_compute_eta_date') def _compute_eta_date(self): max_leadtime = 0 |
