diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2024-07-12 11:06:00 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2024-07-12 11:06:00 +0700 |
| commit | e4f8944160d26cdcf194642e88551bd08e82542a (patch) | |
| tree | 57bc2a161f58ca63b959c3a8748d5b5b94accc89 | |
| parent | a6a183c634f6a394694c446fe9cc22c8c9cc3b37 (diff) | |
fix error
| -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 919d1a0b..8e6e76d9 100755 --- a/indoteknik_custom/models/sale_order.py +++ b/indoteknik_custom/models/sale_order.py @@ -101,7 +101,7 @@ class SaleOrder(models.Model): ], string='Web Approval', copy=False) compute_fullfillment = fields.Boolean(string='Compute Fullfillment', compute="_compute_fullfillment") note_ekspedisi = fields.Char(string="Note Ekspedisi") - date_kirim_ril = fields.Datetime(string='Tanggal Kirim SJ', related='_compute_date_kirim', copy=False) + date_kirim_ril = fields.Datetime(string='Tanggal Kirim SJ', compute='_compute_date_kirim', copy=False) date_driver_departure = fields.Datetime(string='Arrival Date', related='picking_ids.driver_arrival_date', copy=False) note_website = fields.Char(string="Note Website") |
