main #7

Merged
admin merged 620 commits from main into dev 2026-03-29 13:03:25 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit eef972c679 - Show all commits

View File

@@ -305,7 +305,7 @@ class AutomationCron(ModelSQL, ModelView):
shipment.bl_number = bl_number
shipment.bl_date = bl_date
shipment.etd = etd_date
shipment.eta = shipment.bl_date + timedelta(days=20)
shipment.etad = shipment.bl_date + timedelta(days=20)
# Sauvegarder ce shipment uniquement
ShipmentIn.save([shipment])

View File

@@ -490,7 +490,7 @@ class ShipmentIn(metaclass=PoolMeta):
"<p>"
f"<strong>BL number:</strong> {self.bl_number} | "
f"<strong>Vessel:</strong> {vessel} | "
f"<strong>ETA:</strong> {self.eta}"
f"<strong>ETA:</strong> {self.etad}"
"</p>"
)