diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-07-07 16:17:32 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-07-07 16:17:32 +0700 |
| commit | 6864978e0088a99b67d8cb0c9a0e9be636de78a8 (patch) | |
| tree | 652ccdf6aab64e26c62013d709c88bbdf3924171 | |
| parent | b27d4c067249d4f91d5b8a6ce5c5dd57fbf79292 (diff) | |
Delete unused field on airway_bill
Deleted fields:
- way_bill_time
- pod_time
| -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() |
