From 4337a6503cc3ceb1b2f474a90779c09d0d22717c Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Tue, 2 Jul 2024 10:33:35 +0200 Subject: [PATCH] class.remote.php send articles before stock (lagersync) --- www/lib/class.remote.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/www/lib/class.remote.php b/www/lib/class.remote.php index 1c9c4be1..33278a10 100644 --- a/www/lib/class.remote.php +++ b/www/lib/class.remote.php @@ -1934,12 +1934,12 @@ class Remote { // Bulk transfer (new 2024-06-28) $result = null; - if (!empty($lagerexport)) { - $result = $this->sendlistlager($id, $data); - } if (!empty($artikelexport) && !$nurlager) { $result = $this->sendlist($id, $data, true); } + if (!empty($lagerexport)) { + $result = $this->sendlistlager($id, $data); + } return $result; } @@ -2060,12 +2060,12 @@ class Remote { // Bulk transfer (new 2024-06-28) $result = null; - if (!empty($lagerexport)) { - $result = $this->sendlistlager($id, $data); - } if (!empty($artikelexport) && !$nurlager) { $result = $this->sendlist($id, $data, true); } + if (!empty($lagerexport)) { + $result = $this->sendlistlager($id, $data); + } return $result; }