mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
Compare commits
2 Commits
5964974458
...
d38d3fa736
Author | SHA1 | Date | |
---|---|---|---|
|
d38d3fa736 | ||
|
2a9284c289 |
@ -2068,7 +2068,7 @@ class Remote
|
||||
$result = $this->sendlist($i, $id, $data, true);
|
||||
}
|
||||
|
||||
} while (count($data[$i]['matrix_varianten']['artikel'])>=5000);
|
||||
} while (count($data[$i]['matrix_varianten']['artikel'] ?? [])>=5000);
|
||||
|
||||
return $result;
|
||||
}
|
||||
@ -2325,7 +2325,7 @@ class Remote
|
||||
$data->orderStatus = OrderStatus::Imported;
|
||||
|
||||
$sql = "
|
||||
SELECT
|
||||
SELECT DISTINCT
|
||||
v.id,
|
||||
v.tracking,
|
||||
v.tracking_link,
|
||||
|
@ -3432,7 +3432,7 @@ class Shopimporter_Shopware6 extends ShopimporterBase
|
||||
$this->shopwareRequest('POST', '_action/order_delivery/'.$deliveryId.'/state/ship');
|
||||
|
||||
$deliveryData = [
|
||||
'trackingCodes' => [$data->getTrackingNumberList()]
|
||||
'trackingCodes' => $data->getTrackingNumberList()
|
||||
];
|
||||
$this->shopwareRequest('PATCH', 'order-delivery/'.$deliveryId,$deliveryData);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user