This commit is contained in:
2026-03-26 20:54:08 +01:00
parent e2bbd0e522
commit 97cc447e0a
5 changed files with 226 additions and 216 deletions

View File

@@ -192,6 +192,18 @@ class Invoice(metaclass=PoolMeta):
if shipment:
return shipment.bl_date
@property
def report_bl_nb(self):
shipment = self._get_report_shipment()
if shipment:
return shipment.bl_number
@property
def report_vessel(self):
shipment = self._get_report_shipment()
if shipment and shipment.vessel:
return shipment.vessel.vessel_name
@property
def report_loading_port(self):
shipment = self._get_report_shipment()