Changed dimensions order in ICML

This commit is contained in:
gleemand 2021-07-12 17:36:17 +03:00 committed by GitHub
parent 14cbac39a6
commit 2f4897b35f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -198,7 +198,7 @@ class RetailcrmCatalog
$depth = round($product['depth'], 3);
if ($width !== 0.0 && $height !== 0.0) {
$dimensions = implode('/', array($width, $height, $depth));
$dimensions = implode('/', array($depth, $width, $height));
} else {
$dimensions = null;
}