diff options
| -rw-r--r-- | indoteknik_custom/models/airway_bill.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/indoteknik_custom/models/airway_bill.py b/indoteknik_custom/models/airway_bill.py index 638ec530..d92b7e5e 100644 --- a/indoteknik_custom/models/airway_bill.py +++ b/indoteknik_custom/models/airway_bill.py @@ -20,7 +20,6 @@ class AirwayBill(models.Model): delivered = fields.Boolean(string='Delivered', help='terkirim atau belum / true or false') response = fields.Char(string='Response', help='hasil history tracking dalam format json') way_bill_date = fields.Char(string='Way Bill Date', compute='_compute_way_bill_datetime') - # way_bill_time = fields.Char(string='Way Bill Time') weight = fields.Char(string='Weight ', compute='_compute_way_bill_weight') origin = fields.Char(string='Origin', compute='_compute_way_bill_origin') destination = fields.Char(string='Destination', compute='_compute_way_bill_destination') @@ -37,7 +36,6 @@ class AirwayBill(models.Model): status = fields.Char(string='Status', compute='_compute_way_bill_status') pod_receiver = fields.Char(string='Pod Receiver', compute='_compute_way_bill_pod_receiver') pod_datetime = fields.Char(string='Pod Date', compute='_compute_way_bill_pod_datetime') - # pod_time = fields.Char(string='Pod Time') def decode_response(self): self.ensure_one() |
