diff --git a/modules/automation/freight_booking.py b/modules/automation/freight_booking.py index a2e86dc..fd78d29 100644 --- a/modules/automation/freight_booking.py +++ b/modules/automation/freight_booking.py @@ -13,7 +13,8 @@ class FreightBookingInfo(ModelSQL, ModelView): origin = fields.Char("Origin") destination = fields.Char("Destination") etd = fields.Date("ETD") - bl_date = fields.Date("ETA") + bl_date = fields.Date("BL date") + bl_number = fields.Char("BL Nb") carrier = fields.Char("Carrier") vessel = fields.Char("Vessel") container_count = fields.Integer("Containers") @@ -35,7 +36,8 @@ class FreightBookingInfo(ModelSQL, ModelView): t.Loading.as_('origin'), t.Destination.as_('destination'), t.ETD_Date.as_('etd'), - t.BL_date.as_('bl_date'), + t.BL_Date.as_('bl_date'), + t.BL_Number.as_('bl_number'), t.Carrier.as_('carrier'), t.Vessel.as_('vessel'), t.NumberOfContainers.as_('container_count'), diff --git a/modules/automation/view/freight_booking_info_tree.xml b/modules/automation/view/freight_booking_info_tree.xml index af17ef3..34467a3 100644 --- a/modules/automation/view/freight_booking_info_tree.xml +++ b/modules/automation/view/freight_booking_info_tree.xml @@ -6,6 +6,7 @@ +