From 17d1fa190f0cf80635b767a5624e6edd262ce0db Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sat, 1 Jan 2022 15:27:20 +0100 Subject: [PATCH] Fix : Fatal error: Uncaught Error: Call to a member function deleteFromShipment() on null in /home/httpd/vhosts/doliweb.com/httpdocs/expedition/class/expedition.class.php on line 1463 --- htdocs/expedition/class/expedition.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/expedition/class/expedition.class.php b/htdocs/expedition/class/expedition.class.php index dd0022b09dc..bd6c27f6771 100644 --- a/htdocs/expedition/class/expedition.class.php +++ b/htdocs/expedition/class/expedition.class.php @@ -1460,6 +1460,7 @@ class Expedition extends CommonObject // delete batch expedition line if (!$error) { + $shipmentlinebatch = new ExpeditionLineBatch($this->db); if ($shipmentlinebatch->deleteFromShipment($this->id) < 0) { $error++; $this->errors[] = "Error ".$this->db->lasterror(); }