summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-07-07 16:17:32 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-07-07 16:17:32 +0700
commit6864978e0088a99b67d8cb0c9a0e9be636de78a8 (patch)
tree652ccdf6aab64e26c62013d709c88bbdf3924171
parentb27d4c067249d4f91d5b8a6ce5c5dd57fbf79292 (diff)
Delete unused field on airway_bill
Deleted fields: - way_bill_time - pod_time
-rw-r--r--indoteknik_custom/models/airway_bill.py2
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()