getPurchaseState()->getDeliveryRestrictionParams(); if ($volume = $rParams->getMaxVolume()) { $data['volume'] = $volume / 1000; // liters to m3 } elseif ($maxDimensions = $rParams->getMaxDimensions()) { $data['width'] = reset($maxDimensions); $data['length'] = next($maxDimensions); $data['height'] = next($maxDimensions); } // Manipulační jednotka = Big box L $data['mu_type'] = 'BBL'; } return $data; } }