This commit is contained in:
2026-01-18 21:12:27 +01:00
parent 3820f00182
commit b55c1e3c8f
2 changed files with 5 additions and 2 deletions

View File

@@ -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'),

View File

@@ -6,6 +6,7 @@
<field name="destination"/>
<field name="etd"/>
<field name="bl_date"/>
<field name="bl_number"/>
<field name="carrier"/>
<field name="vessel"/>
<field name="container_count"/>