diff --git a/Components/TransactionReport/TransactionReport.php b/Components/TransactionReport/TransactionReport.php index 517de950..414bfa8a 100644 --- a/Components/TransactionReport/TransactionReport.php +++ b/Components/TransactionReport/TransactionReport.php @@ -47,10 +47,11 @@ public function reportOrder($orderId) /** * @param string $shopwareVersion + * @param string $instanceId * * @return void */ - public function report($shopwareVersion, Client $client) + public function report($shopwareVersion, $instanceId, Client $client) { $reportResult = $this->getReportResult($this->getReportedOrderIds()); $currencies = $reportResult->getCurrencies(); @@ -60,6 +61,7 @@ public function report($shopwareVersion, Client $client) 'identifier' => self::API_IDENTIFIER, 'reportDate' => (new DateTime())->format('Y-m-d\\TH:i:sP'), 'shopwareVersion' => $shopwareVersion, + 'instanceId' => $instanceId, 'currency' => $currency, 'reportDataKeys' => ['turnover' => $reportResult->getTurnover($currency)], ]; diff --git a/Setup/Assets/tables.sql b/Setup/Assets/tables.sql index d2b2b196..f8b6429a 100644 --- a/Setup/Assets/tables.sql +++ b/Setup/Assets/tables.sql @@ -150,3 +150,10 @@ CREATE TABLE IF NOT EXISTS `swag_payment_paypal_unified_transaction_report` ) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci; + +CREATE TABLE IF NOT EXISTS `swag_payment_paypal_unified_instance` +( + `instance_id` VARCHAR(36) NOT NULL +) ENGINE = InnoDB + DEFAULT CHARSET = utf8 + COLLATE = utf8_unicode_ci; diff --git a/Setup/Installer.php b/Setup/Installer.php index 5ceedaed..9b3a135c 100644 --- a/Setup/Installer.php +++ b/Setup/Installer.php @@ -9,6 +9,7 @@ namespace SwagPaymentPayPalUnified\Setup; use Doctrine\DBAL\Connection; +use Exception; use Shopware\Bundle\AttributeBundle\Service\CrudService; use Shopware\Bundle\AttributeBundle\Service\CrudServiceInterface; use Shopware\Bundle\AttributeBundle\Service\TypeMapping; @@ -108,6 +109,13 @@ public function install() true ); + try { + // call the instance id service to create the instance id + (new InstanceIdService($this->connection))->getInstanceId(); + } catch (Exception $exception) { + // no need to handle this exception + } + return true; } diff --git a/Setup/InstanceIdService.php b/Setup/InstanceIdService.php new file mode 100644 index 00000000..2d7d70d0 --- /dev/null +++ b/Setup/InstanceIdService.php @@ -0,0 +1,78 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace SwagPaymentPayPalUnified\Setup; + +use Doctrine\DBAL\Connection; +use RuntimeException; +use SwagPaymentPayPalUnified\Components\Uuid; + +final class InstanceIdService +{ + /** + * @var Connection + */ + private $connection; + + public function __construct(Connection $connection) + { + $this->connection = $connection; + } + + /** + * @return string + */ + public function getInstanceId() + { + $instanceId = $this->get(); + + if ($instanceId === null) { + $instanceId = $this->create(); + } + + return $instanceId; + } + + /** + * @return string|null + */ + private function get() + { + $result = $this->connection->createQueryBuilder() + ->select('instance_id') + ->from('swag_payment_paypal_unified_instance') + ->execute() + ->fetchColumn(); + + if (!$result) { + return null; + } + + return $result; + } + + /** + * @return string + */ + private function create() + { + $instanceId = Uuid::generateUuid(); + + $this->connection->createQueryBuilder() + ->insert('swag_payment_paypal_unified_instance') + ->values(['instance_id' => ':instanceId']) + ->setParameter('instanceId', $instanceId) + ->execute(); + + if ($instanceId !== $this->get()) { + throw new RuntimeException('Could not create instance id'); + } + + return $instanceId; + } +} diff --git a/Setup/Updater.php b/Setup/Updater.php index b2224692..c2a81676 100644 --- a/Setup/Updater.php +++ b/Setup/Updater.php @@ -32,6 +32,7 @@ use SwagPaymentPayPalUnified\Setup\Versions\UpdateTo610; use SwagPaymentPayPalUnified\Setup\Versions\UpdateTo616; use SwagPaymentPayPalUnified\Setup\Versions\UpdateTo617; +use SwagPaymentPayPalUnified\Setup\Versions\UpdateTo618; class Updater { @@ -256,6 +257,12 @@ public function update($oldVersion) $this->connection ))->update(); } + + if (\version_compare($oldVersion, '6.1.8', '<')) { + (new UpdateTo618( + $this->connection + ))->update(); + } } /** diff --git a/Setup/Versions/UpdateTo618.php b/Setup/Versions/UpdateTo618.php new file mode 100644 index 00000000..b182f51e --- /dev/null +++ b/Setup/Versions/UpdateTo618.php @@ -0,0 +1,56 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace SwagPaymentPayPalUnified\Setup\Versions; + +use Doctrine\DBAL\Connection; +use Exception; +use SwagPaymentPayPalUnified\Setup\InstanceIdService; + +class UpdateTo618 +{ + /** + * @var Connection + */ + private $connection; + + public function __construct(Connection $connection) + { + $this->connection = $connection; + } + + /** + * @return void + */ + public function update() + { + $this->createInstanceTable(); + + try { + (new InstanceIdService($this->connection))->getInstanceId(); + } catch (Exception $e) { + // no need to handle this exception + } + } + + /** + * @return void + */ + private function createInstanceTable() + { + $this->connection->executeQuery( + ' + CREATE TABLE IF NOT EXISTS `swag_payment_paypal_unified_instance` + ( + `instance_id` VARCHAR(36) NOT NULL + ) ENGINE = InnoDB + DEFAULT CHARSET = utf8 + COLLATE = utf8_unicode_ci;' + ); + } +} diff --git a/Subscriber/TransactionReportSubscriber.php b/Subscriber/TransactionReportSubscriber.php index 35b94375..c6757fc2 100644 --- a/Subscriber/TransactionReportSubscriber.php +++ b/Subscriber/TransactionReportSubscriber.php @@ -10,9 +10,11 @@ use Doctrine\DBAL\Connection; use Enlight\Event\SubscriberInterface; +use Exception; use GuzzleHttp\Client; use Shopware; use SwagPaymentPayPalUnified\Components\TransactionReport\TransactionReport; +use SwagPaymentPayPalUnified\Setup\InstanceIdService; use Symfony\Component\DependencyInjection\ContainerInterface; class TransactionReportSubscriber implements SubscriberInterface @@ -52,8 +54,15 @@ public function onTransactionReport() $shopwareVersion = $this->container->getParameter('shopware.release.version'); } + try { + $instanceId = (new InstanceIdService($this->connection))->getInstanceId(); + } catch (Exception $exception) { + $instanceId = ''; + } + (new TransactionReport($this->connection))->report( $shopwareVersion, + $instanceId, new Client(['base_uri' => TransactionReport::POST_URL]) ); } diff --git a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_basket.php b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_basket.php index cebb541c..281ae444 100644 --- a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_basket.php +++ b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_basket.php @@ -8,130 +8,105 @@ return [ 'content' => [ - 0 => [ - 'id' => 698, - 'sessionID' => '0c051221284ee8d67d238ace273f5987', - 'userID' => 2, - 'articlename' => 'Strandtuch "Ibiza"', - 'articleID' => 178, - 'ordernumber' => 'SW10178', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '16,76', - 'netprice' => 16.760000000000002, - 'tax_rate' => 19.0, - 'datum' => '2022-04-12 13:41:32', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 407, - 'articleDetailId' => 407, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 80, - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 0, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 38, - '__s_order_basket_attributes_basketID' => 698, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 178, - 'articleDetailsID' => 407, - 'ordernumber' => 'SW10178', - 'highlight' => false, - 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', - 'description_long' => ' + 0 => [ + 'id' => 698, + 'sessionID' => '0c051221284ee8d67d238ace273f5987', + 'userID' => 2, + 'articlename' => 'Strandtuch "Ibiza"', + 'articleID' => 178, + 'ordernumber' => 'SW10178', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '16,76', + 'netprice' => 16.760000000000002, + 'tax_rate' => 19.0, + 'datum' => '2022-04-12 13:41:32', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 407, + 'articleDetailId' => 407, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 80, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 0, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 38, + '__s_order_basket_attributes_basketID' => 698, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 178, + 'articleDetailsID' => 407, + 'ordernumber' => 'SW10178', + 'highlight' => false, + 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', + 'description_long' => ' o decertatio. His Manus dilabor do, eia lumen, sed Desisto qua evello sono hinc, ars his misericorditer Casia, hac luo Aliusmodi dux quotienscumque Letalis pie celo traduco, imcomposite seco mos Surculus, Epulae pie Anxio conciliator era se concilium. Terra quam dicto erro prolecto, quo per incommoditas paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe. ', - 'esd' => false, - 'articleName' => 'Strandtuch "Ibiza"', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 80, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-31', - 'sales' => 4, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 429, - 'articledetailsID' => 407, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Strandtuch "Ibiza"', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 80, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-31', + 'sales' => 4, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 429, + 'articledetailsID' => 407, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -152,240 +127,265 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '16,76', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 16.760000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '16,76', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 16.760000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', ], - 'amountWithTax' => 19.940000000000001, - 'amount' => '16,76', - 'amountnet' => '16,76', - 'priceNumeric' => 16.760000000000002, - 'amountNumeric' => 16.760000000000002, - 'amountnetNumeric' => 16.760000000000002, - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + 'marketing' => [], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 1131, - 'height' => 1698, - ], - ], + ], ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=698', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', - 'tax' => '3,18', + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '16,76', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 16.760000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '16,76', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 16.760000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', + ], + 'amountWithTax' => 19.940000000000001, + 'amount' => '16,76', + 'amountnet' => '16,76', + 'priceNumeric' => 16.760000000000002, + 'amountNumeric' => 16.760000000000002, + 'amountnetNumeric' => 16.760000000000002, + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 1131, + 'height' => 1698, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=698', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', + 'tax' => '3,18', ], + ], 'Amount' => '16,76', 'AmountNet' => '16,76', 'Quantity' => 1, @@ -401,8 +401,8 @@ 'sShippingcostsTax' => 19.0, 'sShippingcostsDifference' => 8386.6000000000004, 'sTaxRates' => [ - '19.00' => 7.3299999999999983, - ], + '19.00' => 7.3299999999999983, + ], 'sShippingcosts' => 21.84, 'sAmount' => 38.600000000000001, 'sAmountTax' => 7.3300000000000001, diff --git a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_basket_with_three_items_and_tax.php b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_basket_with_three_items_and_tax.php index 006b8b01..377b1ef4 100644 --- a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_basket_with_three_items_and_tax.php +++ b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_basket_with_three_items_and_tax.php @@ -8,136 +8,105 @@ return [ 'content' => [ - 0 => [ - 'id' => 954, - 'sessionID' => '72a648e01e92d85493e25e6d36c20cf4', - 'userID' => 2, - 'articlename' => 'Strandtuch "Ibiza"', - 'articleID' => 178, - 'ordernumber' => 'SW10178', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '84,03', - 'netprice' => 84.030000000000001, - 'tax_rate' => 19.0, - 'datum' => '2022-05-18 14:24:33', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 407, - 'articleDetailId' => 407, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 32, - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 0, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 94, - '__s_order_basket_attributes_basketID' => 954, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 178, - 'articleDetailsID' => 407, - 'ordernumber' => 'SW10178', - 'highlight' => false, - 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', - 'description_long' => ' + 0 => [ + 'id' => 954, + 'sessionID' => '72a648e01e92d85493e25e6d36c20cf4', + 'userID' => 2, + 'articlename' => 'Strandtuch "Ibiza"', + 'articleID' => 178, + 'ordernumber' => 'SW10178', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '84,03', + 'netprice' => 84.030000000000001, + 'tax_rate' => 19.0, + 'datum' => '2022-05-18 14:24:33', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 407, + 'articleDetailId' => 407, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 32, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 0, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 94, + '__s_order_basket_attributes_basketID' => 954, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 178, + 'articleDetailsID' => 407, + 'ordernumber' => 'SW10178', + 'highlight' => false, + 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', + 'description_long' => ' o decertatio. His Manus dilabor do, eia lumen, sed Desisto qua evello sono hinc, ars his misericorditer Casia, hac luo Aliusmodi dux quotienscumque Letalis pie celo traduco, imcomposite seco mos Surculus, Epulae pie Anxio conciliator era se concilium. Terra quam dicto erro prolecto, quo per incommoditas paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe. ', - 'esd' => false, - 'articleName' => 'Strandtuch "Ibiza"', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 32, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2022-05-18', - 'sales' => 51, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => '', - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 429, - 'articledetailsID' => 407, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'storage' => [ - ], - 'isNew' => false, - 'isTopSeller' => true, - 'comingSoon' => false, - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Strandtuch "Ibiza"', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 32, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2022-05-18', + 'sales' => 51, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => '', + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 429, + 'articledetailsID' => 407, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -158,369 +127,369 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => true, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '84,03', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 84.030000000000001, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '84,03', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 84.030000000000001, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', ], - 'amountWithTax' => 100.0, - 'amount' => '84,03', - 'amountnet' => '84,03', - 'priceNumeric' => 84.030000000000001, - 'amountNumeric' => 84.030000000000001, - 'amountnetNumeric' => 84.030000000000001, - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + 'marketing' => [ + 'storage' => [ + ], + 'isNew' => false, + 'isTopSeller' => true, + 'comingSoon' => false, + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => true, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '84,03', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 84.030000000000001, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 1131, - 'height' => 1698, - ], - ], + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '84,03', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 84.030000000000001, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', + ], + 'amountWithTax' => 100.0, + 'amount' => '84,03', + 'amountnet' => '84,03', + 'priceNumeric' => 84.030000000000001, + 'amountNumeric' => 84.030000000000001, + 'amountnetNumeric' => 84.030000000000001, + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=954', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', - 'tax' => '15,97', + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', ], - 1 => [ - 'id' => 955, - 'sessionID' => '72a648e01e92d85493e25e6d36c20cf4', - 'userID' => 2, - 'articlename' => 'Strandtuch in mehreren Farben blau', - 'articleID' => 179, - 'ordernumber' => 'SW10179.1', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '84,03', - 'netprice' => 84.030000000000001, - 'tax_rate' => 19.0, - 'datum' => '2022-05-18 14:24:56', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 409, - 'articleDetailId' => 409, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 91, - 'suppliernumber' => '', - 'maxpurchase' => 91, - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 95, - '__s_order_basket_attributes_basketID' => 955, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 179, - 'articleDetailsID' => 409, - 'ordernumber' => 'SW10179.1', - 'highlight' => true, - 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', - 'description_long' => ' + 'res' => [ + 'original' => [ + 'width' => 1131, + 'height' => 1698, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=954', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', + 'tax' => '15,97', + ], + 1 => [ + 'id' => 955, + 'sessionID' => '72a648e01e92d85493e25e6d36c20cf4', + 'userID' => 2, + 'articlename' => 'Strandtuch in mehreren Farben blau', + 'articleID' => 179, + 'ordernumber' => 'SW10179.1', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '84,03', + 'netprice' => 84.030000000000001, + 'tax_rate' => 19.0, + 'datum' => '2022-05-18 14:24:56', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 409, + 'articleDetailId' => 409, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 91, + 'suppliernumber' => '', + 'maxpurchase' => 91, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 95, + '__s_order_basket_attributes_basketID' => 955, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 179, + 'articleDetailsID' => 409, + 'ordernumber' => 'SW10179.1', + 'highlight' => true, + 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', + 'description_long' => ' Eficio uterus vel fugo pes eo ops altor. Me consulo sui voveo ymo Ficus Libero nex modo sui velitatio opportunus, qui cum res termino unde potestas Palmula do donum Chalybs se illius. Pars ars eo labes upilio. Se quin etsi Lac se at, do. Hi per ora lentulus Concino, en, vox se mei Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute. ', - 'esd' => false, - 'articleName' => 'Strandtuch in mehreren Farben', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 91, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => 'blau', - 'datum' => '2012-08-21', - 'update' => '2022-05-18', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => '37,81', - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => true, - 'metaTitle' => '', - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 431, - 'articledetailsID' => 409, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'storage' => [ - ], - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - ], - ], - 'allowBuyInListing' => false, + 'esd' => false, + 'articleName' => 'Strandtuch in mehreren Farben', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 91, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => 'blau', + 'datum' => '2012-08-21', + 'update' => '2022-05-18', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => '37,81', + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => true, + 'metaTitle' => '', + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 431, + 'articledetailsID' => 409, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -541,369 +510,369 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '37,81', - 'pseudoprice' => '0', - 'referenceprice' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 37.810000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '84,03', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 84.030000000000001, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.1', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.1', ], - 'amountWithTax' => 100.0, - 'amount' => '84,03', - 'amountnet' => '84,03', - 'priceNumeric' => 84.030000000000001, - 'amountNumeric' => 84.030000000000001, - 'amountnetNumeric' => 84.030000000000001, - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + 'marketing' => [ + 'storage' => [ + ], + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + ], + ], + 'allowBuyInListing' => false, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '37,81', + 'pseudoprice' => '0', + 'referenceprice' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 37.810000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 565, - 'height' => 849, - ], - ], + ], ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=955', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.1', - 'tax' => '15,97', + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '84,03', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 84.030000000000001, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.1', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.1', + ], + 'amountWithTax' => 100.0, + 'amount' => '84,03', + 'amountnet' => '84,03', + 'priceNumeric' => 84.030000000000001, + 'amountNumeric' => 84.030000000000001, + 'amountnetNumeric' => 84.030000000000001, + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ ], - 2 => [ - 'id' => 956, - 'sessionID' => '72a648e01e92d85493e25e6d36c20cf4', - 'userID' => 2, - 'articlename' => 'Strandtuch in mehreren Farben grün', - 'articleID' => 179, - 'ordernumber' => 'SW10179.3', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '84,03', - 'netprice' => 84.030000000000001, - 'tax_rate' => 19.0, - 'datum' => '2022-05-18 14:25:06', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 409, - 'articleDetailId' => 411, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 91, - 'suppliernumber' => '', - 'maxpurchase' => 91, - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 96, - '__s_order_basket_attributes_basketID' => 956, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 179, - 'articleDetailsID' => 411, - 'ordernumber' => 'SW10179.3', - 'highlight' => true, - 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', - 'description_long' => ' + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 565, + 'height' => 849, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=955', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.1', + 'tax' => '15,97', + ], + 2 => [ + 'id' => 956, + 'sessionID' => '72a648e01e92d85493e25e6d36c20cf4', + 'userID' => 2, + 'articlename' => 'Strandtuch in mehreren Farben grün', + 'articleID' => 179, + 'ordernumber' => 'SW10179.3', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '84,03', + 'netprice' => 84.030000000000001, + 'tax_rate' => 19.0, + 'datum' => '2022-05-18 14:25:06', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 409, + 'articleDetailId' => 411, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 91, + 'suppliernumber' => '', + 'maxpurchase' => 91, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 96, + '__s_order_basket_attributes_basketID' => 956, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 179, + 'articleDetailsID' => 411, + 'ordernumber' => 'SW10179.3', + 'highlight' => true, + 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', + 'description_long' => ' Eficio uterus vel fugo pes eo ops altor. Me consulo sui voveo ymo Ficus Libero nex modo sui velitatio opportunus, qui cum res termino unde potestas Palmula do donum Chalybs se illius. Pars ars eo labes upilio. Se quin etsi Lac se at, do. Hi per ora lentulus Concino, en, vox se mei Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute. ', - 'esd' => false, - 'articleName' => 'Strandtuch in mehreren Farben', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 91, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => 'grün', - 'datum' => '2012-08-21', - 'update' => '2022-05-18', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => '37,81', - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => true, - 'metaTitle' => '', - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 433, - 'articledetailsID' => 411, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'storage' => [ - ], - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - ], - ], - 'allowBuyInListing' => false, + 'esd' => false, + 'articleName' => 'Strandtuch in mehreren Farben', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 91, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => 'grün', + 'datum' => '2012-08-21', + 'update' => '2022-05-18', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => '37,81', + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => true, + 'metaTitle' => '', + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 433, + 'articledetailsID' => 411, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -924,240 +893,271 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '37,81', - 'pseudoprice' => '0', - 'referenceprice' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 37.810000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '84,03', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 84.030000000000001, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.3', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.3', ], - 'amountWithTax' => 100.0, - 'amount' => '84,03', - 'amountnet' => '84,03', - 'priceNumeric' => 84.030000000000001, - 'amountNumeric' => 84.030000000000001, - 'amountnetNumeric' => 84.030000000000001, - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + 'marketing' => [ + 'storage' => [ + ], + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + ], + ], + 'allowBuyInListing' => false, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '37,81', + 'pseudoprice' => '0', + 'referenceprice' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 37.810000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 565, - 'height' => 849, - ], - ], + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '84,03', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 84.030000000000001, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=956', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.3', - 'tax' => '15,97', + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.3', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.3', + ], + 'amountWithTax' => 100.0, + 'amount' => '84,03', + 'amountnet' => '84,03', + 'priceNumeric' => 84.030000000000001, + 'amountNumeric' => 84.030000000000001, + 'amountnetNumeric' => 84.030000000000001, + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 565, + 'height' => 849, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=956', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.3', + 'tax' => '15,97', ], + ], 'Amount' => '252,09', 'AmountNet' => '252,09', 'Quantity' => 3, @@ -1172,8 +1172,8 @@ 'sShippingcostsNet' => 3.2799999999999998, 'sShippingcostsTax' => 19.0, 'sTaxRates' => [ - '19.00' => 48.530000000000001, - ], + '19.00' => 48.530000000000001, + ], 'sShippingcosts' => 3.2799999999999998, 'sAmount' => 255.37, 'sAmountTax' => 48.530000000000001, diff --git a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_basket_with_three_items_without_tax.php b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_basket_with_three_items_without_tax.php index 006b8b01..377b1ef4 100644 --- a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_basket_with_three_items_without_tax.php +++ b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_basket_with_three_items_without_tax.php @@ -8,136 +8,105 @@ return [ 'content' => [ - 0 => [ - 'id' => 954, - 'sessionID' => '72a648e01e92d85493e25e6d36c20cf4', - 'userID' => 2, - 'articlename' => 'Strandtuch "Ibiza"', - 'articleID' => 178, - 'ordernumber' => 'SW10178', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '84,03', - 'netprice' => 84.030000000000001, - 'tax_rate' => 19.0, - 'datum' => '2022-05-18 14:24:33', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 407, - 'articleDetailId' => 407, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 32, - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 0, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 94, - '__s_order_basket_attributes_basketID' => 954, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 178, - 'articleDetailsID' => 407, - 'ordernumber' => 'SW10178', - 'highlight' => false, - 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', - 'description_long' => ' + 0 => [ + 'id' => 954, + 'sessionID' => '72a648e01e92d85493e25e6d36c20cf4', + 'userID' => 2, + 'articlename' => 'Strandtuch "Ibiza"', + 'articleID' => 178, + 'ordernumber' => 'SW10178', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '84,03', + 'netprice' => 84.030000000000001, + 'tax_rate' => 19.0, + 'datum' => '2022-05-18 14:24:33', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 407, + 'articleDetailId' => 407, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 32, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 0, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 94, + '__s_order_basket_attributes_basketID' => 954, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 178, + 'articleDetailsID' => 407, + 'ordernumber' => 'SW10178', + 'highlight' => false, + 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', + 'description_long' => ' o decertatio. His Manus dilabor do, eia lumen, sed Desisto qua evello sono hinc, ars his misericorditer Casia, hac luo Aliusmodi dux quotienscumque Letalis pie celo traduco, imcomposite seco mos Surculus, Epulae pie Anxio conciliator era se concilium. Terra quam dicto erro prolecto, quo per incommoditas paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe. ', - 'esd' => false, - 'articleName' => 'Strandtuch "Ibiza"', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 32, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2022-05-18', - 'sales' => 51, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => '', - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 429, - 'articledetailsID' => 407, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'storage' => [ - ], - 'isNew' => false, - 'isTopSeller' => true, - 'comingSoon' => false, - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Strandtuch "Ibiza"', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 32, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2022-05-18', + 'sales' => 51, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => '', + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 429, + 'articledetailsID' => 407, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -158,369 +127,369 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => true, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '84,03', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 84.030000000000001, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '84,03', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 84.030000000000001, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', ], - 'amountWithTax' => 100.0, - 'amount' => '84,03', - 'amountnet' => '84,03', - 'priceNumeric' => 84.030000000000001, - 'amountNumeric' => 84.030000000000001, - 'amountnetNumeric' => 84.030000000000001, - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + 'marketing' => [ + 'storage' => [ + ], + 'isNew' => false, + 'isTopSeller' => true, + 'comingSoon' => false, + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => true, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '84,03', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 84.030000000000001, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 1131, - 'height' => 1698, - ], - ], + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '84,03', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 84.030000000000001, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', + ], + 'amountWithTax' => 100.0, + 'amount' => '84,03', + 'amountnet' => '84,03', + 'priceNumeric' => 84.030000000000001, + 'amountNumeric' => 84.030000000000001, + 'amountnetNumeric' => 84.030000000000001, + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=954', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', - 'tax' => '15,97', + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', ], - 1 => [ - 'id' => 955, - 'sessionID' => '72a648e01e92d85493e25e6d36c20cf4', - 'userID' => 2, - 'articlename' => 'Strandtuch in mehreren Farben blau', - 'articleID' => 179, - 'ordernumber' => 'SW10179.1', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '84,03', - 'netprice' => 84.030000000000001, - 'tax_rate' => 19.0, - 'datum' => '2022-05-18 14:24:56', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 409, - 'articleDetailId' => 409, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 91, - 'suppliernumber' => '', - 'maxpurchase' => 91, - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 95, - '__s_order_basket_attributes_basketID' => 955, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 179, - 'articleDetailsID' => 409, - 'ordernumber' => 'SW10179.1', - 'highlight' => true, - 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', - 'description_long' => ' + 'res' => [ + 'original' => [ + 'width' => 1131, + 'height' => 1698, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=954', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', + 'tax' => '15,97', + ], + 1 => [ + 'id' => 955, + 'sessionID' => '72a648e01e92d85493e25e6d36c20cf4', + 'userID' => 2, + 'articlename' => 'Strandtuch in mehreren Farben blau', + 'articleID' => 179, + 'ordernumber' => 'SW10179.1', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '84,03', + 'netprice' => 84.030000000000001, + 'tax_rate' => 19.0, + 'datum' => '2022-05-18 14:24:56', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 409, + 'articleDetailId' => 409, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 91, + 'suppliernumber' => '', + 'maxpurchase' => 91, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 95, + '__s_order_basket_attributes_basketID' => 955, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 179, + 'articleDetailsID' => 409, + 'ordernumber' => 'SW10179.1', + 'highlight' => true, + 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', + 'description_long' => ' Eficio uterus vel fugo pes eo ops altor. Me consulo sui voveo ymo Ficus Libero nex modo sui velitatio opportunus, qui cum res termino unde potestas Palmula do donum Chalybs se illius. Pars ars eo labes upilio. Se quin etsi Lac se at, do. Hi per ora lentulus Concino, en, vox se mei Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute. ', - 'esd' => false, - 'articleName' => 'Strandtuch in mehreren Farben', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 91, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => 'blau', - 'datum' => '2012-08-21', - 'update' => '2022-05-18', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => '37,81', - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => true, - 'metaTitle' => '', - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 431, - 'articledetailsID' => 409, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'storage' => [ - ], - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - ], - ], - 'allowBuyInListing' => false, + 'esd' => false, + 'articleName' => 'Strandtuch in mehreren Farben', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 91, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => 'blau', + 'datum' => '2012-08-21', + 'update' => '2022-05-18', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => '37,81', + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => true, + 'metaTitle' => '', + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 431, + 'articledetailsID' => 409, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -541,369 +510,369 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '37,81', - 'pseudoprice' => '0', - 'referenceprice' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 37.810000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '84,03', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 84.030000000000001, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.1', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.1', ], - 'amountWithTax' => 100.0, - 'amount' => '84,03', - 'amountnet' => '84,03', - 'priceNumeric' => 84.030000000000001, - 'amountNumeric' => 84.030000000000001, - 'amountnetNumeric' => 84.030000000000001, - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + 'marketing' => [ + 'storage' => [ + ], + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + ], + ], + 'allowBuyInListing' => false, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '37,81', + 'pseudoprice' => '0', + 'referenceprice' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 37.810000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 565, - 'height' => 849, - ], - ], + ], ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=955', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.1', - 'tax' => '15,97', + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '84,03', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 84.030000000000001, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.1', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.1', + ], + 'amountWithTax' => 100.0, + 'amount' => '84,03', + 'amountnet' => '84,03', + 'priceNumeric' => 84.030000000000001, + 'amountNumeric' => 84.030000000000001, + 'amountnetNumeric' => 84.030000000000001, + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ ], - 2 => [ - 'id' => 956, - 'sessionID' => '72a648e01e92d85493e25e6d36c20cf4', - 'userID' => 2, - 'articlename' => 'Strandtuch in mehreren Farben grün', - 'articleID' => 179, - 'ordernumber' => 'SW10179.3', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '84,03', - 'netprice' => 84.030000000000001, - 'tax_rate' => 19.0, - 'datum' => '2022-05-18 14:25:06', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 409, - 'articleDetailId' => 411, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 91, - 'suppliernumber' => '', - 'maxpurchase' => 91, - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 96, - '__s_order_basket_attributes_basketID' => 956, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 179, - 'articleDetailsID' => 411, - 'ordernumber' => 'SW10179.3', - 'highlight' => true, - 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', - 'description_long' => ' + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 565, + 'height' => 849, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=955', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.1', + 'tax' => '15,97', + ], + 2 => [ + 'id' => 956, + 'sessionID' => '72a648e01e92d85493e25e6d36c20cf4', + 'userID' => 2, + 'articlename' => 'Strandtuch in mehreren Farben grün', + 'articleID' => 179, + 'ordernumber' => 'SW10179.3', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '84,03', + 'netprice' => 84.030000000000001, + 'tax_rate' => 19.0, + 'datum' => '2022-05-18 14:25:06', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 409, + 'articleDetailId' => 411, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 91, + 'suppliernumber' => '', + 'maxpurchase' => 91, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 96, + '__s_order_basket_attributes_basketID' => 956, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 179, + 'articleDetailsID' => 411, + 'ordernumber' => 'SW10179.3', + 'highlight' => true, + 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', + 'description_long' => ' Eficio uterus vel fugo pes eo ops altor. Me consulo sui voveo ymo Ficus Libero nex modo sui velitatio opportunus, qui cum res termino unde potestas Palmula do donum Chalybs se illius. Pars ars eo labes upilio. Se quin etsi Lac se at, do. Hi per ora lentulus Concino, en, vox se mei Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute. ', - 'esd' => false, - 'articleName' => 'Strandtuch in mehreren Farben', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 91, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => 'grün', - 'datum' => '2012-08-21', - 'update' => '2022-05-18', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => '37,81', - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => true, - 'metaTitle' => '', - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 433, - 'articledetailsID' => 411, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'storage' => [ - ], - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - ], - ], - 'allowBuyInListing' => false, + 'esd' => false, + 'articleName' => 'Strandtuch in mehreren Farben', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 91, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => 'grün', + 'datum' => '2012-08-21', + 'update' => '2022-05-18', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => '37,81', + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => true, + 'metaTitle' => '', + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 433, + 'articledetailsID' => 411, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -924,240 +893,271 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '37,81', - 'pseudoprice' => '0', - 'referenceprice' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 37.810000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '84,03', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 84.030000000000001, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.3', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.3', ], - 'amountWithTax' => 100.0, - 'amount' => '84,03', - 'amountnet' => '84,03', - 'priceNumeric' => 84.030000000000001, - 'amountNumeric' => 84.030000000000001, - 'amountnetNumeric' => 84.030000000000001, - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + 'marketing' => [ + 'storage' => [ + ], + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + ], + ], + 'allowBuyInListing' => false, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '37,81', + 'pseudoprice' => '0', + 'referenceprice' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 37.810000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 565, - 'height' => 849, - ], - ], + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '84,03', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 84.030000000000001, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=956', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.3', - 'tax' => '15,97', + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.3', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.3', + ], + 'amountWithTax' => 100.0, + 'amount' => '84,03', + 'amountnet' => '84,03', + 'priceNumeric' => 84.030000000000001, + 'amountNumeric' => 84.030000000000001, + 'amountnetNumeric' => 84.030000000000001, + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 565, + 'height' => 849, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=956', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.3', + 'tax' => '15,97', ], + ], 'Amount' => '252,09', 'AmountNet' => '252,09', 'Quantity' => 3, @@ -1172,8 +1172,8 @@ 'sShippingcostsNet' => 3.2799999999999998, 'sShippingcostsTax' => 19.0, 'sTaxRates' => [ - '19.00' => 48.530000000000001, - ], + '19.00' => 48.530000000000001, + ], 'sShippingcosts' => 3.2799999999999998, 'sAmount' => 255.37, 'sAmountTax' => 48.530000000000001, diff --git a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_customer.php b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_customer.php index 82380b7a..f392f666 100644 --- a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_customer.php +++ b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2b_customer.php @@ -8,144 +8,144 @@ return [ 'billingaddress' => [ + 'id' => 2, + 'company' => 'B2B', + 'department' => 'Einkauf', + 'salutation' => 'mr', + 'firstname' => 'Händler', + 'title' => null, + 'lastname' => 'Kundengruppe-Netto', + 'street' => 'Musterweg 1', + 'zipcode' => '55555', + 'city' => 'Musterstadt', + 'phone' => '012345 / 6789', + 'vatId' => null, + 'additionalAddressLine1' => null, + 'additionalAddressLine2' => null, + 'countryId' => 2, + 'stateId' => 3, + 'customer' => [ 'id' => 2, - 'company' => 'B2B', - 'department' => 'Einkauf', + ], + 'country' => [ + 'id' => 2, + ], + 'state' => [ + 'id' => 3, + ], + 'userID' => 2, + 'countryID' => 2, + 'stateID' => 3, + 'ustid' => null, + 'additional_address_line1' => null, + 'additional_address_line2' => null, + 'attributes' => [ + ], + ], + 'additional' => [ + 'country' => [ + 'id' => 2, + 'countryname' => 'Deutschland', + 'countryiso' => 'DE', + 'areaID' => 1, + 'countryen' => 'GERMANY', + 'position' => 1, + 'notice' => '', + 'taxfree' => 0, + 'taxfree_ustid' => 0, + 'taxfree_ustid_checked' => 0, + 'active' => 1, + 'iso3' => 'DEU', + 'display_state_in_registration' => 0, + 'force_state_in_registration' => 0, + 'allow_shipping' => 1, + 'countryarea' => 'deutschland', + ], + 'state' => [ + 'id' => 3, + 'countryID' => 2, + 'name' => 'Nordrhein-Westfalen', + 'shortcode' => 'NW', + 'position' => 0, + 'active' => 1, + 'statename' => 'Nordrhein-Westfalen', + ], + 'user' => [ + 'id' => 2, + 'password' => '$2y$10$87mlTWk2QprhhfOYuYM5HegrqK6UDfepdW.3sVutKHnSFQbHifGH6', + 'encoder' => 'bcrypt', + 'email' => 'mustermann@b2b.de', + 'active' => 1, + 'accountmode' => 0, + 'confirmationkey' => '', + 'paymentID' => 7, + 'doubleOptinRegister' => 0, + 'doubleOptinEmailSentDate' => null, + 'doubleOptinConfirmDate' => null, + 'firstlogin' => '2012-08-30', + 'lastlogin' => '2022-04-12 11:53:46', + 'sessionID' => '0c051221284ee8d67d238ace273f5987', + 'newsletter' => 0, + 'validation' => '0', + 'affiliate' => 0, + 'customergroup' => 'H', + 'paymentpreset' => 4, + 'language' => '1', + 'subshopID' => 1, + 'referer' => '', + 'pricegroupID' => null, + 'internalcomment' => '', + 'failedlogins' => 0, + 'lockeduntil' => null, + 'default_billing_address_id' => 2, + 'default_shipping_address_id' => 4, + 'title' => null, 'salutation' => 'mr', 'firstname' => 'Händler', - 'title' => null, 'lastname' => 'Kundengruppe-Netto', - 'street' => 'Musterweg 1', - 'zipcode' => '55555', - 'city' => 'Musterstadt', - 'phone' => '012345 / 6789', - 'vatId' => null, - 'additionalAddressLine1' => null, - 'additionalAddressLine2' => null, - 'countryId' => 2, - 'stateId' => 3, - 'customer' => [ - 'id' => 2, - ], - 'country' => [ - 'id' => 2, - ], - 'state' => [ - 'id' => 3, - ], - 'userID' => 2, + 'birthday' => null, + 'customernumber' => '20003', + 'login_token' => 'c6fa799d-72f6-4b01-b7f0-d40017299271.1', + 'changed' => null, + 'password_change_date' => '2022-04-12 08:24:11', + 'register_opt_in_id' => null, + ], + 'countryShipping' => [ + 'id' => 2, + 'countryname' => 'Deutschland', + 'countryiso' => 'DE', + 'areaID' => 1, + 'countryen' => 'GERMANY', + 'position' => 1, + 'notice' => '', + 'taxfree' => 0, + 'taxfree_ustid' => 0, + 'taxfree_ustid_checked' => 0, + 'active' => 1, + 'iso3' => 'DEU', + 'display_state_in_registration' => 0, + 'force_state_in_registration' => 0, + 'allow_shipping' => 1, + 'countryarea' => 'deutschland', + ], + 'stateShipping' => [ + 'id' => 3, 'countryID' => 2, - 'stateID' => 3, - 'ustid' => null, - 'additional_address_line1' => null, - 'additional_address_line2' => null, - 'attributes' => [ - ], + 'name' => 'Nordrhein-Westfalen', + 'shortcode' => 'NW', + 'position' => 0, + 'active' => 1, + 'statename' => 'Nordrhein-Westfalen', ], - 'additional' => [ - 'country' => [ - 'id' => 2, - 'countryname' => 'Deutschland', - 'countryiso' => 'DE', - 'areaID' => 1, - 'countryen' => 'GERMANY', - 'position' => 1, - 'notice' => '', - 'taxfree' => 0, - 'taxfree_ustid' => 0, - 'taxfree_ustid_checked' => 0, - 'active' => 1, - 'iso3' => 'DEU', - 'display_state_in_registration' => 0, - 'force_state_in_registration' => 0, - 'allow_shipping' => 1, - 'countryarea' => 'deutschland', - ], - 'state' => [ - 'id' => 3, - 'countryID' => 2, - 'name' => 'Nordrhein-Westfalen', - 'shortcode' => 'NW', - 'position' => 0, - 'active' => 1, - 'statename' => 'Nordrhein-Westfalen', - ], - 'user' => [ - 'id' => 2, - 'password' => '$2y$10$87mlTWk2QprhhfOYuYM5HegrqK6UDfepdW.3sVutKHnSFQbHifGH6', - 'encoder' => 'bcrypt', - 'email' => 'mustermann@b2b.de', - 'active' => 1, - 'accountmode' => 0, - 'confirmationkey' => '', - 'paymentID' => 7, - 'doubleOptinRegister' => 0, - 'doubleOptinEmailSentDate' => null, - 'doubleOptinConfirmDate' => null, - 'firstlogin' => '2012-08-30', - 'lastlogin' => '2022-04-12 11:53:46', - 'sessionID' => '0c051221284ee8d67d238ace273f5987', - 'newsletter' => 0, - 'validation' => '0', - 'affiliate' => 0, - 'customergroup' => 'H', - 'paymentpreset' => 4, - 'language' => '1', - 'subshopID' => 1, - 'referer' => '', - 'pricegroupID' => null, - 'internalcomment' => '', - 'failedlogins' => 0, - 'lockeduntil' => null, - 'default_billing_address_id' => 2, - 'default_shipping_address_id' => 4, - 'title' => null, - 'salutation' => 'mr', - 'firstname' => 'Händler', - 'lastname' => 'Kundengruppe-Netto', - 'birthday' => null, - 'customernumber' => '20003', - 'login_token' => 'c6fa799d-72f6-4b01-b7f0-d40017299271.1', - 'changed' => null, - 'password_change_date' => '2022-04-12 08:24:11', - 'register_opt_in_id' => null, - ], - 'countryShipping' => [ - 'id' => 2, - 'countryname' => 'Deutschland', - 'countryiso' => 'DE', - 'areaID' => 1, - 'countryen' => 'GERMANY', - 'position' => 1, - 'notice' => '', - 'taxfree' => 0, - 'taxfree_ustid' => 0, - 'taxfree_ustid_checked' => 0, - 'active' => 1, - 'iso3' => 'DEU', - 'display_state_in_registration' => 0, - 'force_state_in_registration' => 0, - 'allow_shipping' => 1, - 'countryarea' => 'deutschland', - ], - 'stateShipping' => [ - 'id' => 3, - 'countryID' => 2, - 'name' => 'Nordrhein-Westfalen', - 'shortcode' => 'NW', - 'position' => 0, - 'active' => 1, - 'statename' => 'Nordrhein-Westfalen', - ], - 'payment' => [ - 'id' => 7, - 'name' => 'SwagPaymentPayPalUnified', - 'description' => 'PayPal', - 'template' => '', - 'class' => '', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => ' + 'payment' => [ + 'id' => 7, + 'name' => 'SwagPaymentPayPalUnified', + 'description' => 'PayPal', + 'template' => '', + 'class' => '', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => ' Logo \'PayPal empfohlen\' @@ -153,59 +153,59 @@ Bezahlung per PayPal - einfach, schnell und sicher.', - 'debit_percent' => 0.0, - 'surcharge' => 0.0, - 'surchargestring' => '', - 'position' => -100, - 'active' => 1, - 'esdactive' => 0, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => 'PaypalUnifiedV2', - 'pluginID' => 59, - 'source' => null, - 'mobile_inactive' => 0, - 'attributes' => [ - ], - 'validation' => [ - ], - ], - 'charge_vat' => true, - 'show_net' => false, + 'debit_percent' => 0.0, + 'surcharge' => 0.0, + 'surchargestring' => '', + 'position' => -100, + 'active' => 1, + 'esdactive' => 0, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => 'PaypalUnifiedV2', + 'pluginID' => 59, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ + ], + 'validation' => [ + ], ], + 'charge_vat' => true, + 'show_net' => false, + ], 'shippingaddress' => [ - 'id' => 4, - 'company' => 'B2B', - 'department' => 'Einkauf', - 'salutation' => 'mr', - 'firstname' => 'Händler', - 'title' => null, - 'lastname' => 'Kundengruppe-Netto', - 'street' => 'Musterweg 1', - 'zipcode' => '00000', - 'city' => 'Musterstadt', - 'phone' => null, - 'vatId' => null, - 'additionalAddressLine1' => null, - 'additionalAddressLine2' => null, - 'countryId' => 2, - 'stateId' => 3, - 'customer' => [ - 'id' => 2, - ], - 'country' => [ - 'id' => 2, - ], - 'state' => [ - 'id' => 3, - ], - 'userID' => 2, - 'countryID' => 2, - 'stateID' => 3, - 'ustid' => null, - 'additional_address_line1' => null, - 'additional_address_line2' => null, - 'attributes' => [ - ], + 'id' => 4, + 'company' => 'B2B', + 'department' => 'Einkauf', + 'salutation' => 'mr', + 'firstname' => 'Händler', + 'title' => null, + 'lastname' => 'Kundengruppe-Netto', + 'street' => 'Musterweg 1', + 'zipcode' => '00000', + 'city' => 'Musterstadt', + 'phone' => null, + 'vatId' => null, + 'additionalAddressLine1' => null, + 'additionalAddressLine2' => null, + 'countryId' => 2, + 'stateId' => 3, + 'customer' => [ + 'id' => 2, + ], + 'country' => [ + 'id' => 2, + ], + 'state' => [ + 'id' => 3, + ], + 'userID' => 2, + 'countryID' => 2, + 'stateID' => 3, + 'ustid' => null, + 'additional_address_line1' => null, + 'additional_address_line2' => null, + 'attributes' => [ ], + ], ]; diff --git a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2c_basket.php b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2c_basket.php index f3557ce3..75957483 100644 --- a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2c_basket.php +++ b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2c_basket.php @@ -8,130 +8,105 @@ return [ 'content' => [ - 0 => [ - 'id' => 700, - 'sessionID' => 'ad5bdece48af0f1c1c4fc044f1c638dc', - 'userID' => 1, - 'articlename' => 'Strandtuch "Ibiza"', - 'articleID' => 178, - 'ordernumber' => 'SW10178', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '19,95', - 'netprice' => 16.764705882352999, - 'tax_rate' => 19.0, - 'datum' => '2022-04-12 14:22:09', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'index', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 407, - 'articleDetailId' => 407, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 80, - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 0, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 40, - '__s_order_basket_attributes_basketID' => 700, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 178, - 'articleDetailsID' => 407, - 'ordernumber' => 'SW10178', - 'highlight' => false, - 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', - 'description_long' => ' + 0 => [ + 'id' => 700, + 'sessionID' => 'ad5bdece48af0f1c1c4fc044f1c638dc', + 'userID' => 1, + 'articlename' => 'Strandtuch "Ibiza"', + 'articleID' => 178, + 'ordernumber' => 'SW10178', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '19,95', + 'netprice' => 16.764705882352999, + 'tax_rate' => 19.0, + 'datum' => '2022-04-12 14:22:09', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'index', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 407, + 'articleDetailId' => 407, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 80, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 0, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 40, + '__s_order_basket_attributes_basketID' => 700, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 178, + 'articleDetailsID' => 407, + 'ordernumber' => 'SW10178', + 'highlight' => false, + 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', + 'description_long' => ' o decertatio. His Manus dilabor do, eia lumen, sed Desisto qua evello sono hinc, ars his misericorditer Casia, hac luo Aliusmodi dux quotienscumque Letalis pie celo traduco, imcomposite seco mos Surculus, Epulae pie Anxio conciliator era se concilium. Terra quam dicto erro prolecto, quo per incommoditas paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe. ', - 'esd' => false, - 'articleName' => 'Strandtuch "Ibiza"', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 80, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-31', - 'sales' => 4, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 429, - 'articledetailsID' => 407, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Strandtuch "Ibiza"', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 80, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-31', + 'sales' => 4, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 429, + 'articledetailsID' => 407, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -152,239 +127,264 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '19,95', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 19.949999999999999, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '19,95', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 19.949999999999999, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', ], - 'amount' => '19,95', - 'amountnet' => '16,76', - 'priceNumeric' => 19.949999999999999, - 'amountNumeric' => 19.949999999999999, - 'amountnetNumeric' => 16.764705882352999, - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + 'marketing' => [], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 1131, - 'height' => 1698, - ], - ], + ], ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=700', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', - 'tax' => '3,19', + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '19,95', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 19.949999999999999, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '19,95', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 19.949999999999999, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', + ], + 'amount' => '19,95', + 'amountnet' => '16,76', + 'priceNumeric' => 19.949999999999999, + 'amountNumeric' => 19.949999999999999, + 'amountnetNumeric' => 16.764705882352999, + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 1131, + 'height' => 1698, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=700', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', + 'tax' => '3,19', ], + ], 'Amount' => '19,95', 'AmountNet' => '16,76', 'Quantity' => 1, @@ -400,8 +400,8 @@ 'sShippingcostsTax' => 19.0, 'sShippingcostsDifference' => 9980.0499999999993, 'sTaxRates' => [ - '19.00' => 7.3399999999999981, - ], + '19.00' => 7.3399999999999981, + ], 'sShippingcosts' => 25.989999999999998, 'sAmount' => 45.939999999999998, 'sAmountTax' => 7.3399999999999999, diff --git a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2c_basket_with_three_items_and_full_tax.php b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2c_basket_with_three_items_and_full_tax.php index 8c8f22c3..997ffccc 100644 --- a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2c_basket_with_three_items_and_full_tax.php +++ b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2c_basket_with_three_items_and_full_tax.php @@ -8,136 +8,105 @@ return [ 'content' => [ - 0 => [ - 'id' => 941, - 'sessionID' => '2889016bbda6cc8c819ba750678a8aef', - 'userID' => 1, - 'articlename' => 'Strandtuch "Ibiza"', - 'articleID' => 178, - 'ordernumber' => 'SW10178', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '100,00', - 'netprice' => 84.033613445377995, - 'tax_rate' => 19.0, - 'datum' => '2022-05-18 13:44:16', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 407, - 'articleDetailId' => 407, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 32, - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 0, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 88, - '__s_order_basket_attributes_basketID' => 941, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 178, - 'articleDetailsID' => 407, - 'ordernumber' => 'SW10178', - 'highlight' => false, - 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', - 'description_long' => ' + 0 => [ + 'id' => 941, + 'sessionID' => '2889016bbda6cc8c819ba750678a8aef', + 'userID' => 1, + 'articlename' => 'Strandtuch "Ibiza"', + 'articleID' => 178, + 'ordernumber' => 'SW10178', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '100,00', + 'netprice' => 84.033613445377995, + 'tax_rate' => 19.0, + 'datum' => '2022-05-18 13:44:16', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 407, + 'articleDetailId' => 407, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 32, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 0, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 88, + '__s_order_basket_attributes_basketID' => 941, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 178, + 'articleDetailsID' => 407, + 'ordernumber' => 'SW10178', + 'highlight' => false, + 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', + 'description_long' => ' o decertatio. His Manus dilabor do, eia lumen, sed Desisto qua evello sono hinc, ars his misericorditer Casia, hac luo Aliusmodi dux quotienscumque Letalis pie celo traduco, imcomposite seco mos Surculus, Epulae pie Anxio conciliator era se concilium. Terra quam dicto erro prolecto, quo per incommoditas paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe. ', - 'esd' => false, - 'articleName' => 'Strandtuch "Ibiza"', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 32, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2022-05-18', - 'sales' => 51, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => '', - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 429, - 'articledetailsID' => 407, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'storage' => [ - ], - 'isNew' => false, - 'isTopSeller' => true, - 'comingSoon' => false, - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Strandtuch "Ibiza"', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 32, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2022-05-18', + 'sales' => 51, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => '', + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 429, + 'articledetailsID' => 407, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -158,368 +127,368 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => true, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '100,00', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 100.0, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '100,00', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 100.0, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', ], - 'amount' => '100,00', - 'amountnet' => '84,03', - 'priceNumeric' => 100.0, - 'amountNumeric' => 100.0, - 'amountnetNumeric' => 84.033613445377995, - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + 'marketing' => [ + 'storage' => [ + ], + 'isNew' => false, + 'isTopSeller' => true, + 'comingSoon' => false, + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => true, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '100,00', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 100.0, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 1131, - 'height' => 1698, - ], - ], + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '100,00', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 100.0, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', + ], + 'amount' => '100,00', + 'amountnet' => '84,03', + 'priceNumeric' => 100.0, + 'amountNumeric' => 100.0, + 'amountnetNumeric' => 84.033613445377995, + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=941', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', - 'tax' => '15,97', + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', ], - 1 => [ - 'id' => 943, - 'sessionID' => '2889016bbda6cc8c819ba750678a8aef', - 'userID' => 1, - 'articlename' => 'Strandtuch in mehreren Farben blau', - 'articleID' => 179, - 'ordernumber' => 'SW10179.1', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '100,00', - 'netprice' => 84.033613445377995, - 'tax_rate' => 19.0, - 'datum' => '2022-05-18 13:46:00', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 409, - 'articleDetailId' => 409, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 91, - 'suppliernumber' => '', - 'maxpurchase' => 91, - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 89, - '__s_order_basket_attributes_basketID' => 943, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 179, - 'articleDetailsID' => 409, - 'ordernumber' => 'SW10179.1', - 'highlight' => true, - 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', - 'description_long' => ' + 'res' => [ + 'original' => [ + 'width' => 1131, + 'height' => 1698, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=941', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', + 'tax' => '15,97', + ], + 1 => [ + 'id' => 943, + 'sessionID' => '2889016bbda6cc8c819ba750678a8aef', + 'userID' => 1, + 'articlename' => 'Strandtuch in mehreren Farben blau', + 'articleID' => 179, + 'ordernumber' => 'SW10179.1', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '100,00', + 'netprice' => 84.033613445377995, + 'tax_rate' => 19.0, + 'datum' => '2022-05-18 13:46:00', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 409, + 'articleDetailId' => 409, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 91, + 'suppliernumber' => '', + 'maxpurchase' => 91, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 89, + '__s_order_basket_attributes_basketID' => 943, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 179, + 'articleDetailsID' => 409, + 'ordernumber' => 'SW10179.1', + 'highlight' => true, + 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', + 'description_long' => ' Eficio uterus vel fugo pes eo ops altor. Me consulo sui voveo ymo Ficus Libero nex modo sui velitatio opportunus, qui cum res termino unde potestas Palmula do donum Chalybs se illius. Pars ars eo labes upilio. Se quin etsi Lac se at, do. Hi per ora lentulus Concino, en, vox se mei Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute. ', - 'esd' => false, - 'articleName' => 'Strandtuch in mehreren Farben', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 91, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => 'blau', - 'datum' => '2012-08-21', - 'update' => '2022-05-18', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => '44,99', - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => true, - 'metaTitle' => '', - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 431, - 'articledetailsID' => 409, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'storage' => [ - ], - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - ], - ], - 'allowBuyInListing' => false, + 'esd' => false, + 'articleName' => 'Strandtuch in mehreren Farben', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 91, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => 'blau', + 'datum' => '2012-08-21', + 'update' => '2022-05-18', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => '44,99', + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => true, + 'metaTitle' => '', + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 431, + 'articledetailsID' => 409, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -540,368 +509,368 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '44,99', - 'pseudoprice' => '0', - 'referenceprice' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 44.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '100,00', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 100.0, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.1', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.1', ], - 'amount' => '100,00', - 'amountnet' => '84,03', - 'priceNumeric' => 100.0, - 'amountNumeric' => 100.0, - 'amountnetNumeric' => 84.033613445377995, - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + 'marketing' => [ + 'storage' => [ + ], + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + ], + ], + 'allowBuyInListing' => false, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '44,99', + 'pseudoprice' => '0', + 'referenceprice' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 44.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 565, - 'height' => 849, - ], - ], + ], ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=943', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.1', - 'tax' => '15,97', + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '100,00', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 100.0, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.1', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.1', + ], + 'amount' => '100,00', + 'amountnet' => '84,03', + 'priceNumeric' => 100.0, + 'amountNumeric' => 100.0, + 'amountnetNumeric' => 84.033613445377995, + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ ], - 2 => [ - 'id' => 945, - 'sessionID' => '2889016bbda6cc8c819ba750678a8aef', - 'userID' => 1, - 'articlename' => 'Strandtuch in mehreren Farben rot', - 'articleID' => 179, - 'ordernumber' => 'SW10179.2', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '100,00', - 'netprice' => 84.033613445377995, - 'tax_rate' => 19.0, - 'datum' => '2022-05-18 13:46:08', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 409, - 'articleDetailId' => 410, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 91, - 'suppliernumber' => '', - 'maxpurchase' => 91, - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 90, - '__s_order_basket_attributes_basketID' => 945, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 179, - 'articleDetailsID' => 410, - 'ordernumber' => 'SW10179.2', - 'highlight' => true, - 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', - 'description_long' => ' + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 565, + 'height' => 849, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=943', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.1', + 'tax' => '15,97', + ], + 2 => [ + 'id' => 945, + 'sessionID' => '2889016bbda6cc8c819ba750678a8aef', + 'userID' => 1, + 'articlename' => 'Strandtuch in mehreren Farben rot', + 'articleID' => 179, + 'ordernumber' => 'SW10179.2', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '100,00', + 'netprice' => 84.033613445377995, + 'tax_rate' => 19.0, + 'datum' => '2022-05-18 13:46:08', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 409, + 'articleDetailId' => 410, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 91, + 'suppliernumber' => '', + 'maxpurchase' => 91, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 90, + '__s_order_basket_attributes_basketID' => 945, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 179, + 'articleDetailsID' => 410, + 'ordernumber' => 'SW10179.2', + 'highlight' => true, + 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', + 'description_long' => ' Eficio uterus vel fugo pes eo ops altor. Me consulo sui voveo ymo Ficus Libero nex modo sui velitatio opportunus, qui cum res termino unde potestas Palmula do donum Chalybs se illius. Pars ars eo labes upilio. Se quin etsi Lac se at, do. Hi per ora lentulus Concino, en, vox se mei Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute. ', - 'esd' => false, - 'articleName' => 'Strandtuch in mehreren Farben', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 91, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => 'rot', - 'datum' => '2012-08-21', - 'update' => '2022-05-18', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => '44,99', - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => true, - 'metaTitle' => '', - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 432, - 'articledetailsID' => 410, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'storage' => [ - ], - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - ], - ], - 'allowBuyInListing' => false, + 'esd' => false, + 'articleName' => 'Strandtuch in mehreren Farben', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 91, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => 'rot', + 'datum' => '2012-08-21', + 'update' => '2022-05-18', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => '44,99', + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => true, + 'metaTitle' => '', + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 432, + 'articledetailsID' => 410, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -922,239 +891,270 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '44,99', - 'pseudoprice' => '0', - 'referenceprice' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 44.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '100,00', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 100.0, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.2', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.2', ], - 'amount' => '100,00', - 'amountnet' => '84,03', - 'priceNumeric' => 100.0, - 'amountNumeric' => 100.0, - 'amountnetNumeric' => 84.033613445377995, - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + 'marketing' => [ + 'storage' => [ + ], + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + ], + ], + 'allowBuyInListing' => false, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '44,99', + 'pseudoprice' => '0', + 'referenceprice' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 44.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 565, - 'height' => 849, - ], - ], + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '100,00', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 100.0, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=945', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.2', - 'tax' => '15,97', + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.2', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.2', + ], + 'amount' => '100,00', + 'amountnet' => '84,03', + 'priceNumeric' => 100.0, + 'amountNumeric' => 100.0, + 'amountnetNumeric' => 84.033613445377995, + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 565, + 'height' => 849, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=945', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.2', + 'tax' => '15,97', ], + ], 'Amount' => '300,00', 'AmountNet' => '252,09', 'Quantity' => 3, @@ -1169,8 +1169,8 @@ 'sShippingcostsNet' => 3.2799999999999998, 'sShippingcostsTax' => 19.0, 'sTaxRates' => [ - '19.00' => 48.530000000000001, - ], + '19.00' => 48.530000000000001, + ], 'sShippingcosts' => 3.8999999999999999, 'sAmount' => 303.89999999999998, 'sAmountTax' => 48.530000000000001, diff --git a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2c_customer.php b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2c_customer.php index 5b7242df..8e8b5be1 100644 --- a/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2c_customer.php +++ b/Tests/Functional/Components/Services/OrderBuilder/OrderHandler/_fixtures/b2c_customer.php @@ -8,137 +8,137 @@ return [ 'billingaddress' => [ + 'id' => 1, + 'company' => 'Muster GmbH', + 'department' => null, + 'salutation' => 'mr', + 'firstname' => 'Max', + 'title' => null, + 'lastname' => 'Mustermann', + 'street' => 'Musterstr. 55', + 'zipcode' => '55555', + 'city' => 'Musterhausen', + 'phone' => '05555 / 555555', + 'vatId' => null, + 'additionalAddressLine1' => null, + 'additionalAddressLine2' => null, + 'countryId' => 2, + 'stateId' => 3, + 'customer' => [ 'id' => 1, - 'company' => 'Muster GmbH', - 'department' => null, + ], + 'country' => [ + 'id' => 2, + ], + 'state' => [ + 'id' => 3, + ], + 'userID' => 1, + 'countryID' => 2, + 'stateID' => 3, + 'ustid' => null, + 'additional_address_line1' => null, + 'additional_address_line2' => null, + 'attributes' => [ + ], + ], + 'additional' => [ + 'country' => [ + 'id' => 2, + 'countryname' => 'Deutschland', + 'countryiso' => 'DE', + 'areaID' => 1, + 'countryen' => 'GERMANY', + 'position' => 1, + 'notice' => '', + 'taxfree' => 0, + 'taxfree_ustid' => 0, + 'taxfree_ustid_checked' => 0, + 'active' => 1, + 'iso3' => 'DEU', + 'display_state_in_registration' => 0, + 'force_state_in_registration' => 0, + 'allow_shipping' => 1, + 'countryarea' => 'deutschland', + ], + 'state' => [ + 'id' => 3, + 'countryID' => 2, + 'name' => 'Nordrhein-Westfalen', + 'shortcode' => 'NW', + 'position' => 0, + 'active' => 1, + 'statename' => 'Nordrhein-Westfalen', + ], + 'user' => [ + 'id' => 1, + 'password' => '$2y$10$ygDLP7NxepGErnLLluPjcevg.F8z9bXoe5gBkUKR4eAiSZBpGgfRW', + 'encoder' => 'bcrypt', + 'email' => 'test@example.com', + 'active' => 1, + 'accountmode' => 0, + 'confirmationkey' => '', + 'paymentID' => 7, + 'doubleOptinRegister' => 0, + 'doubleOptinEmailSentDate' => null, + 'doubleOptinConfirmDate' => null, + 'firstlogin' => '2011-11-23', + 'lastlogin' => '2022-04-12 12:22:44', + 'sessionID' => 'ad5bdece48af0f1c1c4fc044f1c638dc', + 'newsletter' => 0, + 'validation' => '', + 'affiliate' => 0, + 'customergroup' => 'EK', + 'paymentpreset' => 0, + 'language' => '1', + 'subshopID' => 1, + 'referer' => '', + 'pricegroupID' => null, + 'internalcomment' => '', + 'failedlogins' => 0, + 'lockeduntil' => null, + 'default_billing_address_id' => 1, + 'default_shipping_address_id' => 3, + 'title' => null, 'salutation' => 'mr', 'firstname' => 'Max', - 'title' => null, 'lastname' => 'Mustermann', - 'street' => 'Musterstr. 55', - 'zipcode' => '55555', - 'city' => 'Musterhausen', - 'phone' => '05555 / 555555', - 'vatId' => null, - 'additionalAddressLine1' => null, - 'additionalAddressLine2' => null, - 'countryId' => 2, - 'stateId' => 3, - 'customer' => [ - 'id' => 1, - ], - 'country' => [ - 'id' => 2, - ], - 'state' => [ - 'id' => 3, - ], - 'userID' => 1, - 'countryID' => 2, - 'stateID' => 3, - 'ustid' => null, - 'additional_address_line1' => null, - 'additional_address_line2' => null, - 'attributes' => [ - ], + 'birthday' => '2001-01-01', + 'customernumber' => '20001', + 'login_token' => '50246d35-ebeb-40d5-baf3-56fae4ed25b7.1', + 'changed' => null, + 'password_change_date' => '2022-04-12 08:24:11', + 'register_opt_in_id' => null, ], - 'additional' => [ - 'country' => [ - 'id' => 2, - 'countryname' => 'Deutschland', - 'countryiso' => 'DE', - 'areaID' => 1, - 'countryen' => 'GERMANY', - 'position' => 1, - 'notice' => '', - 'taxfree' => 0, - 'taxfree_ustid' => 0, - 'taxfree_ustid_checked' => 0, - 'active' => 1, - 'iso3' => 'DEU', - 'display_state_in_registration' => 0, - 'force_state_in_registration' => 0, - 'allow_shipping' => 1, - 'countryarea' => 'deutschland', - ], - 'state' => [ - 'id' => 3, - 'countryID' => 2, - 'name' => 'Nordrhein-Westfalen', - 'shortcode' => 'NW', - 'position' => 0, - 'active' => 1, - 'statename' => 'Nordrhein-Westfalen', - ], - 'user' => [ - 'id' => 1, - 'password' => '$2y$10$ygDLP7NxepGErnLLluPjcevg.F8z9bXoe5gBkUKR4eAiSZBpGgfRW', - 'encoder' => 'bcrypt', - 'email' => 'test@example.com', - 'active' => 1, - 'accountmode' => 0, - 'confirmationkey' => '', - 'paymentID' => 7, - 'doubleOptinRegister' => 0, - 'doubleOptinEmailSentDate' => null, - 'doubleOptinConfirmDate' => null, - 'firstlogin' => '2011-11-23', - 'lastlogin' => '2022-04-12 12:22:44', - 'sessionID' => 'ad5bdece48af0f1c1c4fc044f1c638dc', - 'newsletter' => 0, - 'validation' => '', - 'affiliate' => 0, - 'customergroup' => 'EK', - 'paymentpreset' => 0, - 'language' => '1', - 'subshopID' => 1, - 'referer' => '', - 'pricegroupID' => null, - 'internalcomment' => '', - 'failedlogins' => 0, - 'lockeduntil' => null, - 'default_billing_address_id' => 1, - 'default_shipping_address_id' => 3, - 'title' => null, - 'salutation' => 'mr', - 'firstname' => 'Max', - 'lastname' => 'Mustermann', - 'birthday' => '2001-01-01', - 'customernumber' => '20001', - 'login_token' => '50246d35-ebeb-40d5-baf3-56fae4ed25b7.1', - 'changed' => null, - 'password_change_date' => '2022-04-12 08:24:11', - 'register_opt_in_id' => null, - ], - 'countryShipping' => [ - 'id' => 2, - 'countryname' => 'Deutschland', - 'countryiso' => 'DE', - 'areaID' => 1, - 'countryen' => 'GERMANY', - 'position' => 1, - 'notice' => '', - 'taxfree' => 0, - 'taxfree_ustid' => 0, - 'taxfree_ustid_checked' => 0, - 'active' => 1, - 'iso3' => 'DEU', - 'display_state_in_registration' => 0, - 'force_state_in_registration' => 0, - 'allow_shipping' => 1, - 'countryarea' => 'deutschland', - ], - 'stateShipping' => [ - ], - 'payment' => [ - 'id' => 7, - 'name' => 'SwagPaymentPayPalUnified', - 'description' => 'PayPal', - 'template' => '', - 'class' => '', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => ' + 'countryShipping' => [ + 'id' => 2, + 'countryname' => 'Deutschland', + 'countryiso' => 'DE', + 'areaID' => 1, + 'countryen' => 'GERMANY', + 'position' => 1, + 'notice' => '', + 'taxfree' => 0, + 'taxfree_ustid' => 0, + 'taxfree_ustid_checked' => 0, + 'active' => 1, + 'iso3' => 'DEU', + 'display_state_in_registration' => 0, + 'force_state_in_registration' => 0, + 'allow_shipping' => 1, + 'countryarea' => 'deutschland', + ], + 'stateShipping' => [ + ], + 'payment' => [ + 'id' => 7, + 'name' => 'SwagPaymentPayPalUnified', + 'description' => 'PayPal', + 'template' => '', + 'class' => '', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => ' Logo \'PayPal empfohlen\' @@ -146,57 +146,57 @@ Bezahlung per PayPal - einfach, schnell und sicher.', - 'debit_percent' => 0.0, - 'surcharge' => 0.0, - 'surchargestring' => '', - 'position' => -100, - 'active' => 1, - 'esdactive' => 0, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => 'PaypalUnifiedV2', - 'pluginID' => 59, - 'source' => null, - 'mobile_inactive' => 0, - 'attributes' => [ - ], - 'validation' => [ - ], - ], - 'charge_vat' => true, - 'show_net' => true, + 'debit_percent' => 0.0, + 'surcharge' => 0.0, + 'surchargestring' => '', + 'position' => -100, + 'active' => 1, + 'esdactive' => 0, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => 'PaypalUnifiedV2', + 'pluginID' => 59, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ + ], + 'validation' => [ + ], ], + 'charge_vat' => true, + 'show_net' => true, + ], 'shippingaddress' => [ - 'id' => 3, - 'company' => 'shopware AG', - 'department' => null, - 'salutation' => 'mr', - 'firstname' => 'Max', - 'title' => null, - 'lastname' => 'Mustermann', - 'street' => 'Mustermannstraße 92', - 'zipcode' => '48624', - 'city' => 'Schöppingen', - 'phone' => null, - 'vatId' => null, - 'additionalAddressLine1' => null, - 'additionalAddressLine2' => null, - 'countryId' => 2, - 'stateId' => null, - 'customer' => [ - 'id' => 1, - ], - 'country' => [ - 'id' => 2, - ], - 'state' => null, - 'userID' => 1, - 'countryID' => 2, - 'stateID' => null, - 'ustid' => null, - 'additional_address_line1' => null, - 'additional_address_line2' => null, - 'attributes' => [ - ], + 'id' => 3, + 'company' => 'shopware AG', + 'department' => null, + 'salutation' => 'mr', + 'firstname' => 'Max', + 'title' => null, + 'lastname' => 'Mustermann', + 'street' => 'Mustermannstraße 92', + 'zipcode' => '48624', + 'city' => 'Schöppingen', + 'phone' => null, + 'vatId' => null, + 'additionalAddressLine1' => null, + 'additionalAddressLine2' => null, + 'countryId' => 2, + 'stateId' => null, + 'customer' => [ + 'id' => 1, + ], + 'country' => [ + 'id' => 2, + ], + 'state' => null, + 'userID' => 1, + 'countryID' => 2, + 'stateID' => null, + 'ustid' => null, + 'additional_address_line1' => null, + 'additional_address_line2' => null, + 'attributes' => [ ], + ], ]; diff --git a/Tests/Functional/Components/Services/_fixtures/OrderBuilderServiceTestBasketData.php b/Tests/Functional/Components/Services/_fixtures/OrderBuilderServiceTestBasketData.php index 14e31e30..7ee8f556 100644 --- a/Tests/Functional/Components/Services/_fixtures/OrderBuilderServiceTestBasketData.php +++ b/Tests/Functional/Components/Services/_fixtures/OrderBuilderServiceTestBasketData.php @@ -8,136 +8,105 @@ return [ 'content' => [ - 0 => [ - 'id' => '765', - 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', - 'userID' => '3', - 'articlename' => 'Fliegenklatsche grün', - 'articleID' => '98', - 'ordernumber' => 'SW10101', - 'shippingfree' => '0', - 'quantity' => '2', - 'price' => '0,79', - 'netprice' => '0.66386554621849', - 'tax_rate' => '19', - 'datum' => '2022-01-05 08:23:14', - 'modus' => '0', - 'esdarticle' => '0', - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'config' => '', - 'currencyFactor' => '1', - 'packunit' => '', - 'mainDetailId' => '163', - 'articleDetailId' => '163', - 'minpurchase' => '1', - 'taxID' => '1', - 'instock' => '0', - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => '0', - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => '0', - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => '82', - '__s_order_basket_attributes_basketID' => '765', - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => '0', - 'additional_details' => [ - 'articleID' => 98, - 'articleDetailsID' => 163, - 'ordernumber' => 'SW10101', - 'highlight' => false, - 'description' => 'Fruor summa innumerus, pax consuetudo, fames ac pax Ardor solemnitas rutila, ars Nusquam', - 'description_long' => ' + 0 => [ + 'id' => '765', + 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', + 'userID' => '3', + 'articlename' => 'Fliegenklatsche grün', + 'articleID' => '98', + 'ordernumber' => 'SW10101', + 'shippingfree' => '0', + 'quantity' => '2', + 'price' => '0,79', + 'netprice' => '0.66386554621849', + 'tax_rate' => '19', + 'datum' => '2022-01-05 08:23:14', + 'modus' => '0', + 'esdarticle' => '0', + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', + 'config' => '', + 'currencyFactor' => '1', + 'packunit' => '', + 'mainDetailId' => '163', + 'articleDetailId' => '163', + 'minpurchase' => '1', + 'taxID' => '1', + 'instock' => '0', + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => '0', + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => '0', + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => '82', + '__s_order_basket_attributes_basketID' => '765', + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => '0', + 'additional_details' => [ + 'articleID' => 98, + 'articleDetailsID' => 163, + 'ordernumber' => 'SW10101', + 'highlight' => false, + 'description' => 'Fruor summa innumerus, pax consuetudo, fames ac pax Ardor solemnitas rutila, ars Nusquam', + 'description_long' => ' Inco armis ius Infirmus tot ruo Vorago. Fruor summa innumerus, pax consuetudo, fames ac pax Ardor solemnitas rutila, ars Nusquam, benevolentia orbis monstro redeo, arx te evangelium. Emo se profundum pes sesquimellesimus Socors ango abeo promitto, pro infecundus re Quid illi aro incrementabiliter Frustro quo Latro pax Ethologus nec Ico ops Fabrico innotesco. Dux sesquialter illum vis derigo, vel . ', - 'esd' => false, - 'articleName' => 'Fliegenklatsche grün', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 0, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-19', - 'update' => '2012-08-19', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => '172', - 'articledetailsID' => '163', - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - 'storage' => [ - ], - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Fliegenklatsche grün', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 0, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-19', + 'update' => '2012-08-19', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => '172', + 'articledetailsID' => '163', 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -158,366 +127,366 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Das blaue Haus', - 'supplierImg' => 'http://shopware57.localhost/media/image/d5/42/a8/blaueshaus.png', - 'supplierID' => 8, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 667, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/d5/42/a8/blaueshaus.png', - 'description' => 'blaueshaus', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/6f/88/29/blaueshaus_200x200.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/d7/5c/c5/blaueshaus_200x200@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/6f/88/29/blaueshaus_200x200.png, http://shopware57.localhost/media/image/d7/5c/c5/blaueshaus_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/b0/89/4a/blaueshaus_600x600.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/2f/50/56/blaueshaus_600x600@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/b0/89/4a/blaueshaus_600x600.png, http://shopware57.localhost/media/image/2f/50/56/blaueshaus_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/f3/54/08/blaueshaus_1280x1280.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/e3/40/5a/blaueshaus_1280x1280@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/f3/54/08/blaueshaus_1280x1280.png, http://shopware57.localhost/media/image/e3/40/5a/blaueshaus_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '0,79', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 0.79000000000000004, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 298, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/01/89/0d/Fliegenklatsche-gruen.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 906, - 'height' => 915, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/52/00/b7/Fliegenklatsche-gruen_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/8b/f3/0f/Fliegenklatsche-gruen_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/52/00/b7/Fliegenklatsche-gruen_200x200.jpg, http://shopware57.localhost/media/image/8b/f3/0f/Fliegenklatsche-gruen_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/a7/e7/fc/Fliegenklatsche-gruen_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/d6/d1/6b/Fliegenklatsche-gruen_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/a7/e7/fc/Fliegenklatsche-gruen_600x600.jpg, http://shopware57.localhost/media/image/d6/d1/6b/Fliegenklatsche-gruen_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/99/ce/87/Fliegenklatsche-gruen_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/e4/a2/60/Fliegenklatsche-gruen_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/99/ce/87/Fliegenklatsche-gruen_1280x1280.jpg, http://shopware57.localhost/media/image/e4/a2/60/Fliegenklatsche-gruen_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '0,79', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 0.79000000000000004, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10101', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=98', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=98&number=SW10101', - ], - 'amount' => '1,58', - 'amountnet' => '1,33', - 'priceNumeric' => '0.79', - 'amountNumeric' => 1.5800000000000001, - 'amountnetNumeric' => 1.3277310924369801, - 'image' => [ - 'id' => 298, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/01/89/0d/Fliegenklatsche-gruen.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 906, - 'height' => 915, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/52/00/b7/Fliegenklatsche-gruen_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/8b/f3/0f/Fliegenklatsche-gruen_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/52/00/b7/Fliegenklatsche-gruen_200x200.jpg, http://shopware57.localhost/media/image/8b/f3/0f/Fliegenklatsche-gruen_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/a7/e7/fc/Fliegenklatsche-gruen_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/d6/d1/6b/Fliegenklatsche-gruen_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/a7/e7/fc/Fliegenklatsche-gruen_600x600.jpg, http://shopware57.localhost/media/image/d6/d1/6b/Fliegenklatsche-gruen_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/99/ce/87/Fliegenklatsche-gruen_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/e4/a2/60/Fliegenklatsche-gruen_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/99/ce/87/Fliegenklatsche-gruen_1280x1280.jpg, http://shopware57.localhost/media/image/e4/a2/60/Fliegenklatsche-gruen_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + ], + 'marketing' => [ + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + 'storage' => [ + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Das blaue Haus', + 'supplierImg' => 'http://shopware57.localhost/media/image/d5/42/a8/blaueshaus.png', + 'supplierID' => 8, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 667, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/d5/42/a8/blaueshaus.png', + 'description' => 'blaueshaus', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/6f/88/29/blaueshaus_200x200.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/d7/5c/c5/blaueshaus_200x200@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/6f/88/29/blaueshaus_200x200.png, http://shopware57.localhost/media/image/d7/5c/c5/blaueshaus_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/b0/89/4a/blaueshaus_600x600.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/2f/50/56/blaueshaus_600x600@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/b0/89/4a/blaueshaus_600x600.png, http://shopware57.localhost/media/image/2f/50/56/blaueshaus_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/f3/54/08/blaueshaus_1280x1280.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/e3/40/5a/blaueshaus_1280x1280@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/f3/54/08/blaueshaus_1280x1280.png, http://shopware57.localhost/media/image/e3/40/5a/blaueshaus_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '0,79', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 0.79000000000000004, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 298, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/01/89/0d/Fliegenklatsche-gruen.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 906, + 'height' => 915, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/52/00/b7/Fliegenklatsche-gruen_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/8b/f3/0f/Fliegenklatsche-gruen_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/52/00/b7/Fliegenklatsche-gruen_200x200.jpg, http://shopware57.localhost/media/image/8b/f3/0f/Fliegenklatsche-gruen_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/a7/e7/fc/Fliegenklatsche-gruen_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/d6/d1/6b/Fliegenklatsche-gruen_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/a7/e7/fc/Fliegenklatsche-gruen_600x600.jpg, http://shopware57.localhost/media/image/d6/d1/6b/Fliegenklatsche-gruen_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware57.localhost/media/image/01/89/0d/Fliegenklatsche-gruen.jpg', - 0 => 'http://shopware57.localhost/media/image/52/00/b7/Fliegenklatsche-gruen_200x200.jpg', - 1 => 'http://shopware57.localhost/media/image/a7/e7/fc/Fliegenklatsche-gruen_600x600.jpg', - 2 => 'http://shopware57.localhost/media/image/99/ce/87/Fliegenklatsche-gruen_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware57.localhost/media/image/01/89/0d/Fliegenklatsche-gruen.jpg', - 0 => 'http://shopware57.localhost/media/image/8b/f3/0f/Fliegenklatsche-gruen_200x200@2x.jpg', - 1 => 'http://shopware57.localhost/media/image/d6/d1/6b/Fliegenklatsche-gruen_600x600@2x.jpg', - 2 => 'http://shopware57.localhost/media/image/e4/a2/60/Fliegenklatsche-gruen_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 915, - 'height' => 906, - ], - ], - ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=98', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=765', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10101', - 'tax' => '0,25', - ], - 1 => [ - 'id' => '767', - 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', - 'userID' => '3', - 'articlename' => 'Fahrerhandschuh aus Peccary Leder', - 'articleID' => '141', - 'ordernumber' => 'SW10141', - 'shippingfree' => '0', - 'quantity' => '1', - 'price' => '69,99', - 'netprice' => '58.81512605042', - 'tax_rate' => '19', - 'datum' => '2022-01-05 08:23:56', - 'modus' => '0', - 'esdarticle' => '0', - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'config' => '', - 'currencyFactor' => '1', - 'packunit' => '', - 'mainDetailId' => '288', - 'articleDetailId' => '288', - 'minpurchase' => '1', - 'taxID' => '1', - 'instock' => '77', - 'suppliernumber' => '', - 'maxpurchase' => '77', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => '1', - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => '0', - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => '83', - '__s_order_basket_attributes_basketID' => '767', - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => '0', - 'additional_details' => [ - 'articleID' => 141, - 'articleDetailsID' => 288, - 'ordernumber' => 'SW10141', - 'highlight' => true, - 'description' => 'Silex dis Concateno quo sis cur. Cui Concite hic daps, pes cui distinguo crocotula ruo. Sors emitto depopulo Sedulo formido via s.', - 'description_long' => ' + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/99/ce/87/Fliegenklatsche-gruen_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/e4/a2/60/Fliegenklatsche-gruen_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/99/ce/87/Fliegenklatsche-gruen_1280x1280.jpg, http://shopware57.localhost/media/image/e4/a2/60/Fliegenklatsche-gruen_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '0,79', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 0.79000000000000004, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10101', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=98', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=98&number=SW10101', + ], + 'amount' => '1,58', + 'amountnet' => '1,33', + 'priceNumeric' => '0.79', + 'amountNumeric' => 1.5800000000000001, + 'amountnetNumeric' => 1.3277310924369801, + 'image' => [ + 'id' => 298, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/01/89/0d/Fliegenklatsche-gruen.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 906, + 'height' => 915, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/52/00/b7/Fliegenklatsche-gruen_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/8b/f3/0f/Fliegenklatsche-gruen_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/52/00/b7/Fliegenklatsche-gruen_200x200.jpg, http://shopware57.localhost/media/image/8b/f3/0f/Fliegenklatsche-gruen_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/a7/e7/fc/Fliegenklatsche-gruen_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/d6/d1/6b/Fliegenklatsche-gruen_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/a7/e7/fc/Fliegenklatsche-gruen_600x600.jpg, http://shopware57.localhost/media/image/d6/d1/6b/Fliegenklatsche-gruen_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/99/ce/87/Fliegenklatsche-gruen_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/e4/a2/60/Fliegenklatsche-gruen_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/99/ce/87/Fliegenklatsche-gruen_1280x1280.jpg, http://shopware57.localhost/media/image/e4/a2/60/Fliegenklatsche-gruen_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware57.localhost/media/image/01/89/0d/Fliegenklatsche-gruen.jpg', + 0 => 'http://shopware57.localhost/media/image/52/00/b7/Fliegenklatsche-gruen_200x200.jpg', + 1 => 'http://shopware57.localhost/media/image/a7/e7/fc/Fliegenklatsche-gruen_600x600.jpg', + 2 => 'http://shopware57.localhost/media/image/99/ce/87/Fliegenklatsche-gruen_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware57.localhost/media/image/01/89/0d/Fliegenklatsche-gruen.jpg', + 0 => 'http://shopware57.localhost/media/image/8b/f3/0f/Fliegenklatsche-gruen_200x200@2x.jpg', + 1 => 'http://shopware57.localhost/media/image/d6/d1/6b/Fliegenklatsche-gruen_600x600@2x.jpg', + 2 => 'http://shopware57.localhost/media/image/e4/a2/60/Fliegenklatsche-gruen_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 915, + 'height' => 906, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=98', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=765', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10101', + 'tax' => '0,25', + ], + 1 => [ + 'id' => '767', + 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', + 'userID' => '3', + 'articlename' => 'Fahrerhandschuh aus Peccary Leder', + 'articleID' => '141', + 'ordernumber' => 'SW10141', + 'shippingfree' => '0', + 'quantity' => '1', + 'price' => '69,99', + 'netprice' => '58.81512605042', + 'tax_rate' => '19', + 'datum' => '2022-01-05 08:23:56', + 'modus' => '0', + 'esdarticle' => '0', + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', + 'config' => '', + 'currencyFactor' => '1', + 'packunit' => '', + 'mainDetailId' => '288', + 'articleDetailId' => '288', + 'minpurchase' => '1', + 'taxID' => '1', + 'instock' => '77', + 'suppliernumber' => '', + 'maxpurchase' => '77', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => '1', + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => '0', + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => '83', + '__s_order_basket_attributes_basketID' => '767', + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => '0', + 'additional_details' => [ + 'articleID' => 141, + 'articleDetailsID' => 288, + 'ordernumber' => 'SW10141', + 'highlight' => true, + 'description' => 'Silex dis Concateno quo sis cur. Cui Concite hic daps, pes cui distinguo crocotula ruo. Sors emitto depopulo Sedulo formido via s.', + 'description_long' => ' Quatinus Perago tui Pronuntio per pio vel superstes sperno. Spero nascor circumvenio ius ineo beneficentia. Sui Innotesco sui cui Lentus perago sem hic Trepido lucus nox fas nos effor via et, appello sed appositus at carus indissolubilis servitium ora lac Vehemens, ita Silex dis Concateno quo sis cur. Cui Concite hic daps, pes cui distinguo crocotula ruo. Sors emitto depopulo Sedulo formido via s. ', - 'esd' => false, - 'articleName' => 'Fahrerhandschuh aus Peccary Leder', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 77, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '', - 'datum' => '2012-07-16', - 'update' => '2012-08-30', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => '307', - 'articledetailsID' => '288', - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - 'storage' => [ - ], - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Fahrerhandschuh aus Peccary Leder', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 77, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '', + 'datum' => '2012-07-16', + 'update' => '2012-08-30', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => '307', + 'articledetailsID' => '288', 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -538,366 +507,366 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Vintage Driver', - 'supplierImg' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', - 'supplierID' => 7, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 675, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', - 'description' => 'vintage', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png, http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png, http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png, http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '69,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 69.989999999999995, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 728, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/51/f3/0d/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 720, - 'height' => 478, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/b4/1d/ca/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/f0/70/3f/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/b4/1d/ca/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200.jpg, http://shopware57.localhost/media/image/f0/70/3f/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/74/4f/15/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/e5/c9/02/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/74/4f/15/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600.jpg, http://shopware57.localhost/media/image/e5/c9/02/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/40/de/b8/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/77/a8/ef/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/40/de/b8/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280.jpg, http://shopware57.localhost/media/image/77/a8/ef/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '69,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 69.989999999999995, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10141', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=141', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=141&number=SW10141', - ], - 'amount' => '69,99', - 'amountnet' => '58,82', - 'priceNumeric' => '69.99', - 'amountNumeric' => 69.989999999999995, - 'amountnetNumeric' => 58.815126050419998, - 'image' => [ - 'id' => 728, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/51/f3/0d/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 720, - 'height' => 478, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/b4/1d/ca/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/f0/70/3f/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/b4/1d/ca/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200.jpg, http://shopware57.localhost/media/image/f0/70/3f/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/74/4f/15/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/e5/c9/02/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/74/4f/15/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600.jpg, http://shopware57.localhost/media/image/e5/c9/02/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/40/de/b8/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/77/a8/ef/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/40/de/b8/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280.jpg, http://shopware57.localhost/media/image/77/a8/ef/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + ], + 'marketing' => [ + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + 'storage' => [ + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Vintage Driver', + 'supplierImg' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', + 'supplierID' => 7, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 675, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', + 'description' => 'vintage', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png, http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png, http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png, http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '69,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 69.989999999999995, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 728, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/51/f3/0d/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 720, + 'height' => 478, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/b4/1d/ca/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/f0/70/3f/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/b4/1d/ca/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200.jpg, http://shopware57.localhost/media/image/f0/70/3f/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware57.localhost/media/image/51/f3/0d/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2.jpg', - 0 => 'http://shopware57.localhost/media/image/b4/1d/ca/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200.jpg', - 1 => 'http://shopware57.localhost/media/image/74/4f/15/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600.jpg', - 2 => 'http://shopware57.localhost/media/image/40/de/b8/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware57.localhost/media/image/51/f3/0d/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2.jpg', - 0 => 'http://shopware57.localhost/media/image/f0/70/3f/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200@2x.jpg', - 1 => 'http://shopware57.localhost/media/image/e5/c9/02/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600@2x.jpg', - 2 => 'http://shopware57.localhost/media/image/77/a8/ef/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 478, - 'height' => 720, - ], - ], - ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=141', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=767', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10141', - 'tax' => '11,17', - ], - 2 => [ - 'id' => '769', - 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', - 'userID' => '3', - 'articlename' => 'Navigator Lederhaube braun', - 'articleID' => '143', - 'ordernumber' => 'SW10143', - 'shippingfree' => '0', - 'quantity' => '1', - 'price' => '84,99', - 'netprice' => '71.420168067227', - 'tax_rate' => '19', - 'datum' => '2022-01-05 08:24:19', - 'modus' => '0', - 'esdarticle' => '0', - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'config' => '', - 'currencyFactor' => '1', - 'packunit' => '', - 'mainDetailId' => '290', - 'articleDetailId' => '290', - 'minpurchase' => '1', - 'taxID' => '1', - 'instock' => '45', - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => '0', - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => '0', - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => '84', - '__s_order_basket_attributes_basketID' => '769', - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => '0', - 'additional_details' => [ - 'articleID' => 143, - 'articleDetailsID' => 290, - 'ordernumber' => 'SW10143', - 'highlight' => false, - 'description' => 'Latro pax Ethologus nec Ico ops Fabrico innotesco. Dux sesquialter illum vis derigo, vel Prompte mos Quando ut laxamentum. Ymo quis evidens sup.', - 'description_long' => ' + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/74/4f/15/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/e5/c9/02/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/74/4f/15/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600.jpg, http://shopware57.localhost/media/image/e5/c9/02/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/40/de/b8/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/77/a8/ef/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/40/de/b8/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280.jpg, http://shopware57.localhost/media/image/77/a8/ef/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '69,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 69.989999999999995, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10141', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=141', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=141&number=SW10141', + ], + 'amount' => '69,99', + 'amountnet' => '58,82', + 'priceNumeric' => '69.99', + 'amountNumeric' => 69.989999999999995, + 'amountnetNumeric' => 58.815126050419998, + 'image' => [ + 'id' => 728, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/51/f3/0d/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 720, + 'height' => 478, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/b4/1d/ca/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/f0/70/3f/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/b4/1d/ca/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200.jpg, http://shopware57.localhost/media/image/f0/70/3f/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/74/4f/15/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/e5/c9/02/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/74/4f/15/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600.jpg, http://shopware57.localhost/media/image/e5/c9/02/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/40/de/b8/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/77/a8/ef/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/40/de/b8/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280.jpg, http://shopware57.localhost/media/image/77/a8/ef/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware57.localhost/media/image/51/f3/0d/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2.jpg', + 0 => 'http://shopware57.localhost/media/image/b4/1d/ca/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200.jpg', + 1 => 'http://shopware57.localhost/media/image/74/4f/15/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600.jpg', + 2 => 'http://shopware57.localhost/media/image/40/de/b8/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware57.localhost/media/image/51/f3/0d/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2.jpg', + 0 => 'http://shopware57.localhost/media/image/f0/70/3f/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_200x200@2x.jpg', + 1 => 'http://shopware57.localhost/media/image/e5/c9/02/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_600x600@2x.jpg', + 2 => 'http://shopware57.localhost/media/image/77/a8/ef/Herrenhandschuhe-aus-Peccary-zweifarbig_720x600503f77b696fa2_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 478, + 'height' => 720, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=141', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=767', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10141', + 'tax' => '11,17', + ], + 2 => [ + 'id' => '769', + 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', + 'userID' => '3', + 'articlename' => 'Navigator Lederhaube braun', + 'articleID' => '143', + 'ordernumber' => 'SW10143', + 'shippingfree' => '0', + 'quantity' => '1', + 'price' => '84,99', + 'netprice' => '71.420168067227', + 'tax_rate' => '19', + 'datum' => '2022-01-05 08:24:19', + 'modus' => '0', + 'esdarticle' => '0', + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', + 'config' => '', + 'currencyFactor' => '1', + 'packunit' => '', + 'mainDetailId' => '290', + 'articleDetailId' => '290', + 'minpurchase' => '1', + 'taxID' => '1', + 'instock' => '45', + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => '0', + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => '0', + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => '84', + '__s_order_basket_attributes_basketID' => '769', + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => '0', + 'additional_details' => [ + 'articleID' => 143, + 'articleDetailsID' => 290, + 'ordernumber' => 'SW10143', + 'highlight' => false, + 'description' => 'Latro pax Ethologus nec Ico ops Fabrico innotesco. Dux sesquialter illum vis derigo, vel Prompte mos Quando ut laxamentum. Ymo quis evidens sup.', + 'description_long' => ' Numerus, pax consuetudo, fames ac pax Ardor solemnitas rutila, ars Nusquam, benevolentia orbis monstro redeo, arx te evangelium. Emo se profundum pes sesquimellesimus Socors ango abeo promitto, pro infecundus re Quid illi aro incrementabiliter Frustro quo Latro pax Ethologus nec Ico ops Fabrico innotesco. Dux sesquialter illum vis derigo, vel Prompte mos Quando ut laxamentum. Ymo quis evidens sup. ', - 'esd' => false, - 'articleName' => 'Navigator Lederhaube braun', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 45, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-07-16', - 'update' => '2012-08-30', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => '309', - 'articledetailsID' => '290', - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - 'storage' => [ - ], - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Navigator Lederhaube braun', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 45, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-07-16', + 'update' => '2012-08-30', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => '309', + 'articledetailsID' => '290', 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -918,366 +887,366 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Vintage Driver', - 'supplierImg' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', - 'supplierID' => 7, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 675, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', - 'description' => 'vintage', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png, http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png, http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png, http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '84,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 84.989999999999995, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 708, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/74/8d/8e/Navigator-Lederhaube-braun_720x600503f74aed56fe.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 475, - 'height' => 600, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/17/01/87/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/13/b7/08/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/17/01/87/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200.jpg, http://shopware57.localhost/media/image/13/b7/08/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/d0/45/b6/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/3a/8c/c1/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/d0/45/b6/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600.jpg, http://shopware57.localhost/media/image/3a/8c/c1/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/d8/ef/98/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/5a/d1/0b/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/d8/ef/98/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280.jpg, http://shopware57.localhost/media/image/5a/d1/0b/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '84,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 84.989999999999995, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10143', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=143', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=143&number=SW10143', - ], - 'amount' => '84,99', - 'amountnet' => '71,42', - 'priceNumeric' => '84.99', - 'amountNumeric' => 84.989999999999995, - 'amountnetNumeric' => 71.420168067226996, - 'image' => [ - 'id' => 708, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/74/8d/8e/Navigator-Lederhaube-braun_720x600503f74aed56fe.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 475, - 'height' => 600, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/17/01/87/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/13/b7/08/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/17/01/87/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200.jpg, http://shopware57.localhost/media/image/13/b7/08/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/d0/45/b6/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/3a/8c/c1/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/d0/45/b6/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600.jpg, http://shopware57.localhost/media/image/3a/8c/c1/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/d8/ef/98/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/5a/d1/0b/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/d8/ef/98/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280.jpg, http://shopware57.localhost/media/image/5a/d1/0b/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + ], + 'marketing' => [ + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + 'storage' => [ + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Vintage Driver', + 'supplierImg' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', + 'supplierID' => 7, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 675, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', + 'description' => 'vintage', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png, http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png, http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png, http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware57.localhost/media/image/74/8d/8e/Navigator-Lederhaube-braun_720x600503f74aed56fe.jpg', - 0 => 'http://shopware57.localhost/media/image/17/01/87/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200.jpg', - 1 => 'http://shopware57.localhost/media/image/d0/45/b6/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600.jpg', - 2 => 'http://shopware57.localhost/media/image/d8/ef/98/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware57.localhost/media/image/74/8d/8e/Navigator-Lederhaube-braun_720x600503f74aed56fe.jpg', - 0 => 'http://shopware57.localhost/media/image/13/b7/08/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200@2x.jpg', - 1 => 'http://shopware57.localhost/media/image/3a/8c/c1/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600@2x.jpg', - 2 => 'http://shopware57.localhost/media/image/5a/d1/0b/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 600, - 'height' => 475, - ], - ], - ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=143', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=769', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10143', - 'tax' => '13,57', - ], - 3 => [ - 'id' => '771', - 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', - 'userID' => '3', - 'articlename' => 'Reisetasche Gladstone Wildleder', - 'articleID' => '148', - 'ordernumber' => 'SW10148', - 'shippingfree' => '0', - 'quantity' => '1', - 'price' => '149,99', - 'netprice' => '126.04201680672', - 'tax_rate' => '19', - 'datum' => '2022-01-05 08:24:35', - 'modus' => '0', - 'esdarticle' => '0', - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'config' => '', - 'currencyFactor' => '1', - 'packunit' => '', - 'mainDetailId' => '295', - 'articleDetailId' => '295', - 'minpurchase' => '1', - 'taxID' => '1', - 'instock' => '44', - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => '0', - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => '0', - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => '85', - '__s_order_basket_attributes_basketID' => '771', - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => '0', - 'additional_details' => [ - 'articleID' => 148, - 'articleDetailsID' => 295, - 'ordernumber' => 'SW10148', - 'highlight' => false, - 'description' => ' Gemitus sui domus ludio is vulgariter, hic ut legens nox Falx nos cui vaco insudo tero, tollo valde emo. deprecativus fio redigo probabiliter pac.', - 'description_long' => ' + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '84,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 84.989999999999995, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 708, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/74/8d/8e/Navigator-Lederhaube-braun_720x600503f74aed56fe.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 475, + 'height' => 600, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/17/01/87/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/13/b7/08/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/17/01/87/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200.jpg, http://shopware57.localhost/media/image/13/b7/08/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/d0/45/b6/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/3a/8c/c1/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/d0/45/b6/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600.jpg, http://shopware57.localhost/media/image/3a/8c/c1/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/d8/ef/98/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/5a/d1/0b/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/d8/ef/98/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280.jpg, http://shopware57.localhost/media/image/5a/d1/0b/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '84,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 84.989999999999995, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10143', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=143', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=143&number=SW10143', + ], + 'amount' => '84,99', + 'amountnet' => '71,42', + 'priceNumeric' => '84.99', + 'amountNumeric' => 84.989999999999995, + 'amountnetNumeric' => 71.420168067226996, + 'image' => [ + 'id' => 708, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/74/8d/8e/Navigator-Lederhaube-braun_720x600503f74aed56fe.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 475, + 'height' => 600, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/17/01/87/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/13/b7/08/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/17/01/87/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200.jpg, http://shopware57.localhost/media/image/13/b7/08/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/d0/45/b6/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/3a/8c/c1/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/d0/45/b6/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600.jpg, http://shopware57.localhost/media/image/3a/8c/c1/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/d8/ef/98/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/5a/d1/0b/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/d8/ef/98/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280.jpg, http://shopware57.localhost/media/image/5a/d1/0b/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware57.localhost/media/image/74/8d/8e/Navigator-Lederhaube-braun_720x600503f74aed56fe.jpg', + 0 => 'http://shopware57.localhost/media/image/17/01/87/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200.jpg', + 1 => 'http://shopware57.localhost/media/image/d0/45/b6/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600.jpg', + 2 => 'http://shopware57.localhost/media/image/d8/ef/98/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware57.localhost/media/image/74/8d/8e/Navigator-Lederhaube-braun_720x600503f74aed56fe.jpg', + 0 => 'http://shopware57.localhost/media/image/13/b7/08/Navigator-Lederhaube-braun_720x600503f74aed56fe_200x200@2x.jpg', + 1 => 'http://shopware57.localhost/media/image/3a/8c/c1/Navigator-Lederhaube-braun_720x600503f74aed56fe_600x600@2x.jpg', + 2 => 'http://shopware57.localhost/media/image/5a/d1/0b/Navigator-Lederhaube-braun_720x600503f74aed56fe_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 600, + 'height' => 475, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=143', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=769', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10143', + 'tax' => '13,57', + ], + 3 => [ + 'id' => '771', + 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', + 'userID' => '3', + 'articlename' => 'Reisetasche Gladstone Wildleder', + 'articleID' => '148', + 'ordernumber' => 'SW10148', + 'shippingfree' => '0', + 'quantity' => '1', + 'price' => '149,99', + 'netprice' => '126.04201680672', + 'tax_rate' => '19', + 'datum' => '2022-01-05 08:24:35', + 'modus' => '0', + 'esdarticle' => '0', + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', + 'config' => '', + 'currencyFactor' => '1', + 'packunit' => '', + 'mainDetailId' => '295', + 'articleDetailId' => '295', + 'minpurchase' => '1', + 'taxID' => '1', + 'instock' => '44', + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => '0', + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => '0', + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => '85', + '__s_order_basket_attributes_basketID' => '771', + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => '0', + 'additional_details' => [ + 'articleID' => 148, + 'articleDetailsID' => 295, + 'ordernumber' => 'SW10148', + 'highlight' => false, + 'description' => ' Gemitus sui domus ludio is vulgariter, hic ut legens nox Falx nos cui vaco insudo tero, tollo valde emo. deprecativus fio redigo probabiliter pac.', + 'description_long' => ' R in pro St quae Muto,, St Texo aer Cornu ferox lex inconsiderate propitius, animus ops nos haero vietus Subdo qui Gemo ipse somniculosus. Non Apertio ops, per Repere torpeo penintentiarius Synagoga res mala caelestis praestigiator. Ineo via consectatio Gemitus sui domus ludio is vulgariter, hic ut legens nox Falx nos cui vaco insudo tero, tollo valde emo. deprecativus fio redigo probabiliter pac. ', - 'esd' => false, - 'articleName' => 'Reisetasche Gladstone Wildleder', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 44, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-07-16', - 'update' => '2012-08-30', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => '314', - 'articledetailsID' => '295', - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - 'storage' => [ - ], - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Reisetasche Gladstone Wildleder', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 44, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-07-16', + 'update' => '2012-08-30', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => '314', + 'articledetailsID' => '295', 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -1298,366 +1267,366 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Vintage Driver', - 'supplierImg' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', - 'supplierID' => 7, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 675, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', - 'description' => 'vintage', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png, http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png, http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png, http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '149,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 149.99000000000001, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 726, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/d5/0c/4f/Reisetasche-Gladstone-Canvas_720x600503f778670dd3.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 720, - 'height' => 525, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/e2/15/a6/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/b9/8a/64/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/e2/15/a6/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200.jpg, http://shopware57.localhost/media/image/b9/8a/64/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/74/15/21/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/89/56/e8/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/74/15/21/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600.jpg, http://shopware57.localhost/media/image/89/56/e8/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/c6/8b/7a/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/c5/9f/85/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/c6/8b/7a/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280.jpg, http://shopware57.localhost/media/image/c5/9f/85/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '149,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 149.99000000000001, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10148', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=148', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=148&number=SW10148', - ], - 'amount' => '149,99', - 'amountnet' => '126,04', - 'priceNumeric' => '149.99', - 'amountNumeric' => 149.99000000000001, - 'amountnetNumeric' => 126.04201680672, - 'image' => [ - 'id' => 726, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/d5/0c/4f/Reisetasche-Gladstone-Canvas_720x600503f778670dd3.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 720, - 'height' => 525, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/e2/15/a6/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/b9/8a/64/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/e2/15/a6/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200.jpg, http://shopware57.localhost/media/image/b9/8a/64/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/74/15/21/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/89/56/e8/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/74/15/21/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600.jpg, http://shopware57.localhost/media/image/89/56/e8/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/c6/8b/7a/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/c5/9f/85/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/c6/8b/7a/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280.jpg, http://shopware57.localhost/media/image/c5/9f/85/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + ], + 'marketing' => [ + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + 'storage' => [ + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Vintage Driver', + 'supplierImg' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', + 'supplierID' => 7, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 675, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', + 'description' => 'vintage', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png, http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png, http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png, http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '149,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 149.99000000000001, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 726, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/d5/0c/4f/Reisetasche-Gladstone-Canvas_720x600503f778670dd3.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 720, + 'height' => 525, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/e2/15/a6/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/b9/8a/64/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/e2/15/a6/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200.jpg, http://shopware57.localhost/media/image/b9/8a/64/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/74/15/21/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/89/56/e8/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/74/15/21/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600.jpg, http://shopware57.localhost/media/image/89/56/e8/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/c6/8b/7a/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/c5/9f/85/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/c6/8b/7a/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280.jpg, http://shopware57.localhost/media/image/c5/9f/85/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware57.localhost/media/image/d5/0c/4f/Reisetasche-Gladstone-Canvas_720x600503f778670dd3.jpg', - 0 => 'http://shopware57.localhost/media/image/e2/15/a6/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200.jpg', - 1 => 'http://shopware57.localhost/media/image/74/15/21/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600.jpg', - 2 => 'http://shopware57.localhost/media/image/c6/8b/7a/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware57.localhost/media/image/d5/0c/4f/Reisetasche-Gladstone-Canvas_720x600503f778670dd3.jpg', - 0 => 'http://shopware57.localhost/media/image/b9/8a/64/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200@2x.jpg', - 1 => 'http://shopware57.localhost/media/image/89/56/e8/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600@2x.jpg', - 2 => 'http://shopware57.localhost/media/image/c5/9f/85/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 525, - 'height' => 720, - ], - ], - ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=148', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=771', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10148', - 'tax' => '23,95', - ], - 4 => [ - 'id' => '773', - 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', - 'userID' => '3', - 'articlename' => 'Fahrerbrille Chronos', - 'articleID' => '137', - 'ordernumber' => 'SW10137', - 'shippingfree' => '0', - 'quantity' => '1', - 'price' => '59,99', - 'netprice' => '50.411764705882', - 'tax_rate' => '19', - 'datum' => '2022-01-05 08:24:52', - 'modus' => '0', - 'esdarticle' => '0', - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'config' => '', - 'currencyFactor' => '1', - 'packunit' => '', - 'mainDetailId' => '281', - 'articleDetailId' => '281', - 'minpurchase' => '1', - 'taxID' => '1', - 'instock' => '56', - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => '0', - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => '0', - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => '86', - '__s_order_basket_attributes_basketID' => '773', - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => '0', - 'additional_details' => [ - 'articleID' => 137, - 'articleDetailsID' => 281, - 'ordernumber' => 'SW10137', - 'highlight' => false, - 'description' => 'Faber for Neglectum ut heu do infrequens, profiteor ius Perpetuus stilla seu pax sufficientia jus far rego promus per f.', - 'description_long' => ' + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '149,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 149.99000000000001, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10148', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=148', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=148&number=SW10148', + ], + 'amount' => '149,99', + 'amountnet' => '126,04', + 'priceNumeric' => '149.99', + 'amountNumeric' => 149.99000000000001, + 'amountnetNumeric' => 126.04201680672, + 'image' => [ + 'id' => 726, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/d5/0c/4f/Reisetasche-Gladstone-Canvas_720x600503f778670dd3.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 720, + 'height' => 525, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/e2/15/a6/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/b9/8a/64/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/e2/15/a6/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200.jpg, http://shopware57.localhost/media/image/b9/8a/64/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/74/15/21/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/89/56/e8/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/74/15/21/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600.jpg, http://shopware57.localhost/media/image/89/56/e8/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/c6/8b/7a/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/c5/9f/85/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/c6/8b/7a/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280.jpg, http://shopware57.localhost/media/image/c5/9f/85/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware57.localhost/media/image/d5/0c/4f/Reisetasche-Gladstone-Canvas_720x600503f778670dd3.jpg', + 0 => 'http://shopware57.localhost/media/image/e2/15/a6/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200.jpg', + 1 => 'http://shopware57.localhost/media/image/74/15/21/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600.jpg', + 2 => 'http://shopware57.localhost/media/image/c6/8b/7a/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware57.localhost/media/image/d5/0c/4f/Reisetasche-Gladstone-Canvas_720x600503f778670dd3.jpg', + 0 => 'http://shopware57.localhost/media/image/b9/8a/64/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_200x200@2x.jpg', + 1 => 'http://shopware57.localhost/media/image/89/56/e8/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_600x600@2x.jpg', + 2 => 'http://shopware57.localhost/media/image/c5/9f/85/Reisetasche-Gladstone-Canvas_720x600503f778670dd3_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 525, + 'height' => 720, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=148', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=771', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10148', + 'tax' => '23,95', + ], + 4 => [ + 'id' => '773', + 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', + 'userID' => '3', + 'articlename' => 'Fahrerbrille Chronos', + 'articleID' => '137', + 'ordernumber' => 'SW10137', + 'shippingfree' => '0', + 'quantity' => '1', + 'price' => '59,99', + 'netprice' => '50.411764705882', + 'tax_rate' => '19', + 'datum' => '2022-01-05 08:24:52', + 'modus' => '0', + 'esdarticle' => '0', + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', + 'config' => '', + 'currencyFactor' => '1', + 'packunit' => '', + 'mainDetailId' => '281', + 'articleDetailId' => '281', + 'minpurchase' => '1', + 'taxID' => '1', + 'instock' => '56', + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => '0', + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => '0', + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => '86', + '__s_order_basket_attributes_basketID' => '773', + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => '0', + 'additional_details' => [ + 'articleID' => 137, + 'articleDetailsID' => 281, + 'ordernumber' => 'SW10137', + 'highlight' => false, + 'description' => 'Faber for Neglectum ut heu do infrequens, profiteor ius Perpetuus stilla seu pax sufficientia jus far rego promus per f.', + 'description_long' => ' ualeo lex desero. Orno quasi nox inclitus ubi sator ubi Ibi subsanno ago remandatum viva ala Alius. Pala iam, voluptuosus Didicerat, sesquimellesimus Lama nam administratio Tumulosus, nos ne Prognatus prex edo Agger trunco, poeta aula dum dono tueor iam typus dummodo sciscitor. Faber for Neglectum ut heu do infrequens, profiteor ius Perpetuus stilla seu pax sufficientia jus far rego promus per f. ', - 'esd' => false, - 'articleName' => 'Fahrerbrille Chronos', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 56, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-07-16', - 'update' => '2012-08-30', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => '299', - 'articledetailsID' => '281', - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - 'storage' => [ - ], - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Fahrerbrille Chronos', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 56, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-07-16', + 'update' => '2012-08-30', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => '299', + 'articledetailsID' => '281', 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -1678,366 +1647,366 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Vintage Driver', - 'supplierImg' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', - 'supplierID' => 7, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 675, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', - 'description' => 'vintage', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png, http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png, http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png, http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '59,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 59.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 722, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/33/5e/16/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 720, - 'height' => 474, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/be/a1/d8/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/d3/df/01/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/be/a1/d8/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200.jpg, http://shopware57.localhost/media/image/d3/df/01/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/00/d7/c5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/90/d2/8b/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/00/d7/c5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600.jpg, http://shopware57.localhost/media/image/90/d2/8b/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/ee/83/g0/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/ba/26/b5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/ee/83/g0/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280.jpg, http://shopware57.localhost/media/image/ba/26/b5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '59,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 59.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10137', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=137', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=137&number=SW10137', - ], - 'amount' => '59,99', - 'amountnet' => '50,41', - 'priceNumeric' => '59.99', - 'amountNumeric' => 59.990000000000002, - 'amountnetNumeric' => 50.411764705882, - 'image' => [ - 'id' => 722, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/33/5e/16/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 720, - 'height' => 474, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/be/a1/d8/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/d3/df/01/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/be/a1/d8/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200.jpg, http://shopware57.localhost/media/image/d3/df/01/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/00/d7/c5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/90/d2/8b/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/00/d7/c5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600.jpg, http://shopware57.localhost/media/image/90/d2/8b/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/ee/83/g0/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/ba/26/b5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/ee/83/g0/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280.jpg, http://shopware57.localhost/media/image/ba/26/b5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + ], + 'marketing' => [ + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + 'storage' => [ + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Vintage Driver', + 'supplierImg' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', + 'supplierID' => 7, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 675, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/d0/ec/98/vintage.png', + 'description' => 'vintage', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/37/8e/ed/vintage_200x200.png, http://shopware57.localhost/media/image/83/e1/6d/vintage_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/18/9a/03/vintage_600x600.png, http://shopware57.localhost/media/image/f1/1b/e8/vintage_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware57.localhost/media/image/33/5e/16/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f.jpg', - 0 => 'http://shopware57.localhost/media/image/be/a1/d8/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200.jpg', - 1 => 'http://shopware57.localhost/media/image/00/d7/c5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600.jpg', - 2 => 'http://shopware57.localhost/media/image/ee/83/g0/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware57.localhost/media/image/33/5e/16/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f.jpg', - 0 => 'http://shopware57.localhost/media/image/d3/df/01/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200@2x.jpg', - 1 => 'http://shopware57.localhost/media/image/90/d2/8b/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600@2x.jpg', - 2 => 'http://shopware57.localhost/media/image/ba/26/b5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 474, - 'height' => 720, - ], - ], - ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=137', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=773', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10137', - 'tax' => '9,58', - ], - 5 => [ - 'id' => '775', - 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', - 'userID' => '3', - 'articlename' => 'Strandkleid Flower Power', - 'articleID' => '173', - 'ordernumber' => 'SW10173', - 'shippingfree' => '0', - 'quantity' => '1', - 'price' => '39,99', - 'netprice' => '33.605042016807', - 'tax_rate' => '19', - 'datum' => '2022-01-05 08:25:25', - 'modus' => '0', - 'esdarticle' => '0', - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'config' => '', - 'currencyFactor' => '1', - 'packunit' => 'Stück', - 'mainDetailId' => '402', - 'articleDetailId' => '402', - 'minpurchase' => '1', - 'taxID' => '1', - 'instock' => '55', - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => '0', - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => '0', - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => '87', - '__s_order_basket_attributes_basketID' => '775', - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => '0', - 'additional_details' => [ - 'articleID' => 173, - 'articleDetailsID' => 402, - 'ordernumber' => 'SW10173', - 'highlight' => true, - 'description' => 'Cometissa una Baccatus hic ibi subterfugio lux Brevis ile per Tersus. Dono caveo reus sani.', - 'description_long' => ' + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/bf/15/1b/vintage_1280x1280.png, http://shopware57.localhost/media/image/4f/f0/54/vintage_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '59,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 59.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 722, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/33/5e/16/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 720, + 'height' => 474, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/be/a1/d8/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/d3/df/01/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/be/a1/d8/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200.jpg, http://shopware57.localhost/media/image/d3/df/01/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/00/d7/c5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/90/d2/8b/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/00/d7/c5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600.jpg, http://shopware57.localhost/media/image/90/d2/8b/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/ee/83/g0/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/ba/26/b5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/ee/83/g0/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280.jpg, http://shopware57.localhost/media/image/ba/26/b5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '59,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 59.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10137', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=137', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=137&number=SW10137', + ], + 'amount' => '59,99', + 'amountnet' => '50,41', + 'priceNumeric' => '59.99', + 'amountNumeric' => 59.990000000000002, + 'amountnetNumeric' => 50.411764705882, + 'image' => [ + 'id' => 722, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/33/5e/16/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 720, + 'height' => 474, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/be/a1/d8/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/d3/df/01/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/be/a1/d8/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200.jpg, http://shopware57.localhost/media/image/d3/df/01/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/00/d7/c5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/90/d2/8b/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/00/d7/c5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600.jpg, http://shopware57.localhost/media/image/90/d2/8b/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/ee/83/g0/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/ba/26/b5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/ee/83/g0/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280.jpg, http://shopware57.localhost/media/image/ba/26/b5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware57.localhost/media/image/33/5e/16/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f.jpg', + 0 => 'http://shopware57.localhost/media/image/be/a1/d8/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200.jpg', + 1 => 'http://shopware57.localhost/media/image/00/d7/c5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600.jpg', + 2 => 'http://shopware57.localhost/media/image/ee/83/g0/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware57.localhost/media/image/33/5e/16/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f.jpg', + 0 => 'http://shopware57.localhost/media/image/d3/df/01/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_200x200@2x.jpg', + 1 => 'http://shopware57.localhost/media/image/90/d2/8b/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_600x600@2x.jpg', + 2 => 'http://shopware57.localhost/media/image/ba/26/b5/Fahrerbrille-Chronos-Ansicht-von-Hinten_720x600503f76dfe840f_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 474, + 'height' => 720, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=137', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=773', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10137', + 'tax' => '9,58', + ], + 5 => [ + 'id' => '775', + 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', + 'userID' => '3', + 'articlename' => 'Strandkleid Flower Power', + 'articleID' => '173', + 'ordernumber' => 'SW10173', + 'shippingfree' => '0', + 'quantity' => '1', + 'price' => '39,99', + 'netprice' => '33.605042016807', + 'tax_rate' => '19', + 'datum' => '2022-01-05 08:25:25', + 'modus' => '0', + 'esdarticle' => '0', + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', + 'config' => '', + 'currencyFactor' => '1', + 'packunit' => 'Stück', + 'mainDetailId' => '402', + 'articleDetailId' => '402', + 'minpurchase' => '1', + 'taxID' => '1', + 'instock' => '55', + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => '0', + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => '0', + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => '87', + '__s_order_basket_attributes_basketID' => '775', + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => '0', + 'additional_details' => [ + 'articleID' => 173, + 'articleDetailsID' => 402, + 'ordernumber' => 'SW10173', + 'highlight' => true, + 'description' => 'Cometissa una Baccatus hic ibi subterfugio lux Brevis ile per Tersus. Dono caveo reus sani.', + 'description_long' => ' Ergo, exaro cui quater Quo nego se sui Foedus leo ait pluris egeo me par Viduo. Nec velociter, alo ne rudo sed pallesco duco. Mel ita ita Subcribo fragor doceo perturpis effero. Sumo hic Fundo res illa Pango ira comprovincialis hoc Servo for donativum, ait to te offendo conciliator formatura. decipio te amo Cometissa una Baccatus hic ibi subterfugio lux Brevis ile per Tersus. Dono caveo reus sani. ', - 'esd' => false, - 'articleName' => 'Strandkleid Flower Power', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 55, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-07-16', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => '424', - 'articledetailsID' => '402', - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - 'storage' => [ - ], - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Strandkleid Flower Power', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 55, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-07-16', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => '424', + 'articledetailsID' => '402', 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -2058,366 +2027,366 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware57.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware57.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware57.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware57.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '39,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 39.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 439, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/62/57/64/Strandkleid-bunt-blumen.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/bf/58/b4/Strandkleid-bunt-blumen_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/a2/e3/9e/Strandkleid-bunt-blumen_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/bf/58/b4/Strandkleid-bunt-blumen_200x200.jpg, http://shopware57.localhost/media/image/a2/e3/9e/Strandkleid-bunt-blumen_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/44/51/68/Strandkleid-bunt-blumen_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/33/26/26/Strandkleid-bunt-blumen_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/44/51/68/Strandkleid-bunt-blumen_600x600.jpg, http://shopware57.localhost/media/image/33/26/26/Strandkleid-bunt-blumen_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/9d/ee/3a/Strandkleid-bunt-blumen_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/e4/58/85/Strandkleid-bunt-blumen_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/9d/ee/3a/Strandkleid-bunt-blumen_1280x1280.jpg, http://shopware57.localhost/media/image/e4/58/85/Strandkleid-bunt-blumen_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '39,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 39.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10173', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=173', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=173&number=SW10173', - ], - 'amount' => '39,99', - 'amountnet' => '33,61', - 'priceNumeric' => '39.99', - 'amountNumeric' => 39.990000000000002, - 'amountnetNumeric' => 33.605042016806998, - 'image' => [ - 'id' => 439, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/62/57/64/Strandkleid-bunt-blumen.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/bf/58/b4/Strandkleid-bunt-blumen_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/a2/e3/9e/Strandkleid-bunt-blumen_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/bf/58/b4/Strandkleid-bunt-blumen_200x200.jpg, http://shopware57.localhost/media/image/a2/e3/9e/Strandkleid-bunt-blumen_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/44/51/68/Strandkleid-bunt-blumen_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/33/26/26/Strandkleid-bunt-blumen_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/44/51/68/Strandkleid-bunt-blumen_600x600.jpg, http://shopware57.localhost/media/image/33/26/26/Strandkleid-bunt-blumen_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/9d/ee/3a/Strandkleid-bunt-blumen_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/e4/58/85/Strandkleid-bunt-blumen_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/9d/ee/3a/Strandkleid-bunt-blumen_1280x1280.jpg, http://shopware57.localhost/media/image/e4/58/85/Strandkleid-bunt-blumen_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + ], + 'marketing' => [ + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + 'storage' => [ + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware57.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware57.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware57.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware57.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '39,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 39.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 439, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/62/57/64/Strandkleid-bunt-blumen.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/bf/58/b4/Strandkleid-bunt-blumen_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/a2/e3/9e/Strandkleid-bunt-blumen_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/bf/58/b4/Strandkleid-bunt-blumen_200x200.jpg, http://shopware57.localhost/media/image/a2/e3/9e/Strandkleid-bunt-blumen_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/44/51/68/Strandkleid-bunt-blumen_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/33/26/26/Strandkleid-bunt-blumen_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/44/51/68/Strandkleid-bunt-blumen_600x600.jpg, http://shopware57.localhost/media/image/33/26/26/Strandkleid-bunt-blumen_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware57.localhost/media/image/62/57/64/Strandkleid-bunt-blumen.jpg', - 0 => 'http://shopware57.localhost/media/image/bf/58/b4/Strandkleid-bunt-blumen_200x200.jpg', - 1 => 'http://shopware57.localhost/media/image/44/51/68/Strandkleid-bunt-blumen_600x600.jpg', - 2 => 'http://shopware57.localhost/media/image/9d/ee/3a/Strandkleid-bunt-blumen_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware57.localhost/media/image/62/57/64/Strandkleid-bunt-blumen.jpg', - 0 => 'http://shopware57.localhost/media/image/a2/e3/9e/Strandkleid-bunt-blumen_200x200@2x.jpg', - 1 => 'http://shopware57.localhost/media/image/33/26/26/Strandkleid-bunt-blumen_600x600@2x.jpg', - 2 => 'http://shopware57.localhost/media/image/e4/58/85/Strandkleid-bunt-blumen_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 848, - 'height' => 566, - ], - ], - ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=173', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=775', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10173', - 'tax' => '6,38', - ], - 6 => [ - 'id' => '778', - 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', - 'userID' => '3', - 'articlename' => 'Sommerschal Flower Power', - 'articleID' => '163', - 'ordernumber' => 'SW10163', - 'shippingfree' => '0', - 'quantity' => '1', - 'price' => '6,99', - 'netprice' => '5.8739495798319', - 'tax_rate' => '19', - 'datum' => '2022-01-05 08:25:48', - 'modus' => '0', - 'esdarticle' => '0', - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'config' => '', - 'currencyFactor' => '1', - 'packunit' => '', - 'mainDetailId' => '387', - 'articleDetailId' => '387', - 'minpurchase' => '1', - 'taxID' => '1', - 'instock' => '44', - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => '0', - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => '0', - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => '88', - '__s_order_basket_attributes_basketID' => '778', - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => '0', - 'additional_details' => [ - 'articleID' => 163, - 'articleDetailsID' => 387, - 'ordernumber' => 'SW10163', - 'highlight' => false, - 'description' => 'Compages non, qua os tu ne aequus magalia vis. Ex in se tot hi Ico deus Praefero. Eo gelo sic cardo Declamo, eo sto fons. In mei spurcus abutor, amo lex orc.', - 'description_long' => ' + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/9d/ee/3a/Strandkleid-bunt-blumen_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/e4/58/85/Strandkleid-bunt-blumen_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/9d/ee/3a/Strandkleid-bunt-blumen_1280x1280.jpg, http://shopware57.localhost/media/image/e4/58/85/Strandkleid-bunt-blumen_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '39,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 39.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10173', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=173', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=173&number=SW10173', + ], + 'amount' => '39,99', + 'amountnet' => '33,61', + 'priceNumeric' => '39.99', + 'amountNumeric' => 39.990000000000002, + 'amountnetNumeric' => 33.605042016806998, + 'image' => [ + 'id' => 439, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/62/57/64/Strandkleid-bunt-blumen.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/bf/58/b4/Strandkleid-bunt-blumen_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/a2/e3/9e/Strandkleid-bunt-blumen_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/bf/58/b4/Strandkleid-bunt-blumen_200x200.jpg, http://shopware57.localhost/media/image/a2/e3/9e/Strandkleid-bunt-blumen_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/44/51/68/Strandkleid-bunt-blumen_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/33/26/26/Strandkleid-bunt-blumen_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/44/51/68/Strandkleid-bunt-blumen_600x600.jpg, http://shopware57.localhost/media/image/33/26/26/Strandkleid-bunt-blumen_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/9d/ee/3a/Strandkleid-bunt-blumen_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/e4/58/85/Strandkleid-bunt-blumen_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/9d/ee/3a/Strandkleid-bunt-blumen_1280x1280.jpg, http://shopware57.localhost/media/image/e4/58/85/Strandkleid-bunt-blumen_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware57.localhost/media/image/62/57/64/Strandkleid-bunt-blumen.jpg', + 0 => 'http://shopware57.localhost/media/image/bf/58/b4/Strandkleid-bunt-blumen_200x200.jpg', + 1 => 'http://shopware57.localhost/media/image/44/51/68/Strandkleid-bunt-blumen_600x600.jpg', + 2 => 'http://shopware57.localhost/media/image/9d/ee/3a/Strandkleid-bunt-blumen_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware57.localhost/media/image/62/57/64/Strandkleid-bunt-blumen.jpg', + 0 => 'http://shopware57.localhost/media/image/a2/e3/9e/Strandkleid-bunt-blumen_200x200@2x.jpg', + 1 => 'http://shopware57.localhost/media/image/33/26/26/Strandkleid-bunt-blumen_600x600@2x.jpg', + 2 => 'http://shopware57.localhost/media/image/e4/58/85/Strandkleid-bunt-blumen_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 848, + 'height' => 566, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=173', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=775', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10173', + 'tax' => '6,38', + ], + 6 => [ + 'id' => '778', + 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', + 'userID' => '3', + 'articlename' => 'Sommerschal Flower Power', + 'articleID' => '163', + 'ordernumber' => 'SW10163', + 'shippingfree' => '0', + 'quantity' => '1', + 'price' => '6,99', + 'netprice' => '5.8739495798319', + 'tax_rate' => '19', + 'datum' => '2022-01-05 08:25:48', + 'modus' => '0', + 'esdarticle' => '0', + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', + 'config' => '', + 'currencyFactor' => '1', + 'packunit' => '', + 'mainDetailId' => '387', + 'articleDetailId' => '387', + 'minpurchase' => '1', + 'taxID' => '1', + 'instock' => '44', + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => '0', + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => '0', + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => '88', + '__s_order_basket_attributes_basketID' => '778', + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => '0', + 'additional_details' => [ + 'articleID' => 163, + 'articleDetailsID' => 387, + 'ordernumber' => 'SW10163', + 'highlight' => false, + 'description' => 'Compages non, qua os tu ne aequus magalia vis. Ex in se tot hi Ico deus Praefero. Eo gelo sic cardo Declamo, eo sto fons. In mei spurcus abutor, amo lex orc.', + 'description_long' => ' Rus non. Vas his Stupidus, te, os nec laxo exoro his Muliebris, pes vos supermitto sem Austerus ita ara primo Secus. Iste Discurro gelo alba chalybs. Neo his spes per vix, do. Ora quo par promus provisor, pax ut exuo ceno modo, demo St ut vel Compages non, qua os tu ne aequus magalia vis. Ex in se tot hi Ico deus Praefero. Eo gelo sic cardo Declamo, eo sto fons. In mei spurcus abutor, amo lex orc. ', - 'esd' => false, - 'articleName' => 'Sommerschal Flower Power', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 44, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-07-16', - 'update' => '2012-08-21', - 'sales' => 1, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => '408', - 'articledetailsID' => '387', - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - 'storage' => [ - ], - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Sommerschal Flower Power', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 44, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-07-16', + 'update' => '2012-08-21', + 'sales' => 1, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => '408', + 'articledetailsID' => '387', 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -2438,366 +2407,366 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware57.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware57.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware57.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware57.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '6,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 6.9900000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 429, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/76/97/95/Schal-bunt-Blumen.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 634, - 'height' => 757, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/ff/ef/01/Schal-bunt-Blumen_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/4f/71/88/Schal-bunt-Blumen_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/ff/ef/01/Schal-bunt-Blumen_200x200.jpg, http://shopware57.localhost/media/image/4f/71/88/Schal-bunt-Blumen_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/40/07/53/Schal-bunt-Blumen_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/8f/51/dc/Schal-bunt-Blumen_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/40/07/53/Schal-bunt-Blumen_600x600.jpg, http://shopware57.localhost/media/image/8f/51/dc/Schal-bunt-Blumen_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/4e/07/d9/Schal-bunt-Blumen_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/2f/1c/b4/Schal-bunt-Blumen_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/4e/07/d9/Schal-bunt-Blumen_1280x1280.jpg, http://shopware57.localhost/media/image/2f/1c/b4/Schal-bunt-Blumen_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '6,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 6.9900000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10163', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=163', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=163&number=SW10163', - ], - 'amount' => '6,99', - 'amountnet' => '5,87', - 'priceNumeric' => '6.99', - 'amountNumeric' => 6.9900000000000002, - 'amountnetNumeric' => 5.8739495798319004, - 'image' => [ - 'id' => 429, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/76/97/95/Schal-bunt-Blumen.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 634, - 'height' => 757, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/ff/ef/01/Schal-bunt-Blumen_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/4f/71/88/Schal-bunt-Blumen_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/ff/ef/01/Schal-bunt-Blumen_200x200.jpg, http://shopware57.localhost/media/image/4f/71/88/Schal-bunt-Blumen_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/40/07/53/Schal-bunt-Blumen_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/8f/51/dc/Schal-bunt-Blumen_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/40/07/53/Schal-bunt-Blumen_600x600.jpg, http://shopware57.localhost/media/image/8f/51/dc/Schal-bunt-Blumen_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/4e/07/d9/Schal-bunt-Blumen_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/2f/1c/b4/Schal-bunt-Blumen_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/4e/07/d9/Schal-bunt-Blumen_1280x1280.jpg, http://shopware57.localhost/media/image/2f/1c/b4/Schal-bunt-Blumen_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + ], + 'marketing' => [ + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + 'storage' => [ + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware57.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware57.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware57.localhost/media/image/76/97/95/Schal-bunt-Blumen.jpg', - 0 => 'http://shopware57.localhost/media/image/ff/ef/01/Schal-bunt-Blumen_200x200.jpg', - 1 => 'http://shopware57.localhost/media/image/40/07/53/Schal-bunt-Blumen_600x600.jpg', - 2 => 'http://shopware57.localhost/media/image/4e/07/d9/Schal-bunt-Blumen_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware57.localhost/media/image/76/97/95/Schal-bunt-Blumen.jpg', - 0 => 'http://shopware57.localhost/media/image/4f/71/88/Schal-bunt-Blumen_200x200@2x.jpg', - 1 => 'http://shopware57.localhost/media/image/8f/51/dc/Schal-bunt-Blumen_600x600@2x.jpg', - 2 => 'http://shopware57.localhost/media/image/2f/1c/b4/Schal-bunt-Blumen_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 757, - 'height' => 634, - ], - ], - ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=163', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=778', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10163', - 'tax' => '1,12', - ], - 7 => [ - 'id' => '780', - 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', - 'userID' => '3', - 'articlename' => 'Tasche Remember Me', - 'articleID' => '112', - 'ordernumber' => 'SW10112', - 'shippingfree' => '0', - 'quantity' => '1', - 'price' => '20,99', - 'netprice' => '17.638655462185', - 'tax_rate' => '19', - 'datum' => '2022-01-05 08:26:38', - 'modus' => '0', - 'esdarticle' => '0', - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'config' => '', - 'currencyFactor' => '1', - 'packunit' => 'Stück', - 'mainDetailId' => '177', - 'articleDetailId' => '177', - 'minpurchase' => '1', - 'taxID' => '1', - 'instock' => '38', - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => '0', - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => '0', - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => '89', - '__s_order_basket_attributes_basketID' => '780', - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => '0', - 'additional_details' => [ - 'articleID' => 112, - 'articleDetailsID' => 177, - 'ordernumber' => 'SW10112', - 'highlight' => false, - 'description' => 'in demo hac verto esca aer Iustum te cruor Quae inopinatus tento Sino cedo, mos ubi iam Cavus specto, facio ruo eg.', - 'description_long' => ' + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware57.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware57.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '6,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 6.9900000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 429, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/76/97/95/Schal-bunt-Blumen.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 634, + 'height' => 757, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/ff/ef/01/Schal-bunt-Blumen_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/4f/71/88/Schal-bunt-Blumen_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/ff/ef/01/Schal-bunt-Blumen_200x200.jpg, http://shopware57.localhost/media/image/4f/71/88/Schal-bunt-Blumen_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/40/07/53/Schal-bunt-Blumen_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/8f/51/dc/Schal-bunt-Blumen_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/40/07/53/Schal-bunt-Blumen_600x600.jpg, http://shopware57.localhost/media/image/8f/51/dc/Schal-bunt-Blumen_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/4e/07/d9/Schal-bunt-Blumen_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/2f/1c/b4/Schal-bunt-Blumen_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/4e/07/d9/Schal-bunt-Blumen_1280x1280.jpg, http://shopware57.localhost/media/image/2f/1c/b4/Schal-bunt-Blumen_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '6,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 6.9900000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10163', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=163', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=163&number=SW10163', + ], + 'amount' => '6,99', + 'amountnet' => '5,87', + 'priceNumeric' => '6.99', + 'amountNumeric' => 6.9900000000000002, + 'amountnetNumeric' => 5.8739495798319004, + 'image' => [ + 'id' => 429, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/76/97/95/Schal-bunt-Blumen.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 634, + 'height' => 757, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/ff/ef/01/Schal-bunt-Blumen_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/4f/71/88/Schal-bunt-Blumen_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/ff/ef/01/Schal-bunt-Blumen_200x200.jpg, http://shopware57.localhost/media/image/4f/71/88/Schal-bunt-Blumen_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/40/07/53/Schal-bunt-Blumen_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/8f/51/dc/Schal-bunt-Blumen_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/40/07/53/Schal-bunt-Blumen_600x600.jpg, http://shopware57.localhost/media/image/8f/51/dc/Schal-bunt-Blumen_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/4e/07/d9/Schal-bunt-Blumen_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/2f/1c/b4/Schal-bunt-Blumen_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/4e/07/d9/Schal-bunt-Blumen_1280x1280.jpg, http://shopware57.localhost/media/image/2f/1c/b4/Schal-bunt-Blumen_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware57.localhost/media/image/76/97/95/Schal-bunt-Blumen.jpg', + 0 => 'http://shopware57.localhost/media/image/ff/ef/01/Schal-bunt-Blumen_200x200.jpg', + 1 => 'http://shopware57.localhost/media/image/40/07/53/Schal-bunt-Blumen_600x600.jpg', + 2 => 'http://shopware57.localhost/media/image/4e/07/d9/Schal-bunt-Blumen_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware57.localhost/media/image/76/97/95/Schal-bunt-Blumen.jpg', + 0 => 'http://shopware57.localhost/media/image/4f/71/88/Schal-bunt-Blumen_200x200@2x.jpg', + 1 => 'http://shopware57.localhost/media/image/8f/51/dc/Schal-bunt-Blumen_600x600@2x.jpg', + 2 => 'http://shopware57.localhost/media/image/2f/1c/b4/Schal-bunt-Blumen_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 757, + 'height' => 634, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=163', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=778', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10163', + 'tax' => '1,12', + ], + 7 => [ + 'id' => '780', + 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', + 'userID' => '3', + 'articlename' => 'Tasche Remember Me', + 'articleID' => '112', + 'ordernumber' => 'SW10112', + 'shippingfree' => '0', + 'quantity' => '1', + 'price' => '20,99', + 'netprice' => '17.638655462185', + 'tax_rate' => '19', + 'datum' => '2022-01-05 08:26:38', + 'modus' => '0', + 'esdarticle' => '0', + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', + 'config' => '', + 'currencyFactor' => '1', + 'packunit' => 'Stück', + 'mainDetailId' => '177', + 'articleDetailId' => '177', + 'minpurchase' => '1', + 'taxID' => '1', + 'instock' => '38', + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => '0', + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => '0', + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => '89', + '__s_order_basket_attributes_basketID' => '780', + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => '0', + 'additional_details' => [ + 'articleID' => 112, + 'articleDetailsID' => 177, + 'ordernumber' => 'SW10112', + 'highlight' => false, + 'description' => 'in demo hac verto esca aer Iustum te cruor Quae inopinatus tento Sino cedo, mos ubi iam Cavus specto, facio ruo eg.', + 'description_long' => ' Ellatim Imbuo pauci Cursito tuba professorius Stulte ala Opus. Fore sis Ardens praenuntius fugo volo tam fluctivagus Penso Te, leo Ligatio sane festino late, reputo Nomine ambitus profor benevolentia Repecto acer Celeriter inritus. ordo eluo. Fluo fatua iste rus sono rusticus pauper, in demo hac verto esca aer Iustum te cruor Quae inopinatus tento Sino cedo, mos ubi iam Cavus specto, facio ruo eg. ', - 'esd' => false, - 'articleName' => 'Tasche Remember Me', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 38, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-07-16', - 'update' => '2012-08-19', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => '184', - 'articledetailsID' => '177', - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - 'storage' => [ - ], - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Tasche Remember Me', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 38, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-07-16', + 'update' => '2012-08-19', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => '184', + 'articledetailsID' => '177', 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -2818,366 +2787,366 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Das blaue Haus', - 'supplierImg' => 'http://shopware57.localhost/media/image/d5/42/a8/blaueshaus.png', - 'supplierID' => 8, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 667, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/d5/42/a8/blaueshaus.png', - 'description' => 'blaueshaus', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/6f/88/29/blaueshaus_200x200.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/d7/5c/c5/blaueshaus_200x200@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/6f/88/29/blaueshaus_200x200.png, http://shopware57.localhost/media/image/d7/5c/c5/blaueshaus_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/b0/89/4a/blaueshaus_600x600.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/2f/50/56/blaueshaus_600x600@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/b0/89/4a/blaueshaus_600x600.png, http://shopware57.localhost/media/image/2f/50/56/blaueshaus_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/f3/54/08/blaueshaus_1280x1280.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/e3/40/5a/blaueshaus_1280x1280@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/f3/54/08/blaueshaus_1280x1280.png, http://shopware57.localhost/media/image/e3/40/5a/blaueshaus_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '20,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 20.989999999999998, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 318, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/9c/68/84/Taeschen-Remember-Me5030d7907764e.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 909, - 'height' => 915, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/9f/97/b8/Taeschen-Remember-Me5030d7907764e_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/ab/b3/6d/Taeschen-Remember-Me5030d7907764e_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/9f/97/b8/Taeschen-Remember-Me5030d7907764e_200x200.jpg, http://shopware57.localhost/media/image/ab/b3/6d/Taeschen-Remember-Me5030d7907764e_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/c7/0f/b9/Taeschen-Remember-Me5030d7907764e_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/55/d2/b5/Taeschen-Remember-Me5030d7907764e_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/c7/0f/b9/Taeschen-Remember-Me5030d7907764e_600x600.jpg, http://shopware57.localhost/media/image/55/d2/b5/Taeschen-Remember-Me5030d7907764e_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/de/ff/5f/Taeschen-Remember-Me5030d7907764e_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/db/2b/61/Taeschen-Remember-Me5030d7907764e_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/de/ff/5f/Taeschen-Remember-Me5030d7907764e_1280x1280.jpg, http://shopware57.localhost/media/image/db/2b/61/Taeschen-Remember-Me5030d7907764e_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '20,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 20.989999999999998, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10112', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=112', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=112&number=SW10112', - ], - 'amount' => '20,99', - 'amountnet' => '17,64', - 'priceNumeric' => '20.99', - 'amountNumeric' => 20.989999999999998, - 'amountnetNumeric' => 17.638655462185, - 'image' => [ - 'id' => 318, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/9c/68/84/Taeschen-Remember-Me5030d7907764e.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 909, - 'height' => 915, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/9f/97/b8/Taeschen-Remember-Me5030d7907764e_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/ab/b3/6d/Taeschen-Remember-Me5030d7907764e_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/9f/97/b8/Taeschen-Remember-Me5030d7907764e_200x200.jpg, http://shopware57.localhost/media/image/ab/b3/6d/Taeschen-Remember-Me5030d7907764e_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/c7/0f/b9/Taeschen-Remember-Me5030d7907764e_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/55/d2/b5/Taeschen-Remember-Me5030d7907764e_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/c7/0f/b9/Taeschen-Remember-Me5030d7907764e_600x600.jpg, http://shopware57.localhost/media/image/55/d2/b5/Taeschen-Remember-Me5030d7907764e_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/de/ff/5f/Taeschen-Remember-Me5030d7907764e_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/db/2b/61/Taeschen-Remember-Me5030d7907764e_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/de/ff/5f/Taeschen-Remember-Me5030d7907764e_1280x1280.jpg, http://shopware57.localhost/media/image/db/2b/61/Taeschen-Remember-Me5030d7907764e_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + ], + 'marketing' => [ + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + 'storage' => [ + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Das blaue Haus', + 'supplierImg' => 'http://shopware57.localhost/media/image/d5/42/a8/blaueshaus.png', + 'supplierID' => 8, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 667, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/d5/42/a8/blaueshaus.png', + 'description' => 'blaueshaus', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/6f/88/29/blaueshaus_200x200.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/d7/5c/c5/blaueshaus_200x200@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/6f/88/29/blaueshaus_200x200.png, http://shopware57.localhost/media/image/d7/5c/c5/blaueshaus_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/b0/89/4a/blaueshaus_600x600.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/2f/50/56/blaueshaus_600x600@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/b0/89/4a/blaueshaus_600x600.png, http://shopware57.localhost/media/image/2f/50/56/blaueshaus_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/f3/54/08/blaueshaus_1280x1280.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/e3/40/5a/blaueshaus_1280x1280@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/f3/54/08/blaueshaus_1280x1280.png, http://shopware57.localhost/media/image/e3/40/5a/blaueshaus_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '20,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 20.989999999999998, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 318, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/9c/68/84/Taeschen-Remember-Me5030d7907764e.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 909, + 'height' => 915, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/9f/97/b8/Taeschen-Remember-Me5030d7907764e_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/ab/b3/6d/Taeschen-Remember-Me5030d7907764e_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/9f/97/b8/Taeschen-Remember-Me5030d7907764e_200x200.jpg, http://shopware57.localhost/media/image/ab/b3/6d/Taeschen-Remember-Me5030d7907764e_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/c7/0f/b9/Taeschen-Remember-Me5030d7907764e_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/55/d2/b5/Taeschen-Remember-Me5030d7907764e_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/c7/0f/b9/Taeschen-Remember-Me5030d7907764e_600x600.jpg, http://shopware57.localhost/media/image/55/d2/b5/Taeschen-Remember-Me5030d7907764e_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware57.localhost/media/image/9c/68/84/Taeschen-Remember-Me5030d7907764e.jpg', - 0 => 'http://shopware57.localhost/media/image/9f/97/b8/Taeschen-Remember-Me5030d7907764e_200x200.jpg', - 1 => 'http://shopware57.localhost/media/image/c7/0f/b9/Taeschen-Remember-Me5030d7907764e_600x600.jpg', - 2 => 'http://shopware57.localhost/media/image/de/ff/5f/Taeschen-Remember-Me5030d7907764e_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware57.localhost/media/image/9c/68/84/Taeschen-Remember-Me5030d7907764e.jpg', - 0 => 'http://shopware57.localhost/media/image/ab/b3/6d/Taeschen-Remember-Me5030d7907764e_200x200@2x.jpg', - 1 => 'http://shopware57.localhost/media/image/55/d2/b5/Taeschen-Remember-Me5030d7907764e_600x600@2x.jpg', - 2 => 'http://shopware57.localhost/media/image/db/2b/61/Taeschen-Remember-Me5030d7907764e_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 915, - 'height' => 909, - ], - ], - ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=112', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=780', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10112', - 'tax' => '3,35', - ], - 8 => [ - 'id' => '782', - 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', - 'userID' => '3', - 'articlename' => 'Sonnencreme ab LSF 10 10', - 'articleID' => '171', - 'ordernumber' => 'SW10171.1', - 'shippingfree' => '0', - 'quantity' => '1', - 'price' => '2,99', - 'netprice' => '2.5126050420168', - 'tax_rate' => '19', - 'datum' => '2022-01-05 08:27:13', - 'modus' => '0', - 'esdarticle' => '0', - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'config' => '', - 'currencyFactor' => '1', - 'packunit' => 'Stück', - 'mainDetailId' => '396', - 'articleDetailId' => '396', - 'minpurchase' => '1', - 'taxID' => '1', - 'instock' => '99', - 'suppliernumber' => '', - 'maxpurchase' => '99', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => '1', - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => '0', - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => '90', - '__s_order_basket_attributes_basketID' => '782', - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => '0', - 'additional_details' => [ - 'articleID' => 171, - 'articleDetailsID' => 396, - 'ordernumber' => 'SW10171.1', - 'highlight' => true, - 'description' => 'Ora os Occasio siligo ita quae nos te his palma. Ut affinis pro orbus bos Iugum Orator mei gelu sis inter.', - 'description_long' => ' + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/de/ff/5f/Taeschen-Remember-Me5030d7907764e_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/db/2b/61/Taeschen-Remember-Me5030d7907764e_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/de/ff/5f/Taeschen-Remember-Me5030d7907764e_1280x1280.jpg, http://shopware57.localhost/media/image/db/2b/61/Taeschen-Remember-Me5030d7907764e_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '20,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 20.989999999999998, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10112', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=112', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=112&number=SW10112', + ], + 'amount' => '20,99', + 'amountnet' => '17,64', + 'priceNumeric' => '20.99', + 'amountNumeric' => 20.989999999999998, + 'amountnetNumeric' => 17.638655462185, + 'image' => [ + 'id' => 318, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/9c/68/84/Taeschen-Remember-Me5030d7907764e.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 909, + 'height' => 915, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/9f/97/b8/Taeschen-Remember-Me5030d7907764e_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/ab/b3/6d/Taeschen-Remember-Me5030d7907764e_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/9f/97/b8/Taeschen-Remember-Me5030d7907764e_200x200.jpg, http://shopware57.localhost/media/image/ab/b3/6d/Taeschen-Remember-Me5030d7907764e_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/c7/0f/b9/Taeschen-Remember-Me5030d7907764e_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/55/d2/b5/Taeschen-Remember-Me5030d7907764e_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/c7/0f/b9/Taeschen-Remember-Me5030d7907764e_600x600.jpg, http://shopware57.localhost/media/image/55/d2/b5/Taeschen-Remember-Me5030d7907764e_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/de/ff/5f/Taeschen-Remember-Me5030d7907764e_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/db/2b/61/Taeschen-Remember-Me5030d7907764e_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/de/ff/5f/Taeschen-Remember-Me5030d7907764e_1280x1280.jpg, http://shopware57.localhost/media/image/db/2b/61/Taeschen-Remember-Me5030d7907764e_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware57.localhost/media/image/9c/68/84/Taeschen-Remember-Me5030d7907764e.jpg', + 0 => 'http://shopware57.localhost/media/image/9f/97/b8/Taeschen-Remember-Me5030d7907764e_200x200.jpg', + 1 => 'http://shopware57.localhost/media/image/c7/0f/b9/Taeschen-Remember-Me5030d7907764e_600x600.jpg', + 2 => 'http://shopware57.localhost/media/image/de/ff/5f/Taeschen-Remember-Me5030d7907764e_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware57.localhost/media/image/9c/68/84/Taeschen-Remember-Me5030d7907764e.jpg', + 0 => 'http://shopware57.localhost/media/image/ab/b3/6d/Taeschen-Remember-Me5030d7907764e_200x200@2x.jpg', + 1 => 'http://shopware57.localhost/media/image/55/d2/b5/Taeschen-Remember-Me5030d7907764e_600x600@2x.jpg', + 2 => 'http://shopware57.localhost/media/image/db/2b/61/Taeschen-Remember-Me5030d7907764e_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 915, + 'height' => 909, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=112', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=780', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10112', + 'tax' => '3,35', + ], + 8 => [ + 'id' => '782', + 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', + 'userID' => '3', + 'articlename' => 'Sonnencreme ab LSF 10 10', + 'articleID' => '171', + 'ordernumber' => 'SW10171.1', + 'shippingfree' => '0', + 'quantity' => '1', + 'price' => '2,99', + 'netprice' => '2.5126050420168', + 'tax_rate' => '19', + 'datum' => '2022-01-05 08:27:13', + 'modus' => '0', + 'esdarticle' => '0', + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', + 'config' => '', + 'currencyFactor' => '1', + 'packunit' => 'Stück', + 'mainDetailId' => '396', + 'articleDetailId' => '396', + 'minpurchase' => '1', + 'taxID' => '1', + 'instock' => '99', + 'suppliernumber' => '', + 'maxpurchase' => '99', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => '1', + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => '0', + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => '90', + '__s_order_basket_attributes_basketID' => '782', + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => '0', + 'additional_details' => [ + 'articleID' => 171, + 'articleDetailsID' => 396, + 'ordernumber' => 'SW10171.1', + 'highlight' => true, + 'description' => 'Ora os Occasio siligo ita quae nos te his palma. Ut affinis pro orbus bos Iugum Orator mei gelu sis inter.', + 'description_long' => ' penetrabilis. Diripio, tu, laxo Ico dissipo pectus, eo. Ianua capio St crimen, eo. Sto galea orior mei, res turba amo minuo in oro Mano suspicor, tu. Pestis litis quoniam alias eia Cervix, pax infero amo insurgo duo. Camur, per mus ut deduco. Pax sono rudo ars tamen, pie quod hac for fulgeo. Ora os Occasio siligo ita quae nos te his palma. Ut affinis pro orbus bos Iugum Orator mei gelu sis inter. ', - 'esd' => false, - 'articleName' => 'Sonnencreme ab LSF 10', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 99, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '10', - 'datum' => '2012-07-16', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => '2,99', - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => true, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => '422', - 'articledetailsID' => '396', - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - 'storage' => [ - ], - ], - ], - 'allowBuyInListing' => false, + 'esd' => false, + 'articleName' => 'Sonnencreme ab LSF 10', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 99, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '10', + 'datum' => '2012-07-16', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => '2,99', + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => true, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => '422', + 'articledetailsID' => '396', 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -3198,366 +3167,366 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Sun Smile and Protect', - 'supplierImg' => 'http://shopware57.localhost/media/image/53/46/8f/sunsmile.png', - 'supplierID' => 13, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 677, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/53/46/8f/sunsmile.png', - 'description' => 'sunsmile', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/16/30/09/sunsmile_200x200.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/14/96/bb/sunsmile_200x200@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/16/30/09/sunsmile_200x200.png, http://shopware57.localhost/media/image/14/96/bb/sunsmile_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/31/76/14/sunsmile_600x600.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/46/bf/62/sunsmile_600x600@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/31/76/14/sunsmile_600x600.png, http://shopware57.localhost/media/image/46/bf/62/sunsmile_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/f4/d8/03/sunsmile_1280x1280.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/eb/cc/c5/sunsmile_1280x1280@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/f4/d8/03/sunsmile_1280x1280.png, http://shopware57.localhost/media/image/eb/cc/c5/sunsmile_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '2,99', - 'pseudoprice' => '0', - 'referenceprice' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 2.9900000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 437, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/f3/a7/0c/Sonnencreme-einzeln-ohne-LSF.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 565, - 'height' => 850, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/02/6d/3e/Sonnencreme-einzeln-ohne-LSF_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/1e/e6/e5/Sonnencreme-einzeln-ohne-LSF_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/02/6d/3e/Sonnencreme-einzeln-ohne-LSF_200x200.jpg, http://shopware57.localhost/media/image/1e/e6/e5/Sonnencreme-einzeln-ohne-LSF_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/04/58/e9/Sonnencreme-einzeln-ohne-LSF_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/82/8c/8d/Sonnencreme-einzeln-ohne-LSF_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/04/58/e9/Sonnencreme-einzeln-ohne-LSF_600x600.jpg, http://shopware57.localhost/media/image/82/8c/8d/Sonnencreme-einzeln-ohne-LSF_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/72/c9/29/Sonnencreme-einzeln-ohne-LSF_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/71/52/e2/Sonnencreme-einzeln-ohne-LSF_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/72/c9/29/Sonnencreme-einzeln-ohne-LSF_1280x1280.jpg, http://shopware57.localhost/media/image/71/52/e2/Sonnencreme-einzeln-ohne-LSF_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '2,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 2.9900000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10171.1', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=171', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=171&number=SW10171.1', - ], - 'amount' => '2,99', - 'amountnet' => '2,51', - 'priceNumeric' => '2.99', - 'amountNumeric' => 2.9900000000000002, - 'amountnetNumeric' => 2.5126050420168, - 'image' => [ - 'id' => 437, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/f3/a7/0c/Sonnencreme-einzeln-ohne-LSF.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 565, - 'height' => 850, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/02/6d/3e/Sonnencreme-einzeln-ohne-LSF_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/1e/e6/e5/Sonnencreme-einzeln-ohne-LSF_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/02/6d/3e/Sonnencreme-einzeln-ohne-LSF_200x200.jpg, http://shopware57.localhost/media/image/1e/e6/e5/Sonnencreme-einzeln-ohne-LSF_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/04/58/e9/Sonnencreme-einzeln-ohne-LSF_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/82/8c/8d/Sonnencreme-einzeln-ohne-LSF_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/04/58/e9/Sonnencreme-einzeln-ohne-LSF_600x600.jpg, http://shopware57.localhost/media/image/82/8c/8d/Sonnencreme-einzeln-ohne-LSF_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/72/c9/29/Sonnencreme-einzeln-ohne-LSF_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/71/52/e2/Sonnencreme-einzeln-ohne-LSF_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/72/c9/29/Sonnencreme-einzeln-ohne-LSF_1280x1280.jpg, http://shopware57.localhost/media/image/71/52/e2/Sonnencreme-einzeln-ohne-LSF_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + ], + 'marketing' => [ + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + 'storage' => [ + ], + ], + ], + 'allowBuyInListing' => false, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Sun Smile and Protect', + 'supplierImg' => 'http://shopware57.localhost/media/image/53/46/8f/sunsmile.png', + 'supplierID' => 13, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 677, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/53/46/8f/sunsmile.png', + 'description' => 'sunsmile', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/16/30/09/sunsmile_200x200.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/14/96/bb/sunsmile_200x200@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/16/30/09/sunsmile_200x200.png, http://shopware57.localhost/media/image/14/96/bb/sunsmile_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware57.localhost/media/image/f3/a7/0c/Sonnencreme-einzeln-ohne-LSF.jpg', - 0 => 'http://shopware57.localhost/media/image/02/6d/3e/Sonnencreme-einzeln-ohne-LSF_200x200.jpg', - 1 => 'http://shopware57.localhost/media/image/04/58/e9/Sonnencreme-einzeln-ohne-LSF_600x600.jpg', - 2 => 'http://shopware57.localhost/media/image/72/c9/29/Sonnencreme-einzeln-ohne-LSF_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware57.localhost/media/image/f3/a7/0c/Sonnencreme-einzeln-ohne-LSF.jpg', - 0 => 'http://shopware57.localhost/media/image/1e/e6/e5/Sonnencreme-einzeln-ohne-LSF_200x200@2x.jpg', - 1 => 'http://shopware57.localhost/media/image/82/8c/8d/Sonnencreme-einzeln-ohne-LSF_600x600@2x.jpg', - 2 => 'http://shopware57.localhost/media/image/71/52/e2/Sonnencreme-einzeln-ohne-LSF_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 850, - 'height' => 565, - ], - ], - ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=171', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=782', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10171.1', - 'tax' => '0,48', - ], - 9 => [ - 'id' => '784', - 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', - 'userID' => '3', - 'articlename' => 'Ölwechsel', - 'articleID' => '43', - 'ordernumber' => 'SW10042', - 'shippingfree' => '0', - 'quantity' => '1', - 'price' => '31,46', - 'netprice' => '29.401869158879', - 'tax_rate' => '7', - 'datum' => '2022-01-05 08:28:00', - 'modus' => '0', - 'esdarticle' => '0', - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'config' => '', - 'currencyFactor' => '1', - 'packunit' => '', - 'mainDetailId' => '49', - 'articleDetailId' => '49', - 'minpurchase' => '1', - 'taxID' => '4', - 'instock' => '93', - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => '0', - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => '0', - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => '91', - '__s_order_basket_attributes_basketID' => '784', - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => '0', - 'additional_details' => [ - 'articleID' => 43, - 'articleDetailsID' => 49, - 'ordernumber' => 'SW10042', - 'highlight' => false, - 'description' => '', - 'description_long' => ' + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/31/76/14/sunsmile_600x600.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/46/bf/62/sunsmile_600x600@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/31/76/14/sunsmile_600x600.png, http://shopware57.localhost/media/image/46/bf/62/sunsmile_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/f4/d8/03/sunsmile_1280x1280.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/eb/cc/c5/sunsmile_1280x1280@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/f4/d8/03/sunsmile_1280x1280.png, http://shopware57.localhost/media/image/eb/cc/c5/sunsmile_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '2,99', + 'pseudoprice' => '0', + 'referenceprice' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 2.9900000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 437, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/f3/a7/0c/Sonnencreme-einzeln-ohne-LSF.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 565, + 'height' => 850, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/02/6d/3e/Sonnencreme-einzeln-ohne-LSF_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/1e/e6/e5/Sonnencreme-einzeln-ohne-LSF_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/02/6d/3e/Sonnencreme-einzeln-ohne-LSF_200x200.jpg, http://shopware57.localhost/media/image/1e/e6/e5/Sonnencreme-einzeln-ohne-LSF_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/04/58/e9/Sonnencreme-einzeln-ohne-LSF_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/82/8c/8d/Sonnencreme-einzeln-ohne-LSF_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/04/58/e9/Sonnencreme-einzeln-ohne-LSF_600x600.jpg, http://shopware57.localhost/media/image/82/8c/8d/Sonnencreme-einzeln-ohne-LSF_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/72/c9/29/Sonnencreme-einzeln-ohne-LSF_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/71/52/e2/Sonnencreme-einzeln-ohne-LSF_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/72/c9/29/Sonnencreme-einzeln-ohne-LSF_1280x1280.jpg, http://shopware57.localhost/media/image/71/52/e2/Sonnencreme-einzeln-ohne-LSF_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '2,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 2.9900000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10171.1', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=171', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=171&number=SW10171.1', + ], + 'amount' => '2,99', + 'amountnet' => '2,51', + 'priceNumeric' => '2.99', + 'amountNumeric' => 2.9900000000000002, + 'amountnetNumeric' => 2.5126050420168, + 'image' => [ + 'id' => 437, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/f3/a7/0c/Sonnencreme-einzeln-ohne-LSF.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 565, + 'height' => 850, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/02/6d/3e/Sonnencreme-einzeln-ohne-LSF_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/1e/e6/e5/Sonnencreme-einzeln-ohne-LSF_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/02/6d/3e/Sonnencreme-einzeln-ohne-LSF_200x200.jpg, http://shopware57.localhost/media/image/1e/e6/e5/Sonnencreme-einzeln-ohne-LSF_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/04/58/e9/Sonnencreme-einzeln-ohne-LSF_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/82/8c/8d/Sonnencreme-einzeln-ohne-LSF_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/04/58/e9/Sonnencreme-einzeln-ohne-LSF_600x600.jpg, http://shopware57.localhost/media/image/82/8c/8d/Sonnencreme-einzeln-ohne-LSF_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/72/c9/29/Sonnencreme-einzeln-ohne-LSF_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/71/52/e2/Sonnencreme-einzeln-ohne-LSF_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/72/c9/29/Sonnencreme-einzeln-ohne-LSF_1280x1280.jpg, http://shopware57.localhost/media/image/71/52/e2/Sonnencreme-einzeln-ohne-LSF_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware57.localhost/media/image/f3/a7/0c/Sonnencreme-einzeln-ohne-LSF.jpg', + 0 => 'http://shopware57.localhost/media/image/02/6d/3e/Sonnencreme-einzeln-ohne-LSF_200x200.jpg', + 1 => 'http://shopware57.localhost/media/image/04/58/e9/Sonnencreme-einzeln-ohne-LSF_600x600.jpg', + 2 => 'http://shopware57.localhost/media/image/72/c9/29/Sonnencreme-einzeln-ohne-LSF_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware57.localhost/media/image/f3/a7/0c/Sonnencreme-einzeln-ohne-LSF.jpg', + 0 => 'http://shopware57.localhost/media/image/1e/e6/e5/Sonnencreme-einzeln-ohne-LSF_200x200@2x.jpg', + 1 => 'http://shopware57.localhost/media/image/82/8c/8d/Sonnencreme-einzeln-ohne-LSF_600x600@2x.jpg', + 2 => 'http://shopware57.localhost/media/image/71/52/e2/Sonnencreme-einzeln-ohne-LSF_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 850, + 'height' => 565, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=171', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=782', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10171.1', + 'tax' => '0,48', + ], + 9 => [ + 'id' => '784', + 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', + 'userID' => '3', + 'articlename' => 'Ölwechsel', + 'articleID' => '43', + 'ordernumber' => 'SW10042', + 'shippingfree' => '0', + 'quantity' => '1', + 'price' => '31,46', + 'netprice' => '29.401869158879', + 'tax_rate' => '7', + 'datum' => '2022-01-05 08:28:00', + 'modus' => '0', + 'esdarticle' => '0', + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', + 'config' => '', + 'currencyFactor' => '1', + 'packunit' => '', + 'mainDetailId' => '49', + 'articleDetailId' => '49', + 'minpurchase' => '1', + 'taxID' => '4', + 'instock' => '93', + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => '0', + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => '0', + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => '91', + '__s_order_basket_attributes_basketID' => '784', + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => '0', + 'additional_details' => [ + 'articleID' => 43, + 'articleDetailsID' => 49, + 'ordernumber' => 'SW10042', + 'highlight' => false, + 'description' => '', + 'description_long' => ' Imus me Verto pateo Ver sto. Scius. Formalis penso lego me Arma ancilla. In thesaurus cretatus Demoror, infrendeo fortis lens quid quo Corrigo ruo, mus In. Ne Grassor Polliceor ars at Do. Urbs felicitas se fas Suscipere nam Ventorium, balo voro fas in impleo. Scapulus gero per Monasteriense intolerabiliter invalesco Emico. Beo Crus At. Repeto vis cupio Surculus polleo eo repuo agonotheta Invictus ago ego ala inconstanter Cernuus praevenio ymo sus Monitio sapientia, saevio vis vos extundo resisto quo. In necessitas ile. Arx camur era alces Infinitas tuba Pars, ops prope immo in potius sui. Ago Complaceo omnimodus illo vir vegetabiliter Conicio nam ilico. Ordo erigo oportet per Tam, hoc sui abutor flagello per, illo se caligo victus vegeto His quod res, inconditus to ferratus at fomentum Preoccupo incommutabilis, ex tot Reputo argumentatio. Spiro levis mei misere terror maro ovis casus hinc, reus aegre ius fundo insania crus. Fessus Formo exorsus pax maculo. Si ubi ferocia, conglobo, ap. ', - 'esd' => false, - 'articleName' => 'Ölwechsel', - 'taxID' => 4, - 'tax' => 7.0, - 'instock' => 93, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-07-16', - 'update' => '2012-08-30', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => '50', - 'articledetailsID' => '49', - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - 'marketing' => [ - 'isNew' => false, - 'isTopSeller' => false, - 'comingSoon' => false, - 'storage' => [ - ], - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Ölwechsel', + 'taxID' => 4, + 'tax' => 7.0, + 'instock' => 93, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-07-16', + 'update' => '2012-08-30', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => '50', + 'articledetailsID' => '49', 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -3578,237 +3547,268 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'The Deli Garage', - 'supplierImg' => 'http://shopware57.localhost/media/image/70/ff/d6/deligarage.png', - 'supplierID' => 4, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 668, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/70/ff/d6/deligarage.png', - 'description' => 'deligarage', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/ee/ae/2f/deligarage_200x200.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/aa/38/81/deligarage_200x200@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/ee/ae/2f/deligarage_200x200.png, http://shopware57.localhost/media/image/aa/38/81/deligarage_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/2a/28/60/deligarage_600x600.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/e2/a0/84/deligarage_600x600@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/2a/28/60/deligarage_600x600.png, http://shopware57.localhost/media/image/e2/a0/84/deligarage_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/57/d7/3a/deligarage_1280x1280.png', - 'retinaSource' => 'http://shopware57.localhost/media/image/b4/ea/95/deligarage_1280x1280@2x.png', - 'sourceSet' => 'http://shopware57.localhost/media/image/57/d7/3a/deligarage_1280x1280.png, http://shopware57.localhost/media/image/b4/ea/95/deligarage_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '31,46', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 31.460000000000001, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 179, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/1f/fc/f2/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 720, - 'height' => 505, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/f6/66/c1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/32/36/a1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/f6/66/c1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200.jpg, http://shopware57.localhost/media/image/32/36/a1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/b7/8a/dd/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/9b/aa/eb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/b7/8a/dd/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600.jpg, http://shopware57.localhost/media/image/9b/aa/eb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/bf/fd/f8/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/01/df/cb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/bf/fd/f8/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280.jpg, http://shopware57.localhost/media/image/01/df/cb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '31,46', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 31.460000000000001, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10042', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=43', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=43&number=SW10042', - ], - 'amount' => '31,46', - 'amountnet' => '29,40', - 'priceNumeric' => '31.46', - 'amountNumeric' => 31.460000000000001, - 'amountnetNumeric' => 29.401869158878998, - 'image' => [ - 'id' => 179, - 'position' => null, - 'source' => 'http://shopware57.localhost/media/image/1f/fc/f2/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 720, - 'height' => 505, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware57.localhost/media/image/f6/66/c1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/32/36/a1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/f6/66/c1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200.jpg, http://shopware57.localhost/media/image/32/36/a1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware57.localhost/media/image/b7/8a/dd/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/9b/aa/eb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/b7/8a/dd/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600.jpg, http://shopware57.localhost/media/image/9b/aa/eb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware57.localhost/media/image/bf/fd/f8/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280.jpg', - 'retinaSource' => 'http://shopware57.localhost/media/image/01/df/cb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware57.localhost/media/image/bf/fd/f8/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280.jpg, http://shopware57.localhost/media/image/01/df/cb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + ], + ], + 'marketing' => [ + 'isNew' => false, + 'isTopSeller' => false, + 'comingSoon' => false, + 'storage' => [ + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'The Deli Garage', + 'supplierImg' => 'http://shopware57.localhost/media/image/70/ff/d6/deligarage.png', + 'supplierID' => 4, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 668, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/70/ff/d6/deligarage.png', + 'description' => 'deligarage', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/ee/ae/2f/deligarage_200x200.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/aa/38/81/deligarage_200x200@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/ee/ae/2f/deligarage_200x200.png, http://shopware57.localhost/media/image/aa/38/81/deligarage_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/2a/28/60/deligarage_600x600.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/e2/a0/84/deligarage_600x600@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/2a/28/60/deligarage_600x600.png, http://shopware57.localhost/media/image/e2/a0/84/deligarage_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/57/d7/3a/deligarage_1280x1280.png', + 'retinaSource' => 'http://shopware57.localhost/media/image/b4/ea/95/deligarage_1280x1280@2x.png', + 'sourceSet' => 'http://shopware57.localhost/media/image/57/d7/3a/deligarage_1280x1280.png, http://shopware57.localhost/media/image/b4/ea/95/deligarage_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware57.localhost/media/image/1f/fc/f2/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01.jpg', - 0 => 'http://shopware57.localhost/media/image/f6/66/c1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200.jpg', - 1 => 'http://shopware57.localhost/media/image/b7/8a/dd/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600.jpg', - 2 => 'http://shopware57.localhost/media/image/bf/fd/f8/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware57.localhost/media/image/1f/fc/f2/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01.jpg', - 0 => 'http://shopware57.localhost/media/image/32/36/a1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200@2x.jpg', - 1 => 'http://shopware57.localhost/media/image/9b/aa/eb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600@2x.jpg', - 2 => 'http://shopware57.localhost/media/image/01/df/cb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 505, - 'height' => 720, - ], - ], - ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=43', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=784', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10042', - 'tax' => '2,06', + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '31,46', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 31.460000000000001, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ ], + 'image' => [ + 'id' => 179, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/1f/fc/f2/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 720, + 'height' => 505, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/f6/66/c1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/32/36/a1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/f6/66/c1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200.jpg, http://shopware57.localhost/media/image/32/36/a1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/b7/8a/dd/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/9b/aa/eb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/b7/8a/dd/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600.jpg, http://shopware57.localhost/media/image/9b/aa/eb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/bf/fd/f8/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/01/df/cb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/bf/fd/f8/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280.jpg, http://shopware57.localhost/media/image/01/df/cb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '31,46', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 31.460000000000001, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10042', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=43', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=43&number=SW10042', + ], + 'amount' => '31,46', + 'amountnet' => '29,40', + 'priceNumeric' => '31.46', + 'amountNumeric' => 31.460000000000001, + 'amountnetNumeric' => 29.401869158878998, + 'image' => [ + 'id' => 179, + 'position' => null, + 'source' => 'http://shopware57.localhost/media/image/1f/fc/f2/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 720, + 'height' => 505, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware57.localhost/media/image/f6/66/c1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/32/36/a1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/f6/66/c1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200.jpg, http://shopware57.localhost/media/image/32/36/a1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware57.localhost/media/image/b7/8a/dd/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/9b/aa/eb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/b7/8a/dd/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600.jpg, http://shopware57.localhost/media/image/9b/aa/eb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware57.localhost/media/image/bf/fd/f8/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280.jpg', + 'retinaSource' => 'http://shopware57.localhost/media/image/01/df/cb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware57.localhost/media/image/bf/fd/f8/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280.jpg, http://shopware57.localhost/media/image/01/df/cb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware57.localhost/media/image/1f/fc/f2/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01.jpg', + 0 => 'http://shopware57.localhost/media/image/f6/66/c1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200.jpg', + 1 => 'http://shopware57.localhost/media/image/b7/8a/dd/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600.jpg', + 2 => 'http://shopware57.localhost/media/image/bf/fd/f8/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware57.localhost/media/image/1f/fc/f2/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01.jpg', + 0 => 'http://shopware57.localhost/media/image/32/36/a1/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_200x200@2x.jpg', + 1 => 'http://shopware57.localhost/media/image/9b/aa/eb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_600x600@2x.jpg', + 2 => 'http://shopware57.localhost/media/image/01/df/cb/Oelwechsel-Sorten-Front-plus-Packshot502df8ea8aa01_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 505, + 'height' => 720, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=43', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=784', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10042', + 'tax' => '2,06', ], + ], 'Amount' => '468,96', 'AmountNet' => '397,05', 'Quantity' => 10, @@ -3824,9 +3824,9 @@ 'sShippingcostsTax' => 19.0, 'sShippingcostsDifference' => 9531.0400000000009, 'sTaxRates' => [ - '7.00' => 2.0600000000000001, - '19.00' => 81.819999999999993, - ], + '7.00' => 2.0600000000000001, + '19.00' => 81.819999999999993, + ], 'sShippingcosts' => 75.0, 'sAmount' => 543.96000000000004, 'sAmountTax' => 83.879999999999995, diff --git a/Tests/Functional/Components/Services/_fixtures/OrderBuilderServiceTestUserData.php b/Tests/Functional/Components/Services/_fixtures/OrderBuilderServiceTestUserData.php index 180cc060..e0c2216c 100644 --- a/Tests/Functional/Components/Services/_fixtures/OrderBuilderServiceTestUserData.php +++ b/Tests/Functional/Components/Services/_fixtures/OrderBuilderServiceTestUserData.php @@ -8,197 +8,197 @@ return [ 'billingaddress' => [ - 'id' => 5, - 'company' => null, - 'department' => null, - 'salutation' => 'mr', - 'firstname' => 'PhpUnit', - 'title' => null, - 'lastname' => 'Tester', - 'street' => 'FooBarStreet, 42', - 'zipcode' => '12345', - 'city' => 'SinCity', - 'phone' => '123456789', - 'vatId' => null, - 'additionalAddressLine1' => null, - 'additionalAddressLine2' => null, - 'countryId' => 2, - 'stateId' => null, - 'customer' => [ - 'id' => 3, - ], - 'country' => [ - 'id' => 2, - ], - 'state' => null, - 'userID' => 3, - 'countryID' => 2, - 'stateID' => null, - 'ustid' => null, - 'additional_address_line1' => null, - 'additional_address_line2' => null, - 'attributes' => [ - 'id' => '3', - 'address_id' => '5', - 'text1' => null, - 'text2' => null, - 'text3' => null, - 'text4' => null, - 'text5' => null, - 'text6' => null, - ], + 'id' => 5, + 'company' => null, + 'department' => null, + 'salutation' => 'mr', + 'firstname' => 'PhpUnit', + 'title' => null, + 'lastname' => 'Tester', + 'street' => 'FooBarStreet, 42', + 'zipcode' => '12345', + 'city' => 'SinCity', + 'phone' => '123456789', + 'vatId' => null, + 'additionalAddressLine1' => null, + 'additionalAddressLine2' => null, + 'countryId' => 2, + 'stateId' => null, + 'customer' => [ + 'id' => 3, ], + 'country' => [ + 'id' => 2, + ], + 'state' => null, + 'userID' => 3, + 'countryID' => 2, + 'stateID' => null, + 'ustid' => null, + 'additional_address_line1' => null, + 'additional_address_line2' => null, + 'attributes' => [ + 'id' => '3', + 'address_id' => '5', + 'text1' => null, + 'text2' => null, + 'text3' => null, + 'text4' => null, + 'text5' => null, + 'text6' => null, + ], + ], 'additional' => [ - 'country' => [ - 'id' => '2', - 'countryname' => 'Deutschland', - 'countryiso' => 'DE', - 'areaID' => '1', - 'countryen' => 'GERMANY', - 'position' => '1', - 'notice' => '', - 'taxfree' => '0', - 'taxfree_ustid' => '0', - 'taxfree_ustid_checked' => '0', - 'active' => '1', - 'iso3' => 'DEU', - 'display_state_in_registration' => '0', - 'force_state_in_registration' => '0', - 'allow_shipping' => '1', - 'countryarea' => 'deutschland', - ], - 'state' => [ - ], - 'user' => [ - 'id' => '3', - 'userID' => '3', - 'password' => '$2y$10$GTCr6Y6saAGWQwG2eQntoevo7bxAtNUf2b2o/xDF3qlvOK.IMncuu', - 'encoder' => 'bcrypt', - 'email' => 'phpUnit.tester@test.com', - 'active' => '1', - 'accountmode' => '0', - 'confirmationkey' => '', - 'paymentID' => '7', - 'doubleOptinRegister' => '0', - 'doubleOptinEmailSentDate' => null, - 'doubleOptinConfirmDate' => null, - 'firstlogin' => '2022-01-05', - 'lastlogin' => '2022-01-05 07:35:39', - 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', - 'newsletter' => 0, - 'validation' => '', - 'affiliate' => '0', - 'customergroup' => 'EK', - 'paymentpreset' => '0', - 'language' => '1', - 'subshopID' => '1', - 'referer' => '', - 'pricegroupID' => null, - 'internalcomment' => '', - 'failedlogins' => '0', - 'lockeduntil' => null, - 'default_billing_address_id' => '5', - 'default_shipping_address_id' => '5', - 'title' => null, - 'salutation' => 'mr', - 'firstname' => 'PhpUnit', - 'lastname' => 'Tester', - 'birthday' => '1970-01-01', - 'customernumber' => '20005', - 'login_token' => '23c88e33-9caa-4795-a2d9-7df4e5bd54ea.1', - 'changed' => '2022-01-05 08:21:43', - 'password_change_date' => '2022-01-05 08:21:43', - 'register_opt_in_id' => null, - ], - 'countryShipping' => [ - 'id' => '2', - 'countryname' => 'Deutschland', - 'countryiso' => 'DE', - 'areaID' => '1', - 'countryen' => 'GERMANY', - 'position' => '1', - 'notice' => '', - 'taxfree' => '0', - 'taxfree_ustid' => '0', - 'taxfree_ustid_checked' => '0', - 'active' => '1', - 'iso3' => 'DEU', - 'display_state_in_registration' => '0', - 'force_state_in_registration' => '0', - 'allow_shipping' => '1', - 'countryarea' => 'deutschland', - ], - 'stateShipping' => [ - ], - 'payment' => [ - 'id' => '7', - 'name' => 'SwagPaymentPayPalUnified', - 'description' => 'PayPal', - 'template' => '', - 'class' => '', - 'table' => '', - 'hide' => '0', - 'additionaldescription' => 'Logo \'PayPal empfohlen\' -Bezahlung per PayPal - einfach, schnell und sicher.', - 'debit_percent' => '0', - 'surcharge' => '0', - 'surchargestring' => '', - 'position' => '-100', - 'active' => '1', - 'esdactive' => '0', - 'embediframe' => '', - 'hideprospect' => '0', - 'action' => 'PaypalUnifiedV2', - 'pluginID' => null, - 'source' => null, - 'mobile_inactive' => '0', - 'attributes' => [ - ], - 'validation' => [ - ], - ], - 'charge_vat' => true, - 'show_net' => true, + 'country' => [ + 'id' => '2', + 'countryname' => 'Deutschland', + 'countryiso' => 'DE', + 'areaID' => '1', + 'countryen' => 'GERMANY', + 'position' => '1', + 'notice' => '', + 'taxfree' => '0', + 'taxfree_ustid' => '0', + 'taxfree_ustid_checked' => '0', + 'active' => '1', + 'iso3' => 'DEU', + 'display_state_in_registration' => '0', + 'force_state_in_registration' => '0', + 'allow_shipping' => '1', + 'countryarea' => 'deutschland', ], - 'shippingaddress' => [ - 'id' => 5, - 'company' => null, - 'department' => null, + 'state' => [ + ], + 'user' => [ + 'id' => '3', + 'userID' => '3', + 'password' => '$2y$10$GTCr6Y6saAGWQwG2eQntoevo7bxAtNUf2b2o/xDF3qlvOK.IMncuu', + 'encoder' => 'bcrypt', + 'email' => 'phpUnit.tester@test.com', + 'active' => '1', + 'accountmode' => '0', + 'confirmationkey' => '', + 'paymentID' => '7', + 'doubleOptinRegister' => '0', + 'doubleOptinEmailSentDate' => null, + 'doubleOptinConfirmDate' => null, + 'firstlogin' => '2022-01-05', + 'lastlogin' => '2022-01-05 07:35:39', + 'sessionID' => '9219869a66e0a4d45be2c7d48f234bfd', + 'newsletter' => 0, + 'validation' => '', + 'affiliate' => '0', + 'customergroup' => 'EK', + 'paymentpreset' => '0', + 'language' => '1', + 'subshopID' => '1', + 'referer' => '', + 'pricegroupID' => null, + 'internalcomment' => '', + 'failedlogins' => '0', + 'lockeduntil' => null, + 'default_billing_address_id' => '5', + 'default_shipping_address_id' => '5', + 'title' => null, 'salutation' => 'mr', 'firstname' => 'PhpUnit', - 'title' => null, 'lastname' => 'Tester', - 'street' => 'FooBarStreet, 42', - 'zipcode' => '12345', - 'city' => 'SinCity', - 'phone' => '123456789', - 'vatId' => null, - 'additionalAddressLine1' => null, - 'additionalAddressLine2' => null, - 'countryId' => 2, - 'stateId' => null, - 'customer' => [ - 'id' => 3, - ], - 'country' => [ - 'id' => 2, - ], - 'state' => null, - 'userID' => 3, - 'countryID' => 2, - 'stateID' => null, - 'ustid' => null, - 'additional_address_line1' => null, - 'additional_address_line2' => null, + 'birthday' => '1970-01-01', + 'customernumber' => '20005', + 'login_token' => '23c88e33-9caa-4795-a2d9-7df4e5bd54ea.1', + 'changed' => '2022-01-05 08:21:43', + 'password_change_date' => '2022-01-05 08:21:43', + 'register_opt_in_id' => null, + ], + 'countryShipping' => [ + 'id' => '2', + 'countryname' => 'Deutschland', + 'countryiso' => 'DE', + 'areaID' => '1', + 'countryen' => 'GERMANY', + 'position' => '1', + 'notice' => '', + 'taxfree' => '0', + 'taxfree_ustid' => '0', + 'taxfree_ustid_checked' => '0', + 'active' => '1', + 'iso3' => 'DEU', + 'display_state_in_registration' => '0', + 'force_state_in_registration' => '0', + 'allow_shipping' => '1', + 'countryarea' => 'deutschland', + ], + 'stateShipping' => [ + ], + 'payment' => [ + 'id' => '7', + 'name' => 'SwagPaymentPayPalUnified', + 'description' => 'PayPal', + 'template' => '', + 'class' => '', + 'table' => '', + 'hide' => '0', + 'additionaldescription' => 'Logo \'PayPal empfohlen\' +Bezahlung per PayPal - einfach, schnell und sicher.', + 'debit_percent' => '0', + 'surcharge' => '0', + 'surchargestring' => '', + 'position' => '-100', + 'active' => '1', + 'esdactive' => '0', + 'embediframe' => '', + 'hideprospect' => '0', + 'action' => 'PaypalUnifiedV2', + 'pluginID' => null, + 'source' => null, + 'mobile_inactive' => '0', 'attributes' => [ - 'id' => '3', - 'address_id' => '5', - 'text1' => null, - 'text2' => null, - 'text3' => null, - 'text4' => null, - 'text5' => null, - 'text6' => null, - ], + ], + 'validation' => [ + ], + ], + 'charge_vat' => true, + 'show_net' => true, + ], + 'shippingaddress' => [ + 'id' => 5, + 'company' => null, + 'department' => null, + 'salutation' => 'mr', + 'firstname' => 'PhpUnit', + 'title' => null, + 'lastname' => 'Tester', + 'street' => 'FooBarStreet, 42', + 'zipcode' => '12345', + 'city' => 'SinCity', + 'phone' => '123456789', + 'vatId' => null, + 'additionalAddressLine1' => null, + 'additionalAddressLine2' => null, + 'countryId' => 2, + 'stateId' => null, + 'customer' => [ + 'id' => 3, + ], + 'country' => [ + 'id' => 2, + ], + 'state' => null, + 'userID' => 3, + 'countryID' => 2, + 'stateID' => null, + 'ustid' => null, + 'additional_address_line1' => null, + 'additional_address_line2' => null, + 'attributes' => [ + 'id' => '3', + 'address_id' => '5', + 'text1' => null, + 'text2' => null, + 'text3' => null, + 'text4' => null, + 'text5' => null, + 'text6' => null, ], + ], ]; diff --git a/Tests/Functional/Components/TransactionReport/TransactionReportTest.php b/Tests/Functional/Components/TransactionReport/TransactionReportTest.php index e8098e1d..57bf4883 100644 --- a/Tests/Functional/Components/TransactionReport/TransactionReportTest.php +++ b/Tests/Functional/Components/TransactionReport/TransactionReportTest.php @@ -73,7 +73,7 @@ public function testReport() } $clientMock->expects(static::exactly(4))->method('post'); - $transactionReport->report('5.7.18', $clientMock); + $transactionReport->report('5.7.18', 'instanceId', $clientMock); } /** diff --git a/Tests/Functional/Controller/Frontend/_fixtures/execute_result.php b/Tests/Functional/Controller/Frontend/_fixtures/execute_result.php index 88438c77..16205d34 100644 --- a/Tests/Functional/Controller/Frontend/_fixtures/execute_result.php +++ b/Tests/Functional/Controller/Frontend/_fixtures/execute_result.php @@ -12,124 +12,124 @@ 'state' => 'approved', 'cart' => '1G126719HS857043U', 'payer' => [ - 'payment_method' => 'paypal', - 'status' => 'VERIFIED', - 'payer_info' => [ - 'email' => 'buyer@shopware.de', - 'first_name' => 'de', - 'last_name' => 'kunde', - 'payer_id' => 'SYJEAZHUC7W88', - 'shipping_address' => [ - 'recipient_name' => 'Max Mustermann', - 'line1' => 'Mustermannstraße 92', - 'city' => 'Schöppingen', - 'state' => '', - 'postal_code' => '48624', - 'country_code' => 'DE', - ], - 'phone' => '+49 7888411531', - 'country_code' => 'DE', - ], + 'payment_method' => 'paypal', + 'status' => 'VERIFIED', + 'payer_info' => [ + 'email' => 'buyer@shopware.de', + 'first_name' => 'de', + 'last_name' => 'kunde', + 'payer_id' => 'SYJEAZHUC7W88', + 'shipping_address' => [ + 'recipient_name' => 'Max Mustermann', + 'line1' => 'Mustermannstraße 92', + 'city' => 'Schöppingen', + 'state' => '', + 'postal_code' => '48624', + 'country_code' => 'DE', + ], + 'phone' => '+49 7888411531', + 'country_code' => 'DE', ], + ], 'transactions' => [ - 0 => [ - 'amount' => [ + 0 => [ + 'amount' => [ + 'total' => '71.94', + 'currency' => 'EUR', + 'details' => [ + 'subtotal' => '35.95', + 'tax' => '0.00', + 'shipping' => '35.99', + 'insurance' => '0.00', + 'handling_fee' => '0.00', + 'shipping_discount' => '0.00', + 'discount' => '0.00', + ], + ], + 'payee' => [ + 'merchant_id' => 'D7RFFDVUU6F7N', + 'email' => 'merchant-de@shopware.com', + ], + 'description' => 'Cigar Special 40%', + 'item_list' => [ + 'items' => [ + 0 => [ + 'name' => 'Cigar Special 40%', + 'sku' => 'SW10006', + 'price' => '35.95', + 'currency' => 'EUR', + 'tax' => '0.00', + 'quantity' => 1, + ], + ], + 'shipping_address' => [ + 'recipient_name' => 'Max Mustermann', + 'line1' => 'Mustermannstraße 92', + 'city' => 'Schöppingen', + 'state' => '', + 'postal_code' => '48624', + 'country_code' => 'DE', + ], + ], + 'related_resources' => [ + 0 => [ + 'sale' => [ + 'id' => '43899745LH353813S', + 'state' => 'completed', + 'amount' => [ 'total' => '71.94', 'currency' => 'EUR', 'details' => [ - 'subtotal' => '35.95', - 'tax' => '0.00', - 'shipping' => '35.99', - 'insurance' => '0.00', - 'handling_fee' => '0.00', - 'shipping_discount' => '0.00', - 'discount' => '0.00', - ], - ], - 'payee' => [ - 'merchant_id' => 'D7RFFDVUU6F7N', - 'email' => 'merchant-de@shopware.com', + 'subtotal' => '35.95', + 'tax' => '0.00', + 'shipping' => '35.99', + 'insurance' => '0.00', + 'handling_fee' => '0.00', + 'shipping_discount' => '0.00', + 'discount' => '0.00', + ], ], - 'description' => 'Cigar Special 40%', - 'item_list' => [ - 'items' => [ - 0 => [ - 'name' => 'Cigar Special 40%', - 'sku' => 'SW10006', - 'price' => '35.95', - 'currency' => 'EUR', - 'tax' => '0.00', - 'quantity' => 1, - ], - ], - 'shipping_address' => [ - 'recipient_name' => 'Max Mustermann', - 'line1' => 'Mustermannstraße 92', - 'city' => 'Schöppingen', - 'state' => '', - 'postal_code' => '48624', - 'country_code' => 'DE', - ], + 'payment_mode' => 'INSTANT_TRANSFER', + 'protection_eligibility' => 'ELIGIBLE', + 'protection_eligibility_type' => 'ITEM_NOT_RECEIVED_ELIGIBLE,UNAUTHORIZED_PAYMENT_ELIGIBLE', + 'transaction_fee' => [ + 'value' => '1.72', + 'currency' => 'EUR', ], - 'related_resources' => [ + 'parent_payment' => 'PAYID-MJF55OY30P44731CY226773H', + 'create_time' => '2022-04-05T06:47:41Z', + 'update_time' => '2022-04-05T06:47:41Z', + 'links' => [ 0 => [ - 'sale' => [ - 'id' => '43899745LH353813S', - 'state' => 'completed', - 'amount' => [ - 'total' => '71.94', - 'currency' => 'EUR', - 'details' => [ - 'subtotal' => '35.95', - 'tax' => '0.00', - 'shipping' => '35.99', - 'insurance' => '0.00', - 'handling_fee' => '0.00', - 'shipping_discount' => '0.00', - 'discount' => '0.00', - ], - ], - 'payment_mode' => 'INSTANT_TRANSFER', - 'protection_eligibility' => 'ELIGIBLE', - 'protection_eligibility_type' => 'ITEM_NOT_RECEIVED_ELIGIBLE,UNAUTHORIZED_PAYMENT_ELIGIBLE', - 'transaction_fee' => [ - 'value' => '1.72', - 'currency' => 'EUR', - ], - 'parent_payment' => 'PAYID-MJF55OY30P44731CY226773H', - 'create_time' => '2022-04-05T06:47:41Z', - 'update_time' => '2022-04-05T06:47:41Z', - 'links' => [ - 0 => [ - 'href' => 'https://api.sandbox.paypal.com/v1/payments/sale/43899745LH353813S', - 'rel' => 'self', - 'method' => 'GET', - ], - 1 => [ - 'href' => 'https://api.sandbox.paypal.com/v1/payments/sale/43899745LH353813S/refund', - 'rel' => 'refund', - 'method' => 'POST', - ], - 2 => [ - 'href' => 'https://api.sandbox.paypal.com/v1/payments/payment/PAYID-MJF55OY30P44731CY226773H', - 'rel' => 'parent_payment', - 'method' => 'GET', - ], - ], - ], - ], + 'href' => 'https://api.sandbox.paypal.com/v1/payments/sale/43899745LH353813S', + 'rel' => 'self', + 'method' => 'GET', + ], + 1 => [ + 'href' => 'https://api.sandbox.paypal.com/v1/payments/sale/43899745LH353813S/refund', + 'rel' => 'refund', + 'method' => 'POST', + ], + 2 => [ + 'href' => 'https://api.sandbox.paypal.com/v1/payments/payment/PAYID-MJF55OY30P44731CY226773H', + 'rel' => 'parent_payment', + 'method' => 'GET', + ], ], + ], ], + ], ], + ], 'failed_transactions' => [ - ], + ], 'create_time' => '2022-04-05T06:16:26Z', 'update_time' => '2022-04-05T06:47:41Z', 'links' => [ - 0 => [ - 'href' => 'https://api.sandbox.paypal.com/v1/payments/payment/PAYID-MJF55OY30P44731CY226773H', - 'rel' => 'self', - 'method' => 'GET', - ], + 0 => [ + 'href' => 'https://api.sandbox.paypal.com/v1/payments/payment/PAYID-MJF55OY30P44731CY226773H', + 'rel' => 'self', + 'method' => 'GET', ], + ], ]; diff --git a/Tests/Functional/Controller/Frontend/_fixtures/getBasket_result.php b/Tests/Functional/Controller/Frontend/_fixtures/getBasket_result.php index 7e13edc7..4ec9e147 100644 --- a/Tests/Functional/Controller/Frontend/_fixtures/getBasket_result.php +++ b/Tests/Functional/Controller/Frontend/_fixtures/getBasket_result.php @@ -8,130 +8,106 @@ return [ 'content' => [ - 0 => [ - 'id' => 670, - 'sessionID' => 'd3b2438f074f9fd2d9f5ef3621e06f0b', - 'userID' => 1, - 'articlename' => 'Cigar Special 40%', - 'articleID' => 6, - 'ordernumber' => 'SW10006', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '35,95', - 'netprice' => 30.210084033613001, - 'tax_rate' => 19.0, - 'datum' => '2022-04-05 08:16:13', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.60 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Flasche(n)', - 'mainDetailId' => 6, - 'articleDetailId' => 6, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 20, - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => '0.5000', - 'unitID' => 1, - 'laststock' => 0, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 33, - '__s_order_basket_attributes_basketID' => 670, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 6, - 'articleDetailsID' => 6, - 'ordernumber' => 'SW10006', - 'highlight' => false, - 'description' => 'O barbaricus poeta Casus dum dis tueor iam Basilicus cur ne duo de neglectum, ut heu Fera hic Profiteor. Ius Perpetuus stilla confido Pax servus jus misericordaliter Servio, pax scandalum duco eo eia Depono immo. ', - 'description_long' => ' + 0 => [ + 'id' => 670, + 'sessionID' => 'd3b2438f074f9fd2d9f5ef3621e06f0b', + 'userID' => 1, + 'articlename' => 'Cigar Special 40%', + 'articleID' => 6, + 'ordernumber' => 'SW10006', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '35,95', + 'netprice' => 30.210084033613001, + 'tax_rate' => 19.0, + 'datum' => '2022-04-05 08:16:13', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.60 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Flasche(n)', + 'mainDetailId' => 6, + 'articleDetailId' => 6, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 20, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => '0.5000', + 'unitID' => 1, + 'laststock' => 0, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 33, + '__s_order_basket_attributes_basketID' => 670, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 6, + 'articleDetailsID' => 6, + 'ordernumber' => 'SW10006', + 'highlight' => false, + 'description' => 'O barbaricus poeta Casus dum dis tueor iam Basilicus cur ne duo de neglectum, ut heu Fera hic Profiteor. Ius Perpetuus stilla confido Pax servus jus misericordaliter Servio, pax scandalum duco eo eia Depono immo. ', + 'description_long' => ' A De cum casa fiducialiter laboriosus Secundus, lex asper ros hio cur interrogatio saltem vir Adversa, Gregatim mei Eo metuo sum maro iam proclivia amicabiliter occulto cruor fleo peto delitesco Comperte lacerta his tot Os ut Fruor res Gaza provisio conscientia dux effrenus Promus sui secundus rutila. Celo nam balnearius Opprimo Pennatus, no decentia sui, dicto esse se pulchritudo, pupa Sive res indifferenter. Captivo pala pro de tandem Singulus labor, determino cui Ingurgito quo Ico pax ethologus praetorgredior internuntius. Ops foveo Huius dux respublica his animadverto dolus imperterritus. Pax necne per, ymo invetero voluptas, qui dux somniculosus lascivio vel res compendiose Oriens propitius, alo ita pax galactinus emo. Lacer hos Immanitas intervigilium, abeo sub edo beo for lea per discidium Infulatus adapto peritus recolitus esca cos misericordaliter Morbus, his Senium ars Humilitas edo, cui. Sis sacrilegus Fatigo almus vae excedo, aut vegetabiliter Erogo villa periclitatus, for. ', - 'esd' => false, - 'articleName' => 'Cigar Special 40%', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 20, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-15', - 'update' => '2012-08-20', - 'sales' => 0, - 'filtergroupID' => 1, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 6, - 'articledetailsID' => 6, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Cigar Special 40%', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 20, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-15', + 'update' => '2012-08-20', + 'sales' => 0, + 'filtergroupID' => 1, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 6, + 'articledetailsID' => 6, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -152,349 +128,373 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Feinbrennerei Sasse', - 'supplierImg' => 'http://shopware.localhost/media/image/52/5b/a1/sasse.png', - 'supplierID' => 2, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 670, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/52/5b/a1/sasse.png', - 'description' => 'sasse', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/01/82/69/sasse_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/78/1d/0c/sasse_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/01/82/69/sasse_200x200.png, http://shopware.localhost/media/image/78/1d/0c/sasse_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/6e/a9/11/sasse_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9c/1d/19/sasse_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/6e/a9/11/sasse_600x600.png, http://shopware.localhost/media/image/9c/1d/19/sasse_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/55/12/76/sasse_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/30/4b/6b/sasse_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/55/12/76/sasse_1280x1280.png, http://shopware.localhost/media/image/30/4b/6b/sasse_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '35,95', - 'pseudoprice' => '0', - 'referenceprice' => '71,90', - 'has_pseudoprice' => false, - 'price_numeric' => 35.950000000000003, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => 0.5, - 'referenceunit' => 1.0, - 'packunit' => 'Flasche(n)', - 'unitID' => 1, - 'sUnit' => [ - 'unit' => 'l', - 'description' => 'Liter', - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 16, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1380, - 'height' => 3588, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg, http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg, http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg, http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '35,95', - 'pseudoprice' => '0', - 'referenceprice' => '71,90', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 35.950000000000003, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => 0.5, - 'referenceunit' => 1.0, - 'packunit' => 'Flasche(n)', - 'unitID' => 1, - 'sUnit' => [ - 'unit' => 'l', - 'description' => 'Liter', - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10006', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=6', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=6&number=SW10006', - 'sProperties' => [ - 7 => [ - 'id' => 7, - 'optionID' => 7, - 'name' => 'Trinktemperatur', - 'groupID' => 1, - 'groupName' => 'Edelbrände', - 'value' => 'Zimmertemperatur', - 'values' => [ - 36 => 'Zimmertemperatur', - ], - 'isFilterable' => true, - 'options' => [ - 0 => [ - 'id' => 36, - 'name' => 'Zimmertemperatur', - 'attributes' => [ - ], - ], - ], - 'media' => [ - ], - 'attributes' => [ - ], - ], - 6 => [ - 'id' => 6, - 'optionID' => 6, - 'name' => 'Geschmack', - 'groupID' => 1, - 'groupName' => 'Edelbrände', - 'value' => 'mild', - 'values' => [ - 33 => 'mild', - ], - 'isFilterable' => true, - 'options' => [ - 0 => [ - 'id' => 33, - 'name' => 'mild', - 'attributes' => [ - ], - ], - ], - 'media' => [ - ], - 'attributes' => [ - ], - ], - 2 => [ - 'id' => 2, - 'optionID' => 2, - 'name' => 'Flaschengröße', - 'groupID' => 1, - 'groupName' => 'Edelbrände', - 'value' => '0,5 Liter', - 'values' => [ - 23 => '0,5 Liter', - ], - 'isFilterable' => true, - 'options' => [ - 0 => [ - 'id' => 23, - 'name' => '0,5 Liter', - 'attributes' => [ - ], - ], - ], - 'media' => [ - ], - 'attributes' => [ - ], - ], - 1 => [ - 'id' => 1, - 'optionID' => 1, - 'name' => 'Alkoholgehalt', - 'groupID' => 1, - 'groupName' => 'Edelbrände', - 'value' => '>30%', - 'values' => [ - 40 => '>30%', - ], - 'isFilterable' => true, - 'options' => [ - 0 => [ - 'id' => 40, - 'name' => '>30%', - 'attributes' => [ - ], - ], - ], - 'media' => [ - ], - 'attributes' => [ - ], - ], - ], - 'properties' => 'Trinktemperatur: Zimmertemperatur, Geschmack: mild, Flaschengröße: 0,5 Liter, Alkoholgehalt: >30%', ], - 'itemUnit' => 'Liter', - 'amount' => '35,95', - 'purchaseunitTemp' => '0.5000', - 'itemInfo' => '0.5000 Liter / 35,95', - 'itemInfoArray' => [ - 'reference' => 1, - 'unit' => [ - 'unit' => 'l', - 'description' => 'Liter', - ], - 'price' => '35,95', + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Feinbrennerei Sasse', + 'supplierImg' => 'http://shopware.localhost/media/image/52/5b/a1/sasse.png', + 'supplierID' => 2, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 670, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/52/5b/a1/sasse.png', + 'description' => 'sasse', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/01/82/69/sasse_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/78/1d/0c/sasse_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/01/82/69/sasse_200x200.png, http://shopware.localhost/media/image/78/1d/0c/sasse_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], ], - 'amountnet' => '30,21', - 'priceNumeric' => 35.950000000000003, - 'amountNumeric' => 35.950000000000003, - 'amountnetNumeric' => 30.210084033613001, - 'image' => [ - 'id' => 16, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1380, - 'height' => 3588, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg, http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg, http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg, http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/6e/a9/11/sasse_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9c/1d/19/sasse_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/6e/a9/11/sasse_600x600.png, http://shopware.localhost/media/image/9c/1d/19/sasse_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/55/12/76/sasse_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/30/4b/6b/sasse_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/55/12/76/sasse_1280x1280.png, http://shopware.localhost/media/image/30/4b/6b/sasse_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '35,95', + 'pseudoprice' => '0', + 'referenceprice' => '71,90', + 'has_pseudoprice' => false, + 'price_numeric' => 35.950000000000003, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => 0.5, + 'referenceunit' => 1.0, + 'packunit' => 'Flasche(n)', + 'unitID' => 1, + 'sUnit' => [ + 'unit' => 'l', + 'description' => 'Liter', + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 16, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1380, + 'height' => 3588, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg, http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg, http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg, http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '35,95', + 'pseudoprice' => '0', + 'referenceprice' => '71,90', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 35.950000000000003, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => 0.5, + 'referenceunit' => 1.0, + 'packunit' => 'Flasche(n)', + 'unitID' => 1, + 'sUnit' => [ + 'unit' => 'l', + 'description' => 'Liter', + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10006', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=6', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=6&number=SW10006', + 'sProperties' => [ + 7 => [ + 'id' => 7, + 'optionID' => 7, + 'name' => 'Trinktemperatur', + 'groupID' => 1, + 'groupName' => 'Edelbrände', + 'value' => 'Zimmertemperatur', + 'values' => [ + 36 => 'Zimmertemperatur', + ], + 'isFilterable' => true, + 'options' => [ + 0 => [ + 'id' => 36, + 'name' => 'Zimmertemperatur', + 'attributes' => [ ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', - 0 => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg', + ], + ], + 'media' => [ + ], + 'attributes' => [ + ], + ], + 6 => [ + 'id' => 6, + 'optionID' => 6, + 'name' => 'Geschmack', + 'groupID' => 1, + 'groupName' => 'Edelbrände', + 'value' => 'mild', + 'values' => [ + 33 => 'mild', + ], + 'isFilterable' => true, + 'options' => [ + 0 => [ + 'id' => 33, + 'name' => 'mild', + 'attributes' => [ ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', - 0 => 'http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg', + ], + ], + 'media' => [ + ], + 'attributes' => [ + ], + ], + 2 => [ + 'id' => 2, + 'optionID' => 2, + 'name' => 'Flaschengröße', + 'groupID' => 1, + 'groupName' => 'Edelbrände', + 'value' => '0,5 Liter', + 'values' => [ + 23 => '0,5 Liter', + ], + 'isFilterable' => true, + 'options' => [ + 0 => [ + 'id' => 23, + 'name' => '0,5 Liter', + 'attributes' => [ ], - 'res' => [ - 'original' => [ - 'width' => 3588, - 'height' => 1380, - ], + ], + ], + 'media' => [ + ], + 'attributes' => [ + ], + ], + 1 => [ + 'id' => 1, + 'optionID' => 1, + 'name' => 'Alkoholgehalt', + 'groupID' => 1, + 'groupName' => 'Edelbrände', + 'value' => '>30%', + 'values' => [ + 40 => '>30%', + ], + 'isFilterable' => true, + 'options' => [ + 0 => [ + 'id' => 40, + 'name' => '>30%', + 'attributes' => [ ], + ], + ], + 'media' => [ + ], + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=6', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=670', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10006', - 'tax' => '5,74', + ], ], + 'properties' => 'Trinktemperatur: Zimmertemperatur, Geschmack: mild, Flaschengröße: 0,5 Liter, Alkoholgehalt: >30%', + ], + 'itemUnit' => 'Liter', + 'amount' => '35,95', + 'purchaseunitTemp' => '0.5000', + 'itemInfo' => '0.5000 Liter / 35,95', + 'itemInfoArray' => [ + 'reference' => 1, + 'unit' => [ + 'unit' => 'l', + 'description' => 'Liter', + ], + 'price' => '35,95', + ], + 'amountnet' => '30,21', + 'priceNumeric' => 35.950000000000003, + 'amountNumeric' => 35.950000000000003, + 'amountnetNumeric' => 30.210084033613001, + 'image' => [ + 'id' => 16, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1380, + 'height' => 3588, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg, http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg, http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg, http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', + 0 => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', + 0 => 'http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 3588, + 'height' => 1380, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=6', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=670', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10006', + 'tax' => '5,74', ], + ], 'Amount' => '35,95', 'AmountNet' => '30,21', 'Quantity' => 1, @@ -510,8 +510,8 @@ 'sShippingcostsTax' => 19.0, 'sShippingcostsDifference' => 9964.0499999999993, 'sTaxRates' => [ - '19.00' => 11.490000000000004, - ], + '19.00' => 11.490000000000004, + ], 'sShippingcosts' => 35.990000000000002, 'sAmount' => 71.939999999999998, 'sAmountTax' => 11.49, diff --git a/Tests/Functional/Controller/Frontend/_fixtures/getUser_result.php b/Tests/Functional/Controller/Frontend/_fixtures/getUser_result.php index 5dd0c03a..5ce50195 100644 --- a/Tests/Functional/Controller/Frontend/_fixtures/getUser_result.php +++ b/Tests/Functional/Controller/Frontend/_fixtures/getUser_result.php @@ -8,137 +8,137 @@ return [ 'billingaddress' => [ + 'id' => 1, + 'company' => 'Muster GmbH', + 'department' => null, + 'salutation' => 'mr', + 'firstname' => 'Max', + 'title' => null, + 'lastname' => 'Mustermann', + 'street' => 'Musterstr. 55', + 'zipcode' => '55555', + 'city' => 'Musterhausen', + 'phone' => '05555 / 555555', + 'vatId' => null, + 'additionalAddressLine1' => null, + 'additionalAddressLine2' => null, + 'countryId' => 2, + 'stateId' => 3, + 'customer' => [ 'id' => 1, - 'company' => 'Muster GmbH', - 'department' => null, + ], + 'country' => [ + 'id' => 2, + ], + 'state' => [ + 'id' => 3, + ], + 'userID' => 1, + 'countryID' => 2, + 'stateID' => 3, + 'ustid' => null, + 'additional_address_line1' => null, + 'additional_address_line2' => null, + 'attributes' => [ + ], + ], + 'additional' => [ + 'country' => [ + 'id' => 2, + 'countryname' => 'Deutschland', + 'countryiso' => 'DE', + 'areaID' => 1, + 'countryen' => 'GERMANY', + 'position' => 1, + 'notice' => '', + 'taxfree' => 0, + 'taxfree_ustid' => 0, + 'taxfree_ustid_checked' => 0, + 'active' => 1, + 'iso3' => 'DEU', + 'display_state_in_registration' => 0, + 'force_state_in_registration' => 0, + 'allow_shipping' => 1, + 'countryarea' => 'deutschland', + ], + 'state' => [ + 'id' => 3, + 'countryID' => 2, + 'name' => 'Nordrhein-Westfalen', + 'shortcode' => 'NW', + 'position' => 0, + 'active' => 1, + 'statename' => 'Nordrhein-Westfalen', + ], + 'user' => [ + 'id' => 1, + 'password' => '$2y$10$T5nnZsS3Ti4O9DX93ru.iu5I/Ak2vF.vt3qJsz8Y9FsCeoZxOihM.', + 'encoder' => 'bcrypt', + 'email' => 'test@example.com', + 'active' => 1, + 'accountmode' => 0, + 'confirmationkey' => '', + 'paymentID' => 7, + 'doubleOptinRegister' => 0, + 'doubleOptinEmailSentDate' => null, + 'doubleOptinConfirmDate' => null, + 'firstlogin' => '2011-11-23', + 'lastlogin' => '2022-04-05 06:16:30', + 'sessionID' => 'd3b2438f074f9fd2d9f5ef3621e06f0b', + 'newsletter' => 0, + 'validation' => '', + 'affiliate' => 0, + 'customergroup' => 'EK', + 'paymentpreset' => 0, + 'language' => '1', + 'subshopID' => 1, + 'referer' => '', + 'pricegroupID' => null, + 'internalcomment' => '', + 'failedlogins' => 0, + 'lockeduntil' => null, + 'default_billing_address_id' => 1, + 'default_shipping_address_id' => 3, + 'title' => null, 'salutation' => 'mr', 'firstname' => 'Max', - 'title' => null, 'lastname' => 'Mustermann', - 'street' => 'Musterstr. 55', - 'zipcode' => '55555', - 'city' => 'Musterhausen', - 'phone' => '05555 / 555555', - 'vatId' => null, - 'additionalAddressLine1' => null, - 'additionalAddressLine2' => null, - 'countryId' => 2, - 'stateId' => 3, - 'customer' => [ - 'id' => 1, - ], - 'country' => [ - 'id' => 2, - ], - 'state' => [ - 'id' => 3, - ], - 'userID' => 1, - 'countryID' => 2, - 'stateID' => 3, - 'ustid' => null, - 'additional_address_line1' => null, - 'additional_address_line2' => null, - 'attributes' => [ - ], + 'birthday' => '2001-01-01', + 'customernumber' => '20001', + 'login_token' => '82087f89-033c-4bd3-a5ab-80c1443d891a.1', + 'changed' => null, + 'password_change_date' => '2022-04-05 05:14:46', + 'register_opt_in_id' => null, ], - 'additional' => [ - 'country' => [ - 'id' => 2, - 'countryname' => 'Deutschland', - 'countryiso' => 'DE', - 'areaID' => 1, - 'countryen' => 'GERMANY', - 'position' => 1, - 'notice' => '', - 'taxfree' => 0, - 'taxfree_ustid' => 0, - 'taxfree_ustid_checked' => 0, - 'active' => 1, - 'iso3' => 'DEU', - 'display_state_in_registration' => 0, - 'force_state_in_registration' => 0, - 'allow_shipping' => 1, - 'countryarea' => 'deutschland', - ], - 'state' => [ - 'id' => 3, - 'countryID' => 2, - 'name' => 'Nordrhein-Westfalen', - 'shortcode' => 'NW', - 'position' => 0, - 'active' => 1, - 'statename' => 'Nordrhein-Westfalen', - ], - 'user' => [ - 'id' => 1, - 'password' => '$2y$10$T5nnZsS3Ti4O9DX93ru.iu5I/Ak2vF.vt3qJsz8Y9FsCeoZxOihM.', - 'encoder' => 'bcrypt', - 'email' => 'test@example.com', - 'active' => 1, - 'accountmode' => 0, - 'confirmationkey' => '', - 'paymentID' => 7, - 'doubleOptinRegister' => 0, - 'doubleOptinEmailSentDate' => null, - 'doubleOptinConfirmDate' => null, - 'firstlogin' => '2011-11-23', - 'lastlogin' => '2022-04-05 06:16:30', - 'sessionID' => 'd3b2438f074f9fd2d9f5ef3621e06f0b', - 'newsletter' => 0, - 'validation' => '', - 'affiliate' => 0, - 'customergroup' => 'EK', - 'paymentpreset' => 0, - 'language' => '1', - 'subshopID' => 1, - 'referer' => '', - 'pricegroupID' => null, - 'internalcomment' => '', - 'failedlogins' => 0, - 'lockeduntil' => null, - 'default_billing_address_id' => 1, - 'default_shipping_address_id' => 3, - 'title' => null, - 'salutation' => 'mr', - 'firstname' => 'Max', - 'lastname' => 'Mustermann', - 'birthday' => '2001-01-01', - 'customernumber' => '20001', - 'login_token' => '82087f89-033c-4bd3-a5ab-80c1443d891a.1', - 'changed' => null, - 'password_change_date' => '2022-04-05 05:14:46', - 'register_opt_in_id' => null, - ], - 'countryShipping' => [ - 'id' => 2, - 'countryname' => 'Deutschland', - 'countryiso' => 'DE', - 'areaID' => 1, - 'countryen' => 'GERMANY', - 'position' => 1, - 'notice' => '', - 'taxfree' => 0, - 'taxfree_ustid' => 0, - 'taxfree_ustid_checked' => 0, - 'active' => 1, - 'iso3' => 'DEU', - 'display_state_in_registration' => 0, - 'force_state_in_registration' => 0, - 'allow_shipping' => 1, - 'countryarea' => 'deutschland', - ], - 'stateShipping' => [ - ], - 'payment' => [ - 'id' => 7, - 'name' => 'SwagPaymentPayPalUnified', - 'description' => 'PayPal', - 'template' => '', - 'class' => '', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => ' + 'countryShipping' => [ + 'id' => 2, + 'countryname' => 'Deutschland', + 'countryiso' => 'DE', + 'areaID' => 1, + 'countryen' => 'GERMANY', + 'position' => 1, + 'notice' => '', + 'taxfree' => 0, + 'taxfree_ustid' => 0, + 'taxfree_ustid_checked' => 0, + 'active' => 1, + 'iso3' => 'DEU', + 'display_state_in_registration' => 0, + 'force_state_in_registration' => 0, + 'allow_shipping' => 1, + 'countryarea' => 'deutschland', + ], + 'stateShipping' => [ + ], + 'payment' => [ + 'id' => 7, + 'name' => 'SwagPaymentPayPalUnified', + 'description' => 'PayPal', + 'template' => '', + 'class' => '', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => ' Logo \'PayPal empfohlen\' @@ -146,57 +146,57 @@ Bezahlung per PayPal - einfach, schnell und sicher.', - 'debit_percent' => 0.0, - 'surcharge' => 0.0, - 'surchargestring' => '', - 'position' => -100, - 'active' => 1, - 'esdactive' => 0, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => 'PaypalUnifiedV2', - 'pluginID' => 59, - 'source' => null, - 'mobile_inactive' => 0, - 'attributes' => [ - ], - 'validation' => [ - ], - ], - 'charge_vat' => true, - 'show_net' => true, + 'debit_percent' => 0.0, + 'surcharge' => 0.0, + 'surchargestring' => '', + 'position' => -100, + 'active' => 1, + 'esdactive' => 0, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => 'PaypalUnifiedV2', + 'pluginID' => 59, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ + ], + 'validation' => [ + ], ], + 'charge_vat' => true, + 'show_net' => true, + ], 'shippingaddress' => [ - 'id' => 3, - 'company' => 'shopware AG', - 'department' => null, - 'salutation' => 'mr', - 'firstname' => 'Max', - 'title' => null, - 'lastname' => 'Mustermann', - 'street' => 'Mustermannstraße 92', - 'zipcode' => '48624', - 'city' => 'Schöppingen', - 'phone' => null, - 'vatId' => null, - 'additionalAddressLine1' => null, - 'additionalAddressLine2' => null, - 'countryId' => 2, - 'stateId' => null, - 'customer' => [ - 'id' => 1, - ], - 'country' => [ - 'id' => 2, - ], - 'state' => null, - 'userID' => 1, - 'countryID' => 2, - 'stateID' => null, - 'ustid' => null, - 'additional_address_line1' => null, - 'additional_address_line2' => null, - 'attributes' => [ - ], + 'id' => 3, + 'company' => 'shopware AG', + 'department' => null, + 'salutation' => 'mr', + 'firstname' => 'Max', + 'title' => null, + 'lastname' => 'Mustermann', + 'street' => 'Mustermannstraße 92', + 'zipcode' => '48624', + 'city' => 'Schöppingen', + 'phone' => null, + 'vatId' => null, + 'additionalAddressLine1' => null, + 'additionalAddressLine2' => null, + 'countryId' => 2, + 'stateId' => null, + 'customer' => [ + 'id' => 1, + ], + 'country' => [ + 'id' => 2, + ], + 'state' => null, + 'userID' => 1, + 'countryID' => 2, + 'stateID' => null, + 'ustid' => null, + 'additional_address_line1' => null, + 'additional_address_line2' => null, + 'attributes' => [ ], + ], ]; diff --git a/Tests/Functional/Controller/Frontend/_fixtures/payment_result.php b/Tests/Functional/Controller/Frontend/_fixtures/payment_result.php index 9d0f5020..429f4ef1 100644 --- a/Tests/Functional/Controller/Frontend/_fixtures/payment_result.php +++ b/Tests/Functional/Controller/Frontend/_fixtures/payment_result.php @@ -12,84 +12,84 @@ 'state' => 'created', 'cart' => '1G126719HS857043U', 'payer' => [ - 'payment_method' => 'paypal', - 'status' => 'VERIFIED', - 'payer_info' => [ - 'email' => 'buyer@shopware.de', - 'first_name' => 'de', - 'last_name' => 'kunde', - 'payer_id' => 'SYJEAZHUC7W88', - 'shipping_address' => [ - 'recipient_name' => 'Max Mustermann', - 'line1' => 'Mustermannstraße 92', - 'city' => 'Schöppingen', - 'state' => '', - 'postal_code' => '48624', - 'country_code' => 'DE', - ], - 'phone' => '+49 7888411531', - 'country_code' => 'DE', - ], + 'payment_method' => 'paypal', + 'status' => 'VERIFIED', + 'payer_info' => [ + 'email' => 'buyer@shopware.de', + 'first_name' => 'de', + 'last_name' => 'kunde', + 'payer_id' => 'SYJEAZHUC7W88', + 'shipping_address' => [ + 'recipient_name' => 'Max Mustermann', + 'line1' => 'Mustermannstraße 92', + 'city' => 'Schöppingen', + 'state' => '', + 'postal_code' => '48624', + 'country_code' => 'DE', + ], + 'phone' => '+49 7888411531', + 'country_code' => 'DE', ], + ], 'transactions' => [ - 0 => [ - 'amount' => [ - 'total' => '71.94', - 'currency' => 'EUR', - 'details' => [ - 'subtotal' => '35.95', - 'tax' => '0.00', - 'shipping' => '35.99', - ], - ], - 'payee' => [ - 'merchant_id' => 'D7RFFDVUU6F7N', - 'email' => 'merchant-de@shopware.com', - ], - 'item_list' => [ - 'items' => [ - 0 => [ - 'name' => 'Cigar Special 40%', - 'sku' => 'SW10006', - 'price' => '35.95', - 'currency' => 'EUR', - 'quantity' => 1, - ], - ], - 'shipping_address' => [ - 'recipient_name' => 'Max Mustermann', - 'line1' => 'Mustermannstraße 92', - 'city' => 'Schöppingen', - 'state' => '', - 'postal_code' => '48624', - 'country_code' => 'DE', - ], - ], - 'related_resources' => [ - ], + 0 => [ + 'amount' => [ + 'total' => '71.94', + 'currency' => 'EUR', + 'details' => [ + 'subtotal' => '35.95', + 'tax' => '0.00', + 'shipping' => '35.99', + ], + ], + 'payee' => [ + 'merchant_id' => 'D7RFFDVUU6F7N', + 'email' => 'merchant-de@shopware.com', + ], + 'item_list' => [ + 'items' => [ + 0 => [ + 'name' => 'Cigar Special 40%', + 'sku' => 'SW10006', + 'price' => '35.95', + 'currency' => 'EUR', + 'quantity' => 1, + ], ], + 'shipping_address' => [ + 'recipient_name' => 'Max Mustermann', + 'line1' => 'Mustermannstraße 92', + 'city' => 'Schöppingen', + 'state' => '', + 'postal_code' => '48624', + 'country_code' => 'DE', + ], + ], + 'related_resources' => [ + ], ], + ], 'redirect_urls' => [ - 'return_url' => 'http://shopware.localhost/PaypalUnified/return/plus/1/basketId/plus/swPaymentToken/R2gq0X3SYTrx6WXopcXb9B03MtYKdlYb?paymentId=PAYID-MJF55OY30P44731CY226773H', - 'cancel_url' => 'http://shopware.localhost/PaypalUnified/cancel/swPaymentToken/R2gq0X3SYTrx6WXopcXb9B03MtYKdlYb', - ], + 'return_url' => 'http://shopware.localhost/PaypalUnified/return/plus/1/basketId/plus/swPaymentToken/R2gq0X3SYTrx6WXopcXb9B03MtYKdlYb?paymentId=PAYID-MJF55OY30P44731CY226773H', + 'cancel_url' => 'http://shopware.localhost/PaypalUnified/cancel/swPaymentToken/R2gq0X3SYTrx6WXopcXb9B03MtYKdlYb', + ], 'create_time' => '2022-04-05T06:16:26Z', 'update_time' => '2022-04-05T06:16:49Z', 'links' => [ - 0 => [ - 'href' => 'https://api.sandbox.paypal.com/v1/payments/payment/PAYID-MJF55OY30P44731CY226773H', - 'rel' => 'self', - 'method' => 'GET', - ], - 1 => [ - 'href' => 'https://api.sandbox.paypal.com/v1/payments/payment/PAYID-MJF55OY30P44731CY226773H/execute', - 'rel' => 'execute', - 'method' => 'POST', - ], - 2 => [ - 'href' => 'https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=EC-1G126719HS857043U', - 'rel' => 'approval_url', - 'method' => 'REDIRECT', - ], + 0 => [ + 'href' => 'https://api.sandbox.paypal.com/v1/payments/payment/PAYID-MJF55OY30P44731CY226773H', + 'rel' => 'self', + 'method' => 'GET', + ], + 1 => [ + 'href' => 'https://api.sandbox.paypal.com/v1/payments/payment/PAYID-MJF55OY30P44731CY226773H/execute', + 'rel' => 'execute', + 'method' => 'POST', + ], + 2 => [ + 'href' => 'https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=EC-1G126719HS857043U', + 'rel' => 'approval_url', + 'method' => 'REDIRECT', ], + ], ]; diff --git a/Tests/Functional/Setup/InstanceIdServiceTest.php b/Tests/Functional/Setup/InstanceIdServiceTest.php new file mode 100644 index 00000000..5dfc8a40 --- /dev/null +++ b/Tests/Functional/Setup/InstanceIdServiceTest.php @@ -0,0 +1,37 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace SwagPaymentPayPalUnified\Tests\Functional\Setup; + +use PHPUnit\Framework\TestCase; +use SwagPaymentPayPalUnified\Setup\InstanceIdService; +use SwagPaymentPayPalUnified\Tests\Functional\ContainerTrait; + +class InstanceIdServiceTest extends TestCase +{ + use ContainerTrait; + + /** + * @return void + */ + public function testGetInstanceId() + { + $connection = $this->getContainer()->get('dbal_connection'); + $instanceIdService = new InstanceIdService($connection); + + $instanceId = $instanceIdService->getInstanceId(); + static::assertSame(36, \strlen($instanceId)); + static::assertNotEmpty($instanceId); + + $connection->executeQuery('DELETE FROM swag_payment_paypal_unified_instance WHERE true'); + + $instanceId = $instanceIdService->getInstanceId(); + static::assertSame(36, \strlen($instanceId)); + static::assertNotEmpty($instanceId); + } +} diff --git a/Tests/Functional/Setup/Versions/UpdateTo618Test.php b/Tests/Functional/Setup/Versions/UpdateTo618Test.php new file mode 100644 index 00000000..f2c29194 --- /dev/null +++ b/Tests/Functional/Setup/Versions/UpdateTo618Test.php @@ -0,0 +1,57 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace SwagPaymentPayPalUnified\Tests\Functional\Setup; + +use Doctrine\DBAL\Connection; +use PHPUnit\Framework\TestCase; +use SwagPaymentPayPalUnified\Setup\Versions\UpdateTo618; +use SwagPaymentPayPalUnified\Tests\Functional\ContainerTrait; +use SwagPaymentPayPalUnified\Tests\Functional\DatabaseHelperTrait; + +class UpdateTo618Test extends TestCase +{ + use ContainerTrait; + use DatabaseHelperTrait; + + /** + * @return void + */ + public function testUpdate() + { + $sql = 'DROP TABLE `swag_payment_paypal_unified_instance`'; + $connection = $this->getContainer()->get('dbal_connection'); + $connection->exec($sql); + static::assertFalse($this->checkTableExists($connection, 'swag_payment_paypal_unified_instance')); + + $updater = new UpdateTo618($connection); + $updater->update(); + $firstResult = $this->getInstanceId($connection); + static::assertNotEmpty($firstResult); + $updater->update(); + + static::assertTrue($this->checkTableExists($connection, 'swag_payment_paypal_unified_instance')); + + $secondResult = $this->getInstanceId($connection); + static::assertNotEmpty($secondResult); + + static::assertSame($firstResult, $secondResult); + } + + /** + * @return string + */ + private function getInstanceId(Connection $connection) + { + return $connection->createQueryBuilder() + ->select('instance_id') + ->from('swag_payment_paypal_unified_instance') + ->execute() + ->fetchColumn(); + } +} diff --git a/Tests/Functional/Subscriber/PayUponInvoiceRiskManagementTest.php b/Tests/Functional/Subscriber/PayUponInvoiceRiskManagementTest.php index d56ce162..bb94d4b7 100644 --- a/Tests/Functional/Subscriber/PayUponInvoiceRiskManagementTest.php +++ b/Tests/Functional/Subscriber/PayUponInvoiceRiskManagementTest.php @@ -135,12 +135,12 @@ public function testConstraintsAreCorrect() $argsMock->method('get')->willReturnMap([ [ 'user', [ - 'additional' => [ - 'country' => ['countryiso' => 'DE'], - 'user' => ['birthday' => '1970-01-01'], + 'additional' => [ + 'country' => ['countryiso' => 'DE'], + 'user' => ['birthday' => '1970-01-01'], + ], + 'billingaddress' => ['phone' => '01519999999'], ], - 'billingaddress' => ['phone' => '01519999999'], - ], ], ]); diff --git a/Tests/Functional/Subscriber/PayUponInvoiceTest.php b/Tests/Functional/Subscriber/PayUponInvoiceTest.php index f9dc1691..40cd2bce 100644 --- a/Tests/Functional/Subscriber/PayUponInvoiceTest.php +++ b/Tests/Functional/Subscriber/PayUponInvoiceTest.php @@ -506,16 +506,16 @@ public function testAssignPaypalPaymentInstructions() $subscriber->assignPaypalPaymentInstructions($args); static::assertEquals([ - 'id' => null, - 'orderNumber' => '000000', - 'order' => null, - 'bankName' => 'FOO Bank', - 'accountHolder' => 'FOO BAR', - 'iban' => 'IBAN', - 'bic' => 'BIC', - 'amount' => '99', - 'dueDate' => null, - 'reference' => null, + 'id' => null, + 'orderNumber' => '000000', + 'order' => null, + 'bankName' => 'FOO Bank', + 'accountHolder' => 'FOO BAR', + 'iban' => 'IBAN', + 'bic' => 'BIC', + 'amount' => '99', + 'dueDate' => null, + 'reference' => null, ], $args->getSubject()->View()->getAssign('paypalUnifiedPaymentInstructions')); } diff --git a/Tests/Mocks/ResultSet/GetPaymentOrder.php b/Tests/Mocks/ResultSet/GetPaymentOrder.php index 93511fae..55206fca 100644 --- a/Tests/Mocks/ResultSet/GetPaymentOrder.php +++ b/Tests/Mocks/ResultSet/GetPaymentOrder.php @@ -73,9 +73,9 @@ public static function get() 'total' => '45.94', 'currency' => 'EUR', 'details' => [ - 'subtotal' => '19.95', - 'shipping' => '25.99', - ], + 'subtotal' => '19.95', + 'shipping' => '25.99', + ], ], 'state' => 'COMPLETED', 'links' => [ diff --git a/Tests/Mocks/ResultSet/GetPaymentSale.php b/Tests/Mocks/ResultSet/GetPaymentSale.php index 361e5555..7012f79a 100644 --- a/Tests/Mocks/ResultSet/GetPaymentSale.php +++ b/Tests/Mocks/ResultSet/GetPaymentSale.php @@ -88,13 +88,13 @@ public static function get() 'total' => '45.94', 'currency' => 'EUR', 'details' => [ - 'subtotal' => '19.95', - 'tax' => '0.00', - 'shipping' => '25.99', - 'insurance' => '0.00', - 'handling_fee' => '0.00', - 'shipping_discount' => '0.00', - ], + 'subtotal' => '19.95', + 'tax' => '0.00', + 'shipping' => '25.99', + 'insurance' => '0.00', + 'handling_fee' => '0.00', + 'shipping_discount' => '0.00', + ], ], 'payment_mode' => 'INSTANT_TRANSFER', 'protection_eligibility' => 'ELIGIBLE', diff --git a/Tests/Mocks/ResultSet/GetSale.php b/Tests/Mocks/ResultSet/GetSale.php index 0b047636..982b9215 100644 --- a/Tests/Mocks/ResultSet/GetSale.php +++ b/Tests/Mocks/ResultSet/GetSale.php @@ -22,13 +22,13 @@ public static function get() 'total' => '45.94', 'currency' => 'EUR', 'details' => [ - 'subtotal' => '19.95', - 'tax' => '0.00', - 'shipping' => '25.99', - 'insurance' => '0.00', - 'handling_fee' => '0.00', - 'shipping_discount' => '0.00', - ], + 'subtotal' => '19.95', + 'tax' => '0.00', + 'shipping' => '25.99', + 'insurance' => '0.00', + 'handling_fee' => '0.00', + 'shipping_discount' => '0.00', + ], ], 'payment_mode' => 'INSTANT_TRANSFER', 'protection_eligibility' => 'ELIGIBLE', diff --git a/Tests/Unit/Components/Services/OrderBuilder/OrderHandler/_fixtures/basket.php b/Tests/Unit/Components/Services/OrderBuilder/OrderHandler/_fixtures/basket.php index 7e13edc7..4ec9e147 100644 --- a/Tests/Unit/Components/Services/OrderBuilder/OrderHandler/_fixtures/basket.php +++ b/Tests/Unit/Components/Services/OrderBuilder/OrderHandler/_fixtures/basket.php @@ -8,130 +8,106 @@ return [ 'content' => [ - 0 => [ - 'id' => 670, - 'sessionID' => 'd3b2438f074f9fd2d9f5ef3621e06f0b', - 'userID' => 1, - 'articlename' => 'Cigar Special 40%', - 'articleID' => 6, - 'ordernumber' => 'SW10006', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '35,95', - 'netprice' => 30.210084033613001, - 'tax_rate' => 19.0, - 'datum' => '2022-04-05 08:16:13', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.60 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Flasche(n)', - 'mainDetailId' => 6, - 'articleDetailId' => 6, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 20, - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => '0.5000', - 'unitID' => 1, - 'laststock' => 0, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 33, - '__s_order_basket_attributes_basketID' => 670, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 6, - 'articleDetailsID' => 6, - 'ordernumber' => 'SW10006', - 'highlight' => false, - 'description' => 'O barbaricus poeta Casus dum dis tueor iam Basilicus cur ne duo de neglectum, ut heu Fera hic Profiteor. Ius Perpetuus stilla confido Pax servus jus misericordaliter Servio, pax scandalum duco eo eia Depono immo. ', - 'description_long' => ' + 0 => [ + 'id' => 670, + 'sessionID' => 'd3b2438f074f9fd2d9f5ef3621e06f0b', + 'userID' => 1, + 'articlename' => 'Cigar Special 40%', + 'articleID' => 6, + 'ordernumber' => 'SW10006', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '35,95', + 'netprice' => 30.210084033613001, + 'tax_rate' => 19.0, + 'datum' => '2022-04-05 08:16:13', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.60 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Flasche(n)', + 'mainDetailId' => 6, + 'articleDetailId' => 6, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 20, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => '0.5000', + 'unitID' => 1, + 'laststock' => 0, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 33, + '__s_order_basket_attributes_basketID' => 670, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 6, + 'articleDetailsID' => 6, + 'ordernumber' => 'SW10006', + 'highlight' => false, + 'description' => 'O barbaricus poeta Casus dum dis tueor iam Basilicus cur ne duo de neglectum, ut heu Fera hic Profiteor. Ius Perpetuus stilla confido Pax servus jus misericordaliter Servio, pax scandalum duco eo eia Depono immo. ', + 'description_long' => ' A De cum casa fiducialiter laboriosus Secundus, lex asper ros hio cur interrogatio saltem vir Adversa, Gregatim mei Eo metuo sum maro iam proclivia amicabiliter occulto cruor fleo peto delitesco Comperte lacerta his tot Os ut Fruor res Gaza provisio conscientia dux effrenus Promus sui secundus rutila. Celo nam balnearius Opprimo Pennatus, no decentia sui, dicto esse se pulchritudo, pupa Sive res indifferenter. Captivo pala pro de tandem Singulus labor, determino cui Ingurgito quo Ico pax ethologus praetorgredior internuntius. Ops foveo Huius dux respublica his animadverto dolus imperterritus. Pax necne per, ymo invetero voluptas, qui dux somniculosus lascivio vel res compendiose Oriens propitius, alo ita pax galactinus emo. Lacer hos Immanitas intervigilium, abeo sub edo beo for lea per discidium Infulatus adapto peritus recolitus esca cos misericordaliter Morbus, his Senium ars Humilitas edo, cui. Sis sacrilegus Fatigo almus vae excedo, aut vegetabiliter Erogo villa periclitatus, for. ', - 'esd' => false, - 'articleName' => 'Cigar Special 40%', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 20, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-15', - 'update' => '2012-08-20', - 'sales' => 0, - 'filtergroupID' => 1, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 6, - 'articledetailsID' => 6, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Cigar Special 40%', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 20, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-15', + 'update' => '2012-08-20', + 'sales' => 0, + 'filtergroupID' => 1, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 6, + 'articledetailsID' => 6, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -152,349 +128,373 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Feinbrennerei Sasse', - 'supplierImg' => 'http://shopware.localhost/media/image/52/5b/a1/sasse.png', - 'supplierID' => 2, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 670, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/52/5b/a1/sasse.png', - 'description' => 'sasse', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/01/82/69/sasse_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/78/1d/0c/sasse_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/01/82/69/sasse_200x200.png, http://shopware.localhost/media/image/78/1d/0c/sasse_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/6e/a9/11/sasse_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9c/1d/19/sasse_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/6e/a9/11/sasse_600x600.png, http://shopware.localhost/media/image/9c/1d/19/sasse_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/55/12/76/sasse_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/30/4b/6b/sasse_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/55/12/76/sasse_1280x1280.png, http://shopware.localhost/media/image/30/4b/6b/sasse_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '35,95', - 'pseudoprice' => '0', - 'referenceprice' => '71,90', - 'has_pseudoprice' => false, - 'price_numeric' => 35.950000000000003, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => 0.5, - 'referenceunit' => 1.0, - 'packunit' => 'Flasche(n)', - 'unitID' => 1, - 'sUnit' => [ - 'unit' => 'l', - 'description' => 'Liter', - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 16, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1380, - 'height' => 3588, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg, http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg, http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg, http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '35,95', - 'pseudoprice' => '0', - 'referenceprice' => '71,90', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 35.950000000000003, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => 0.5, - 'referenceunit' => 1.0, - 'packunit' => 'Flasche(n)', - 'unitID' => 1, - 'sUnit' => [ - 'unit' => 'l', - 'description' => 'Liter', - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10006', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=6', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=6&number=SW10006', - 'sProperties' => [ - 7 => [ - 'id' => 7, - 'optionID' => 7, - 'name' => 'Trinktemperatur', - 'groupID' => 1, - 'groupName' => 'Edelbrände', - 'value' => 'Zimmertemperatur', - 'values' => [ - 36 => 'Zimmertemperatur', - ], - 'isFilterable' => true, - 'options' => [ - 0 => [ - 'id' => 36, - 'name' => 'Zimmertemperatur', - 'attributes' => [ - ], - ], - ], - 'media' => [ - ], - 'attributes' => [ - ], - ], - 6 => [ - 'id' => 6, - 'optionID' => 6, - 'name' => 'Geschmack', - 'groupID' => 1, - 'groupName' => 'Edelbrände', - 'value' => 'mild', - 'values' => [ - 33 => 'mild', - ], - 'isFilterable' => true, - 'options' => [ - 0 => [ - 'id' => 33, - 'name' => 'mild', - 'attributes' => [ - ], - ], - ], - 'media' => [ - ], - 'attributes' => [ - ], - ], - 2 => [ - 'id' => 2, - 'optionID' => 2, - 'name' => 'Flaschengröße', - 'groupID' => 1, - 'groupName' => 'Edelbrände', - 'value' => '0,5 Liter', - 'values' => [ - 23 => '0,5 Liter', - ], - 'isFilterable' => true, - 'options' => [ - 0 => [ - 'id' => 23, - 'name' => '0,5 Liter', - 'attributes' => [ - ], - ], - ], - 'media' => [ - ], - 'attributes' => [ - ], - ], - 1 => [ - 'id' => 1, - 'optionID' => 1, - 'name' => 'Alkoholgehalt', - 'groupID' => 1, - 'groupName' => 'Edelbrände', - 'value' => '>30%', - 'values' => [ - 40 => '>30%', - ], - 'isFilterable' => true, - 'options' => [ - 0 => [ - 'id' => 40, - 'name' => '>30%', - 'attributes' => [ - ], - ], - ], - 'media' => [ - ], - 'attributes' => [ - ], - ], - ], - 'properties' => 'Trinktemperatur: Zimmertemperatur, Geschmack: mild, Flaschengröße: 0,5 Liter, Alkoholgehalt: >30%', ], - 'itemUnit' => 'Liter', - 'amount' => '35,95', - 'purchaseunitTemp' => '0.5000', - 'itemInfo' => '0.5000 Liter / 35,95', - 'itemInfoArray' => [ - 'reference' => 1, - 'unit' => [ - 'unit' => 'l', - 'description' => 'Liter', - ], - 'price' => '35,95', + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Feinbrennerei Sasse', + 'supplierImg' => 'http://shopware.localhost/media/image/52/5b/a1/sasse.png', + 'supplierID' => 2, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 670, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/52/5b/a1/sasse.png', + 'description' => 'sasse', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/01/82/69/sasse_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/78/1d/0c/sasse_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/01/82/69/sasse_200x200.png, http://shopware.localhost/media/image/78/1d/0c/sasse_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], ], - 'amountnet' => '30,21', - 'priceNumeric' => 35.950000000000003, - 'amountNumeric' => 35.950000000000003, - 'amountnetNumeric' => 30.210084033613001, - 'image' => [ - 'id' => 16, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1380, - 'height' => 3588, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg, http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg, http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg, http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/6e/a9/11/sasse_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9c/1d/19/sasse_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/6e/a9/11/sasse_600x600.png, http://shopware.localhost/media/image/9c/1d/19/sasse_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/55/12/76/sasse_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/30/4b/6b/sasse_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/55/12/76/sasse_1280x1280.png, http://shopware.localhost/media/image/30/4b/6b/sasse_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '35,95', + 'pseudoprice' => '0', + 'referenceprice' => '71,90', + 'has_pseudoprice' => false, + 'price_numeric' => 35.950000000000003, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => 0.5, + 'referenceunit' => 1.0, + 'packunit' => 'Flasche(n)', + 'unitID' => 1, + 'sUnit' => [ + 'unit' => 'l', + 'description' => 'Liter', + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 16, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1380, + 'height' => 3588, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg, http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg, http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg, http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '35,95', + 'pseudoprice' => '0', + 'referenceprice' => '71,90', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 35.950000000000003, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => 0.5, + 'referenceunit' => 1.0, + 'packunit' => 'Flasche(n)', + 'unitID' => 1, + 'sUnit' => [ + 'unit' => 'l', + 'description' => 'Liter', + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10006', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=6', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=6&number=SW10006', + 'sProperties' => [ + 7 => [ + 'id' => 7, + 'optionID' => 7, + 'name' => 'Trinktemperatur', + 'groupID' => 1, + 'groupName' => 'Edelbrände', + 'value' => 'Zimmertemperatur', + 'values' => [ + 36 => 'Zimmertemperatur', + ], + 'isFilterable' => true, + 'options' => [ + 0 => [ + 'id' => 36, + 'name' => 'Zimmertemperatur', + 'attributes' => [ ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', - 0 => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg', + ], + ], + 'media' => [ + ], + 'attributes' => [ + ], + ], + 6 => [ + 'id' => 6, + 'optionID' => 6, + 'name' => 'Geschmack', + 'groupID' => 1, + 'groupName' => 'Edelbrände', + 'value' => 'mild', + 'values' => [ + 33 => 'mild', + ], + 'isFilterable' => true, + 'options' => [ + 0 => [ + 'id' => 33, + 'name' => 'mild', + 'attributes' => [ ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', - 0 => 'http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg', + ], + ], + 'media' => [ + ], + 'attributes' => [ + ], + ], + 2 => [ + 'id' => 2, + 'optionID' => 2, + 'name' => 'Flaschengröße', + 'groupID' => 1, + 'groupName' => 'Edelbrände', + 'value' => '0,5 Liter', + 'values' => [ + 23 => '0,5 Liter', + ], + 'isFilterable' => true, + 'options' => [ + 0 => [ + 'id' => 23, + 'name' => '0,5 Liter', + 'attributes' => [ ], - 'res' => [ - 'original' => [ - 'width' => 3588, - 'height' => 1380, - ], + ], + ], + 'media' => [ + ], + 'attributes' => [ + ], + ], + 1 => [ + 'id' => 1, + 'optionID' => 1, + 'name' => 'Alkoholgehalt', + 'groupID' => 1, + 'groupName' => 'Edelbrände', + 'value' => '>30%', + 'values' => [ + 40 => '>30%', + ], + 'isFilterable' => true, + 'options' => [ + 0 => [ + 'id' => 40, + 'name' => '>30%', + 'attributes' => [ ], + ], + ], + 'media' => [ + ], + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=6', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=670', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10006', - 'tax' => '5,74', + ], ], + 'properties' => 'Trinktemperatur: Zimmertemperatur, Geschmack: mild, Flaschengröße: 0,5 Liter, Alkoholgehalt: >30%', + ], + 'itemUnit' => 'Liter', + 'amount' => '35,95', + 'purchaseunitTemp' => '0.5000', + 'itemInfo' => '0.5000 Liter / 35,95', + 'itemInfoArray' => [ + 'reference' => 1, + 'unit' => [ + 'unit' => 'l', + 'description' => 'Liter', + ], + 'price' => '35,95', + ], + 'amountnet' => '30,21', + 'priceNumeric' => 35.950000000000003, + 'amountNumeric' => 35.950000000000003, + 'amountnetNumeric' => 30.210084033613001, + 'image' => [ + 'id' => 16, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1380, + 'height' => 3588, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg, http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg, http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg, http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', + 0 => 'http://shopware.localhost/media/image/e5/c3/71/Cigar_Special_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/3a/5d/7d/Cigar_Special_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/cb/c5/15/Cigar_Special_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/bf/b2/1f/Cigar_Special.jpg', + 0 => 'http://shopware.localhost/media/image/c3/76/c3/Cigar_Special_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/e6/c1/11/Cigar_Special_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/f3/14/54/Cigar_Special_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 3588, + 'height' => 1380, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=6', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=670', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10006', + 'tax' => '5,74', ], + ], 'Amount' => '35,95', 'AmountNet' => '30,21', 'Quantity' => 1, @@ -510,8 +510,8 @@ 'sShippingcostsTax' => 19.0, 'sShippingcostsDifference' => 9964.0499999999993, 'sTaxRates' => [ - '19.00' => 11.490000000000004, - ], + '19.00' => 11.490000000000004, + ], 'sShippingcosts' => 35.990000000000002, 'sAmount' => 71.939999999999998, 'sAmountTax' => 11.49, diff --git a/Tests/Unit/Controllers/Frontend/PaypalUnifiedApmTest.php b/Tests/Unit/Controllers/Frontend/PaypalUnifiedApmTest.php index dee434ce..94f22ac9 100644 --- a/Tests/Unit/Controllers/Frontend/PaypalUnifiedApmTest.php +++ b/Tests/Unit/Controllers/Frontend/PaypalUnifiedApmTest.php @@ -83,19 +83,19 @@ public function testPaymentStateIsUpdatedCorrectly($intent, $paypalOrderState, $ $this->givenThePayPalOrder( self::PAYPAL_ORDER_ID, (new Order())->assign([ - 'id' => self::PAYPAL_ORDER_ID, - 'intent' => $intent, - 'status' => $paypalOrderState, - 'purchaseUnits' => [ - $this->createConfiguredMock(PurchaseUnit::class, [ - 'getAmount' => $this->createMock(Amount::class), - 'getPayments' => $this->createConfiguredMock(Payments::class, [ - 'getCaptures' => [$capture], - 'getAuthorizations' => [$authorization], + 'id' => self::PAYPAL_ORDER_ID, + 'intent' => $intent, + 'status' => $paypalOrderState, + 'purchaseUnits' => [ + $this->createConfiguredMock(PurchaseUnit::class, [ + 'getAmount' => $this->createMock(Amount::class), + 'getPayments' => $this->createConfiguredMock(Payments::class, [ + 'getCaptures' => [$capture], + 'getAuthorizations' => [$authorization], + ]), ]), - ]), - ], - ]), + ], + ]), $orderWillReturnOrder ); $this->givenTheCustomer(self::DEFAULT_CUSTOMER_DATA); diff --git a/Tests/_fixtures/s_user_data.php b/Tests/_fixtures/s_user_data.php index 9b2f22ca..7c1b0995 100644 --- a/Tests/_fixtures/s_user_data.php +++ b/Tests/_fixtures/s_user_data.php @@ -9,456 +9,548 @@ return [ 'sUserLoggedIn' => true, 'sUserData' => [ - 'billingaddress' => [ - 'id' => 1, - 'company' => 'Muster GmbH', - 'department' => null, - 'salutation' => 'mr', - 'firstname' => 'Max', - 'title' => null, - 'lastname' => 'Mustermann', - 'street' => 'Musterstr. 55', - 'zipcode' => '55555', - 'city' => 'Musterhausen', - 'phone' => '05555 / 555555', - 'vatId' => null, - 'additionalAddressLine1' => null, - 'additionalAddressLine2' => null, - 'countryId' => 2, - 'stateId' => 3, - 'customer' => [ - 'id' => 1, - ], - 'country' => [ - 'id' => 2, - ], - 'state' => [ - 'id' => 3, - ], - 'userID' => 1, - 'countryID' => 2, - 'stateID' => 3, - 'ustid' => null, - 'additional_address_line1' => null, - 'additional_address_line2' => null, - 'attributes' => [ - ], - ], - 'additional' => [ - 'country' => [ - 'id' => 2, - 'countryname' => 'Deutschland', - 'countryiso' => 'DE', - 'areaID' => 1, - 'countryen' => 'GERMANY', - 'position' => 1, - 'notice' => '', - 'taxfree' => 0, - 'taxfree_ustid' => 0, - 'taxfree_ustid_checked' => 0, - 'active' => 1, - 'iso3' => 'DEU', - 'display_state_in_registration' => 0, - 'force_state_in_registration' => 0, - 'allow_shipping' => 1, - 'countryarea' => 'deutschland', - ], - 'state' => [ - 'id' => 3, - 'countryID' => 2, - 'name' => 'Nordrhein-Westfalen', - 'shortcode' => 'NW', - 'position' => 0, - 'active' => 1, - 'statename' => 'Nordrhein-Westfalen', - ], - 'user' => [ - 'id' => 1, - 'password' => '$2y$10$L6z5iJqIbnZSZATI0rsCRuFPGcQovazbnSzJS87Q92HvavijzIJwS', - 'encoder' => 'bcrypt', - 'email' => 'test@example.com', - 'active' => 1, - 'accountmode' => 0, - 'confirmationkey' => '', - 'paymentID' => 14, - 'doubleOptinRegister' => 0, - 'doubleOptinEmailSentDate' => null, - 'doubleOptinConfirmDate' => null, - 'firstlogin' => '2011-11-23', - 'lastlogin' => '2022-04-25 06:51:28', - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'newsletter' => 0, - 'validation' => '', - 'affiliate' => 0, - 'customergroup' => 'EK', - 'paymentpreset' => 0, - 'language' => '1', - 'subshopID' => 1, - 'referer' => '', - 'pricegroupID' => null, - 'internalcomment' => '', - 'failedlogins' => 0, - 'lockeduntil' => null, - 'default_billing_address_id' => 1, - 'default_shipping_address_id' => 3, - 'title' => null, - 'salutation' => 'mr', - 'firstname' => 'Max', - 'lastname' => 'Mustermann', - 'birthday' => null, - 'customernumber' => '20001', - 'login_token' => '1d7e467a-d032-4c9c-83d4-3ee3d3e73cf6.1', - 'changed' => null, - 'password_change_date' => '2022-04-25 05:26:37', - 'register_opt_in_id' => null, - ], - 'countryShipping' => [ - 'id' => 2, - 'countryname' => 'Deutschland', - 'countryiso' => 'DE', - 'areaID' => 1, - 'countryen' => 'GERMANY', - 'position' => 1, - 'notice' => '', - 'taxfree' => 0, - 'taxfree_ustid' => 0, - 'taxfree_ustid_checked' => 0, - 'active' => 1, - 'iso3' => 'DEU', - 'display_state_in_registration' => 0, - 'force_state_in_registration' => 0, - 'allow_shipping' => 1, - 'countryarea' => 'deutschland', - ], - 'stateShipping' => [ - ], - 'payment' => [ - 'id' => 14, - 'name' => 'SwagPaymentPayPalUnifiedGiropay', - 'description' => 'Giropay', - 'template' => '', - 'class' => '', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => 'Logo giropay', - 'debit_percent' => 0.0, - 'surcharge' => 0.0, - 'surchargestring' => '', - 'position' => -95, - 'active' => 1, - 'esdactive' => 0, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => 'PaypalUnifiedApm', - 'pluginID' => 59, - 'source' => null, - 'mobile_inactive' => 0, - 'attributes' => [ - ], - 'validation' => [ - ], - ], - 'charge_vat' => true, - 'show_net' => true, + 'billingaddress' => [ + 'id' => 1, + 'company' => 'Muster GmbH', + 'department' => null, + 'salutation' => 'mr', + 'firstname' => 'Max', + 'title' => null, + 'lastname' => 'Mustermann', + 'street' => 'Musterstr. 55', + 'zipcode' => '55555', + 'city' => 'Musterhausen', + 'phone' => '05555 / 555555', + 'vatId' => null, + 'additionalAddressLine1' => null, + 'additionalAddressLine2' => null, + 'countryId' => 2, + 'stateId' => 3, + 'customer' => [ + 'id' => 1, + ], + 'country' => [ + 'id' => 2, + ], + 'state' => [ + 'id' => 3, + ], + 'userID' => 1, + 'countryID' => 2, + 'stateID' => 3, + 'ustid' => null, + 'additional_address_line1' => null, + 'additional_address_line2' => null, + 'attributes' => [ + ], + ], + 'additional' => [ + 'country' => [ + 'id' => 2, + 'countryname' => 'Deutschland', + 'countryiso' => 'DE', + 'areaID' => 1, + 'countryen' => 'GERMANY', + 'position' => 1, + 'notice' => '', + 'taxfree' => 0, + 'taxfree_ustid' => 0, + 'taxfree_ustid_checked' => 0, + 'active' => 1, + 'iso3' => 'DEU', + 'display_state_in_registration' => 0, + 'force_state_in_registration' => 0, + 'allow_shipping' => 1, + 'countryarea' => 'deutschland', + ], + 'state' => [ + 'id' => 3, + 'countryID' => 2, + 'name' => 'Nordrhein-Westfalen', + 'shortcode' => 'NW', + 'position' => 0, + 'active' => 1, + 'statename' => 'Nordrhein-Westfalen', + ], + 'user' => [ + 'id' => 1, + 'password' => '$2y$10$L6z5iJqIbnZSZATI0rsCRuFPGcQovazbnSzJS87Q92HvavijzIJwS', + 'encoder' => 'bcrypt', + 'email' => 'test@example.com', + 'active' => 1, + 'accountmode' => 0, + 'confirmationkey' => '', + 'paymentID' => 14, + 'doubleOptinRegister' => 0, + 'doubleOptinEmailSentDate' => null, + 'doubleOptinConfirmDate' => null, + 'firstlogin' => '2011-11-23', + 'lastlogin' => '2022-04-25 06:51:28', + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'newsletter' => 0, + 'validation' => '', + 'affiliate' => 0, + 'customergroup' => 'EK', + 'paymentpreset' => 0, + 'language' => '1', + 'subshopID' => 1, + 'referer' => '', + 'pricegroupID' => null, + 'internalcomment' => '', + 'failedlogins' => 0, + 'lockeduntil' => null, + 'default_billing_address_id' => 1, + 'default_shipping_address_id' => 3, + 'title' => null, + 'salutation' => 'mr', + 'firstname' => 'Max', + 'lastname' => 'Mustermann', + 'birthday' => null, + 'customernumber' => '20001', + 'login_token' => '1d7e467a-d032-4c9c-83d4-3ee3d3e73cf6.1', + 'changed' => null, + 'password_change_date' => '2022-04-25 05:26:37', + 'register_opt_in_id' => null, + ], + 'countryShipping' => [ + 'id' => 2, + 'countryname' => 'Deutschland', + 'countryiso' => 'DE', + 'areaID' => 1, + 'countryen' => 'GERMANY', + 'position' => 1, + 'notice' => '', + 'taxfree' => 0, + 'taxfree_ustid' => 0, + 'taxfree_ustid_checked' => 0, + 'active' => 1, + 'iso3' => 'DEU', + 'display_state_in_registration' => 0, + 'force_state_in_registration' => 0, + 'allow_shipping' => 1, + 'countryarea' => 'deutschland', + ], + 'stateShipping' => [ + ], + 'payment' => [ + 'id' => 14, + 'name' => 'SwagPaymentPayPalUnifiedGiropay', + 'description' => 'Giropay', + 'template' => '', + 'class' => '', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => 'Logo giropay', + 'debit_percent' => 0.0, + 'surcharge' => 0.0, + 'surchargestring' => '', + 'position' => -95, + 'active' => 1, + 'esdactive' => 0, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => 'PaypalUnifiedApm', + 'pluginID' => 59, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ ], - 'shippingaddress' => [ - 'id' => 3, - 'company' => 'shopware AG', - 'department' => null, - 'salutation' => 'mr', - 'firstname' => 'Max', - 'title' => null, - 'lastname' => 'Mustermann', - 'street' => 'Mustermannstraße 92', - 'zipcode' => '48624', - 'city' => 'Schöppingen', - 'phone' => null, - 'vatId' => null, - 'additionalAddressLine1' => null, - 'additionalAddressLine2' => null, - 'countryId' => 2, - 'stateId' => null, - 'customer' => [ - 'id' => 1, - ], - 'country' => [ - 'id' => 2, - ], - 'state' => null, - 'userID' => 1, - 'countryID' => 2, - 'stateID' => null, - 'ustid' => null, - 'additional_address_line1' => null, - 'additional_address_line2' => null, - 'attributes' => [ - ], + 'validation' => [ ], + ], + 'charge_vat' => true, + 'show_net' => true, + ], + 'shippingaddress' => [ + 'id' => 3, + 'company' => 'shopware AG', + 'department' => null, + 'salutation' => 'mr', + 'firstname' => 'Max', + 'title' => null, + 'lastname' => 'Mustermann', + 'street' => 'Mustermannstraße 92', + 'zipcode' => '48624', + 'city' => 'Schöppingen', + 'phone' => null, + 'vatId' => null, + 'additionalAddressLine1' => null, + 'additionalAddressLine2' => null, + 'countryId' => 2, + 'stateId' => null, + 'customer' => [ + 'id' => 1, + ], + 'country' => [ + 'id' => 2, + ], + 'state' => null, + 'userID' => 1, + 'countryID' => 2, + 'stateID' => null, + 'ustid' => null, + 'additional_address_line1' => null, + 'additional_address_line2' => null, + 'attributes' => [ + ], ], + ], 'httpCacheEnabled' => true, 'cookieGroups' => [ - 0 => [ - 'name' => 'technical', - 'label' => 'Technisch erforderlich', - 'description' => 'Diese Cookies sind für die Grundfunktionen des Shops notwendig.', - 'cookies' => [ - 0 => [ - 'name' => 'cookieDeclined', - 'label' => '"Alle Cookies ablehnen" Cookie', - 'groupName' => 'technical', - 'matchingPattern' => '/^cookieDeclined$/', - ], - 1 => [ - 'name' => 'allowCookie', - 'label' => '"Alle Cookies annehmen" Cookie', - 'groupName' => 'technical', - 'matchingPattern' => '/^allowCookie$/', - ], - 2 => [ - 'name' => 'shop', - 'label' => 'Ausgewählter Shop', - 'groupName' => 'technical', - 'matchingPattern' => '/^shop(\\-[0-9]+)?$/', - ], - 3 => [ - 'name' => 'csrf_token', - 'label' => 'CSRF-Token', - 'groupName' => 'technical', - 'matchingPattern' => '/^__csrf_token\\-[0-9]+$/', - ], - 4 => [ - 'name' => 'cookiePreferences', - 'label' => 'Cookie-Einstellungen', - 'groupName' => 'technical', - 'matchingPattern' => '/^cookiePreferences$/', - ], - 5 => [ - 'name' => 'x-cache-context-hash', - 'label' => 'Individuelle Preise', - 'groupName' => 'technical', - 'matchingPattern' => '/^x\\-cache\\-context\\-hash$/', - ], - 6 => [ - 'name' => 'slt', - 'label' => 'Kunden-Wiedererkennung', - 'groupName' => 'technical', - 'matchingPattern' => '/^slt$/', - ], - 7 => [ - 'name' => 'nocache', - 'label' => 'Kundenspezifisches Caching', - 'groupName' => 'technical', - 'matchingPattern' => '/^nocache$/', - ], - 8 => [ - 'name' => 'paypal-cookies', - 'label' => 'PayPal-Zahlungen', - 'groupName' => 'technical', - 'matchingPattern' => '/^paypal-cookie-consent-manager$|^paypalplus_session_v2$/', - ], - 9 => [ - 'name' => 'session', - 'label' => 'Session', - 'groupName' => 'technical', - 'matchingPattern' => '/^session\\-[0-9]+$/', - ], - 10 => [ - 'name' => 'currency', - 'label' => 'Währungswechsel', - 'groupName' => 'technical', - 'matchingPattern' => '/^currency$/', - ], - ], - 'required' => true, + 0 => [ + 'name' => 'technical', + 'label' => 'Technisch erforderlich', + 'description' => 'Diese Cookies sind für die Grundfunktionen des Shops notwendig.', + 'cookies' => [ + 0 => [ + 'name' => 'cookieDeclined', + 'label' => '"Alle Cookies ablehnen" Cookie', + 'groupName' => 'technical', + 'matchingPattern' => '/^cookieDeclined$/', ], - 1 => [ - 'name' => 'comfort', - 'label' => 'Komfortfunktionen', - 'description' => 'Diese Cookies werden genutzt um das Einkaufserlebnis noch ansprechender zu gestalten, beispielsweise für die Wiedererkennung des Besuchers.', - 'cookies' => [ - 0 => [ - 'name' => 'sUniqueID', - 'label' => 'Merkzettel', - 'groupName' => 'comfort', - 'matchingPattern' => '/^sUniqueID$/', - ], - ], - 'required' => false, + 1 => [ + 'name' => 'allowCookie', + 'label' => '"Alle Cookies annehmen" Cookie', + 'groupName' => 'technical', + 'matchingPattern' => '/^allowCookie$/', ], - 2 => [ - 'name' => 'personalization', - 'label' => 'Personalisierung', - 'description' => '', - 'cookies' => [ - ], - 'required' => false, + 2 => [ + 'name' => 'shop', + 'label' => 'Ausgewählter Shop', + 'groupName' => 'technical', + 'matchingPattern' => '/^shop(\\-[0-9]+)?$/', ], - 3 => [ - 'name' => 'statistics', - 'label' => 'Statistik & Tracking', - 'description' => '', - 'cookies' => [ - 0 => [ - 'name' => 'x-ua-device', - 'label' => 'Endgeräteerkennung', - 'groupName' => 'statistics', - 'matchingPattern' => '/^x\\-ua\\-device$/', - ], - 1 => [ - 'name' => 'partner', - 'label' => 'Partnerprogramm', - 'groupName' => 'statistics', - 'matchingPattern' => '/^partner$/', - ], - ], - 'required' => false, + 3 => [ + 'name' => 'csrf_token', + 'label' => 'CSRF-Token', + 'groupName' => 'technical', + 'matchingPattern' => '/^__csrf_token\\-[0-9]+$/', ], - 4 => [ - 'name' => 'others', - 'label' => 'Sonstige', - 'description' => '', - 'cookies' => [ - ], - 'required' => false, + 4 => [ + 'name' => 'cookiePreferences', + 'label' => 'Cookie-Einstellungen', + 'groupName' => 'technical', + 'matchingPattern' => '/^cookiePreferences$/', + ], + 5 => [ + 'name' => 'x-cache-context-hash', + 'label' => 'Individuelle Preise', + 'groupName' => 'technical', + 'matchingPattern' => '/^x\\-cache\\-context\\-hash$/', + ], + 6 => [ + 'name' => 'slt', + 'label' => 'Kunden-Wiedererkennung', + 'groupName' => 'technical', + 'matchingPattern' => '/^slt$/', ], + 7 => [ + 'name' => 'nocache', + 'label' => 'Kundenspezifisches Caching', + 'groupName' => 'technical', + 'matchingPattern' => '/^nocache$/', + ], + 8 => [ + 'name' => 'paypal-cookies', + 'label' => 'PayPal-Zahlungen', + 'groupName' => 'technical', + 'matchingPattern' => '/^paypal-cookie-consent-manager$|^paypalplus_session_v2$/', + ], + 9 => [ + 'name' => 'session', + 'label' => 'Session', + 'groupName' => 'technical', + 'matchingPattern' => '/^session\\-[0-9]+$/', + ], + 10 => [ + 'name' => 'currency', + 'label' => 'Währungswechsel', + 'groupName' => 'technical', + 'matchingPattern' => '/^currency$/', + ], + ], + 'required' => true, ], - 'theme' => [ - 'mobileLogo' => 'frontend/_public/src/img/logos/logo--mobile.png', - 'tabletLogo' => 'frontend/_public/src/img/logos/logo--tablet.png', - 'tabletLandscapeLogo' => 'frontend/_public/src/img/logos/logo--tablet.png', - 'desktopLogo' => 'frontend/_public/src/img/logos/logo--tablet.png', - 'appleTouchIcon' => 'frontend/_public/src/img/apple-touch-icon-precomposed.png', - 'setPrecomposed' => true, - 'win8TileImage' => 'frontend/_public/src/img/win-tile-image.png', - 'favicon' => 'frontend/_public/src/img/favicon.ico', - 'offcanvasCart' => true, - 'offcanvasOverlayPage' => true, - 'focusSearch' => false, - 'displaySidebar' => true, - 'sidebarFilter' => false, - 'checkoutHeader' => true, - 'checkoutFooter' => true, - 'infiniteScrolling' => true, - 'infiniteThreshold' => 4, - 'lightboxZoomFactor' => 0, - 'appleWebAppTitle' => '', - 'ajaxVariantSwitch' => true, - 'asyncJavascriptLoading' => true, - 'ajaxEmotionLoading' => true, - 'additionalCssData' => '', - 'additionalJsLibraries' => '', - 'brand-primary' => '#D9400B', - 'brand-primary-light' => 'saturate(lighten(@brand-primary,12%), 5%)', - 'brand-secondary' => '#5F7285', - 'brand-secondary-dark' => 'darken(@brand-secondary, 15%)', - 'gray' => '#F5F5F8', - 'gray-light' => 'lighten(@gray, 1%)', - 'gray-dark' => 'darken(@gray-light, 10%)', - 'border-color' => '@gray-dark', - 'highlight-success' => '#2ECC71', - 'highlight-error' => '#E74C3C', - 'highlight-notice' => '#F1C40F', - 'highlight-info' => '#4AA3DF', - 'body-bg' => 'darken(@gray-light, 5%)', - 'text-color' => '@brand-secondary', - 'text-color-dark' => '@brand-secondary-dark', - 'link-color' => '@brand-primary', - 'link-hover-color' => 'darken(@link-color, 10%)', - 'rating-star-color' => '@highlight-notice', - 'overlay-bg' => '#000000', - 'overlay-theme-dark-bg' => '@overlay-bg', - 'overlay-theme-light-bg' => '#FFFFFF', - 'overlay-opacity' => '0.7', - 'font-base-stack' => '"Open Sans", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;', - 'font-headline-stack' => '@font-base-stack', - 'font-size-base' => 14, - 'font-base-weight' => 500, - 'font-light-weight' => 300, - 'font-bold-weight' => 700, - 'font-size-h1' => 26, - 'font-size-h2' => 21, - 'font-size-h3' => 18, - 'font-size-h4' => 16, - 'font-size-h5' => '@font-size-base', - 'font-size-h6' => 12, - 'btn-font-size' => 14, - 'btn-icon-size' => 10, - 'btn-default-top-bg' => '#FFFFFF', - 'btn-default-bottom-bg' => '@gray-light', - 'btn-default-hover-bg' => '#FFFFFF', - 'btn-default-text-color' => '@text-color', - 'btn-default-hover-text-color' => '@brand-primary', - 'btn-default-border-color' => '@border-color', - 'btn-default-hover-border-color' => '@brand-primary', - 'btn-primary-top-bg' => '@brand-primary-light', - 'btn-primary-bottom-bg' => '@brand-primary', - 'btn-primary-hover-bg' => '@brand-primary', - 'btn-primary-text-color' => '#FFFFFF', - 'btn-primary-hover-text-color' => '@btn-primary-text-color', - 'btn-secondary-top-bg' => '@brand-secondary', - 'btn-secondary-bottom-bg' => '@brand-secondary-dark', - 'btn-secondary-hover-bg' => '@brand-secondary-dark', - 'btn-secondary-text-color' => '#FFFFFF', - 'btn-secondary-hover-text-color' => '@btn-secondary-text-color', - 'panel-header-bg' => '@gray-light', - 'panel-header-font-size' => 14, - 'panel-header-color' => '@text-color', - 'panel-border' => '@border-color', - 'panel-bg' => '#FFFFFF', - 'label-font-size' => 14, - 'label-color' => '@text-color', - 'input-font-size' => 14, - 'input-bg' => '@gray-light', - 'input-color' => '@brand-secondary', - 'input-placeholder-color' => 'lighten(@text-color, 15%)', - 'input-border' => '@border-color', - 'input-focus-bg' => '#FFFFFF', - 'input-focus-border' => '@brand-primary', - 'input-focus-color' => '@brand-secondary', - 'input-error-bg' => 'desaturate(lighten(@highlight-error, 38%), 20%)', - 'input-error-border' => '@highlight-error', - 'input-error-color' => '@highlight-error', - 'input-success-bg' => '#FFFFFF', - 'input-success-border' => '@highlight-success', - 'input-success-color' => '@brand-secondary-dark', - 'panel-table-header-bg' => '@panel-bg', - 'panel-table-header-color' => '@text-color-dark', - 'table-row-bg' => '#FFFFFF', - 'table-row-color' => '@brand-secondary', - 'table-row-highlight-bg' => 'darken(@table-row-bg, 4%)', - 'table-header-bg' => '@brand-secondary', - 'table-header-color' => '#FFFFFF', - 'badge-discount-bg' => '@highlight-error', - 'badge-discount-color' => '#FFFFFF', - 'badge-newcomer-bg' => '@highlight-notice', - 'badge-newcomer-color' => '#FFFFFF', - 'badge-recommendation-bg' => '@highlight-success', - 'badge-recommendation-color' => '#FFFFFF', - 'badge-download-bg' => '@highlight-info', - 'badge-download-color' => '#FFFFFF', + 1 => [ + 'name' => 'comfort', + 'label' => 'Komfortfunktionen', + 'description' => 'Diese Cookies werden genutzt um das Einkaufserlebnis noch ansprechender zu gestalten, beispielsweise für die Wiedererkennung des Besuchers.', + 'cookies' => [ + 0 => [ + 'name' => 'sUniqueID', + 'label' => 'Merkzettel', + 'groupName' => 'comfort', + 'matchingPattern' => '/^sUniqueID$/', + ], + ], + 'required' => false, + ], + 2 => [ + 'name' => 'personalization', + 'label' => 'Personalisierung', + 'description' => '', + 'cookies' => [ + ], + 'required' => false, + ], + 3 => [ + 'name' => 'statistics', + 'label' => 'Statistik & Tracking', + 'description' => '', + 'cookies' => [ + 0 => [ + 'name' => 'x-ua-device', + 'label' => 'Endgeräteerkennung', + 'groupName' => 'statistics', + 'matchingPattern' => '/^x\\-ua\\-device$/', + ], + 1 => [ + 'name' => 'partner', + 'label' => 'Partnerprogramm', + 'groupName' => 'statistics', + 'matchingPattern' => '/^partner$/', + ], + ], + 'required' => false, ], + 4 => [ + 'name' => 'others', + 'label' => 'Sonstige', + 'description' => '', + 'cookies' => [ + ], + 'required' => false, + ], + ], + 'theme' => [ + 'mobileLogo' => 'frontend/_public/src/img/logos/logo--mobile.png', + 'tabletLogo' => 'frontend/_public/src/img/logos/logo--tablet.png', + 'tabletLandscapeLogo' => 'frontend/_public/src/img/logos/logo--tablet.png', + 'desktopLogo' => 'frontend/_public/src/img/logos/logo--tablet.png', + 'appleTouchIcon' => 'frontend/_public/src/img/apple-touch-icon-precomposed.png', + 'setPrecomposed' => true, + 'win8TileImage' => 'frontend/_public/src/img/win-tile-image.png', + 'favicon' => 'frontend/_public/src/img/favicon.ico', + 'offcanvasCart' => true, + 'offcanvasOverlayPage' => true, + 'focusSearch' => false, + 'displaySidebar' => true, + 'sidebarFilter' => false, + 'checkoutHeader' => true, + 'checkoutFooter' => true, + 'infiniteScrolling' => true, + 'infiniteThreshold' => 4, + 'lightboxZoomFactor' => 0, + 'appleWebAppTitle' => '', + 'ajaxVariantSwitch' => true, + 'asyncJavascriptLoading' => true, + 'ajaxEmotionLoading' => true, + 'additionalCssData' => '', + 'additionalJsLibraries' => '', + 'brand-primary' => '#D9400B', + 'brand-primary-light' => 'saturate(lighten(@brand-primary,12%), 5%)', + 'brand-secondary' => '#5F7285', + 'brand-secondary-dark' => 'darken(@brand-secondary, 15%)', + 'gray' => '#F5F5F8', + 'gray-light' => 'lighten(@gray, 1%)', + 'gray-dark' => 'darken(@gray-light, 10%)', + 'border-color' => '@gray-dark', + 'highlight-success' => '#2ECC71', + 'highlight-error' => '#E74C3C', + 'highlight-notice' => '#F1C40F', + 'highlight-info' => '#4AA3DF', + 'body-bg' => 'darken(@gray-light, 5%)', + 'text-color' => '@brand-secondary', + 'text-color-dark' => '@brand-secondary-dark', + 'link-color' => '@brand-primary', + 'link-hover-color' => 'darken(@link-color, 10%)', + 'rating-star-color' => '@highlight-notice', + 'overlay-bg' => '#000000', + 'overlay-theme-dark-bg' => '@overlay-bg', + 'overlay-theme-light-bg' => '#FFFFFF', + 'overlay-opacity' => '0.7', + 'font-base-stack' => '"Open Sans", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;', + 'font-headline-stack' => '@font-base-stack', + 'font-size-base' => 14, + 'font-base-weight' => 500, + 'font-light-weight' => 300, + 'font-bold-weight' => 700, + 'font-size-h1' => 26, + 'font-size-h2' => 21, + 'font-size-h3' => 18, + 'font-size-h4' => 16, + 'font-size-h5' => '@font-size-base', + 'font-size-h6' => 12, + 'btn-font-size' => 14, + 'btn-icon-size' => 10, + 'btn-default-top-bg' => '#FFFFFF', + 'btn-default-bottom-bg' => '@gray-light', + 'btn-default-hover-bg' => '#FFFFFF', + 'btn-default-text-color' => '@text-color', + 'btn-default-hover-text-color' => '@brand-primary', + 'btn-default-border-color' => '@border-color', + 'btn-default-hover-border-color' => '@brand-primary', + 'btn-primary-top-bg' => '@brand-primary-light', + 'btn-primary-bottom-bg' => '@brand-primary', + 'btn-primary-hover-bg' => '@brand-primary', + 'btn-primary-text-color' => '#FFFFFF', + 'btn-primary-hover-text-color' => '@btn-primary-text-color', + 'btn-secondary-top-bg' => '@brand-secondary', + 'btn-secondary-bottom-bg' => '@brand-secondary-dark', + 'btn-secondary-hover-bg' => '@brand-secondary-dark', + 'btn-secondary-text-color' => '#FFFFFF', + 'btn-secondary-hover-text-color' => '@btn-secondary-text-color', + 'panel-header-bg' => '@gray-light', + 'panel-header-font-size' => 14, + 'panel-header-color' => '@text-color', + 'panel-border' => '@border-color', + 'panel-bg' => '#FFFFFF', + 'label-font-size' => 14, + 'label-color' => '@text-color', + 'input-font-size' => 14, + 'input-bg' => '@gray-light', + 'input-color' => '@brand-secondary', + 'input-placeholder-color' => 'lighten(@text-color, 15%)', + 'input-border' => '@border-color', + 'input-focus-bg' => '#FFFFFF', + 'input-focus-border' => '@brand-primary', + 'input-focus-color' => '@brand-secondary', + 'input-error-bg' => 'desaturate(lighten(@highlight-error, 38%), 20%)', + 'input-error-border' => '@highlight-error', + 'input-error-color' => '@highlight-error', + 'input-success-bg' => '#FFFFFF', + 'input-success-border' => '@highlight-success', + 'input-success-color' => '@brand-secondary-dark', + 'panel-table-header-bg' => '@panel-bg', + 'panel-table-header-color' => '@text-color-dark', + 'table-row-bg' => '#FFFFFF', + 'table-row-color' => '@brand-secondary', + 'table-row-highlight-bg' => 'darken(@table-row-bg, 4%)', + 'table-header-bg' => '@brand-secondary', + 'table-header-color' => '#FFFFFF', + 'badge-discount-bg' => '@highlight-error', + 'badge-discount-color' => '#FFFFFF', + 'badge-newcomer-bg' => '@highlight-notice', + 'badge-newcomer-color' => '#FFFFFF', + 'badge-recommendation-bg' => '@highlight-success', + 'badge-recommendation-color' => '#FFFFFF', + 'badge-download-bg' => '@highlight-info', + 'badge-download-color' => '#FFFFFF', + ], 'sCountry' => [ - 'id' => 2, - 'countryname' => 'Deutschland', - 'countryiso' => 'DE', - 'areaID' => 1, - 'countryen' => 'GERMANY', - 'position' => 1, - 'notice' => '', - 'taxfree' => 0, - 'taxfree_ustid' => 0, - 'taxfree_ustid_checked' => 0, + 'id' => 2, + 'countryname' => 'Deutschland', + 'countryiso' => 'DE', + 'areaID' => 1, + 'countryen' => 'GERMANY', + 'position' => 1, + 'notice' => '', + 'taxfree' => 0, + 'taxfree_ustid' => 0, + 'taxfree_ustid_checked' => 0, + 'active' => 1, + 'iso3' => 'DEU', + 'display_state_in_registration' => 0, + 'force_state_in_registration' => 0, + 'allow_shipping' => 1, + 'countryarea' => 'deutschland', + ], + 'sState' => [ + 'id' => null, + ], + 'sPayment' => [ + 'id' => 14, + 'name' => 'SwagPaymentPayPalUnifiedGiropay', + 'description' => 'Giropay', + 'template' => '', + 'class' => '', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => 'Logo giropay', + 'debit_percent' => 0.0, + 'surcharge' => 0.0, + 'surchargestring' => '', + 'position' => -95, + 'active' => 1, + 'esdactive' => 0, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => 'PaypalUnifiedApm', + 'pluginID' => 59, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ + ], + 'validation' => [ + ], + ], + 'sDispatch' => [ + 'key' => 10, + 'id' => 10, + 'name' => 'Versandkosten nach Gewicht', + 'description' => 'wenn bspw. ein Artikel das Gewicht von einem Kilo überschreitet wird automatisch auf die Ausweichversandart "Versandkosten nach Gewicht" zurückgegriffen.', + 'calculation' => 1, + 'status_link' => 'hier', + 'attribute' => [ + ], + ], + 'sPayments' => [ + 7 => [ + 'id' => 7, + 'name' => 'SwagPaymentPayPalUnified', + 'description' => 'PayPal', + 'template' => '', + 'class' => '', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => ' + + Logo \'PayPal empfohlen\' + + + + +Bezahlung per PayPal - einfach, schnell und sicher.', + 'debit_percent' => 0.0, + 'surcharge' => 0.0, + 'surchargestring' => '', + 'position' => -100, 'active' => 1, - 'iso3' => 'DEU', - 'display_state_in_registration' => 0, - 'force_state_in_registration' => 0, - 'allow_shipping' => 1, - 'countryarea' => 'deutschland', + 'esdactive' => 0, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => 'PaypalUnifiedV2', + 'pluginID' => 59, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ + ], ], - 'sState' => [ - 'id' => null, + 8 => [ + 'id' => 8, + 'name' => 'SwagPaymentPayPalUnifiedPayUponInvoice', + 'description' => 'Rechnungskauf', + 'template' => '', + 'class' => '', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => '', + 'debit_percent' => 0.0, + 'surcharge' => 0.0, + 'surchargestring' => '', + 'position' => -99, + 'active' => 1, + 'esdactive' => 0, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => 'PaypalUnifiedV2PayUponInvoice', + 'pluginID' => 59, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ + ], ], - 'sPayment' => [ + 14 => [ 'id' => 14, 'name' => 'SwagPaymentPayPalUnifiedGiropay', 'description' => 'Giropay', @@ -480,11 +572,179 @@ 'source' => null, 'mobile_inactive' => 0, 'attributes' => [ - ], - 'validation' => [ - ], + ], ], - 'sDispatch' => [ + 20 => [ + 'id' => 20, + 'name' => 'SwagPaymentPayPalUnifiedSofort', + 'description' => 'Sofort', + 'template' => '', + 'class' => '', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => 'Logo Sofort', + 'debit_percent' => 0.0, + 'surcharge' => 0.0, + 'surchargestring' => '', + 'position' => -89, + 'active' => 1, + 'esdactive' => 0, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => 'PaypalUnifiedApm', + 'pluginID' => 59, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ + ], + ], + 9 => [ + 'id' => 9, + 'name' => 'SwagPaymentPayPalUnifiedAdvancedCreditDebitCard', + 'description' => 'Kredit- oder Debitkarte', + 'template' => '', + 'class' => '', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => 'Bezahlen Sie einfach, schnell und bequem mit Ihrer Kredit- oder Debitkarte', + 'debit_percent' => 0.0, + 'surcharge' => 0.0, + 'surchargestring' => '', + 'position' => -87, + 'active' => 1, + 'esdactive' => 0, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => 'PaypalUnifiedV2AdvancedCreditDebitCard', + 'pluginID' => 59, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ + ], + ], + 10 => [ + 'id' => 10, + 'name' => 'SwagPaymentPayPalUnifiedSepa', + 'description' => 'Lastschrift', + 'template' => '', + 'class' => '', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => 'SEPA Lastschrift\'', + 'debit_percent' => 0.0, + 'surcharge' => 0.0, + 'surchargestring' => '', + 'position' => -86, + 'active' => 1, + 'esdactive' => 0, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => 'PaypalUnifiedV2', + 'pluginID' => 59, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ + ], + ], + 5 => [ + 'id' => 5, + 'name' => 'prepayment', + 'description' => 'Vorkasse', + 'template' => 'prepayment.tpl', + 'class' => 'prepayment.php', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => 'Sie zahlen einfach vorab und erhalten die Ware bequem und günstig bei Zahlungseingang nach Hause geliefert.', + 'debit_percent' => 0.0, + 'surcharge' => 0.0, + 'surchargestring' => '', + 'position' => 1, + 'active' => 1, + 'esdactive' => 0, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => null, + 'pluginID' => null, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ + ], + ], + 3 => [ + 'id' => 3, + 'name' => 'cash', + 'description' => 'Nachnahme', + 'template' => 'cash.tpl', + 'class' => 'cash.php', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => '(zzgl. 2,00 Euro Nachnahmegebühren)', + 'debit_percent' => 0.0, + 'surcharge' => 0.0, + 'surchargestring' => '', + 'position' => 2, + 'active' => 1, + 'esdactive' => 0, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => null, + 'pluginID' => null, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ + ], + ], + 4 => [ + 'id' => 4, + 'name' => 'invoice', + 'description' => 'Rechnung', + 'template' => 'invoice.tpl', + 'class' => 'invoice.php', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => 'Sie zahlen einfach und bequem auf Rechnung. Shopware bietet z.B. auch die Möglichkeit, Rechnung automatisiert erst ab der 2. Bestellung für Kunden zur Verfügung zu stellen, um Zahlungsausfälle zu vermeiden.', + 'debit_percent' => 0.0, + 'surcharge' => 5.0, + 'surchargestring' => '', + 'position' => 3, + 'active' => 1, + 'esdactive' => 1, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => '', + 'pluginID' => null, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ + ], + ], + 6 => [ + 'id' => 6, + 'name' => 'sepa', + 'description' => 'SEPA', + 'template' => 'sepa.tpl', + 'class' => 'sepa', + 'table' => '', + 'hide' => 0, + 'additionaldescription' => 'SEPA Lastschrift', + 'debit_percent' => 0.0, + 'surcharge' => 0.0, + 'surchargestring' => '', + 'position' => 5, + 'active' => 1, + 'esdactive' => 1, + 'embediframe' => '', + 'hideprospect' => 0, + 'action' => '', + 'pluginID' => null, + 'source' => null, + 'mobile_inactive' => 0, + 'attributes' => [ + ], + ], + ], + 'sDispatches' => [ + 10 => [ 'key' => 10, 'id' => 10, 'name' => 'Versandkosten nach Gewicht', @@ -492,5694 +752,5864 @@ 'calculation' => 1, 'status_link' => 'hier', 'attribute' => [ - ], + ], ], - 'sPayments' => [ - 7 => [ - 'id' => 7, - 'name' => 'SwagPaymentPayPalUnified', - 'description' => 'PayPal', - 'template' => '', - 'class' => '', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => ' - - Logo \'PayPal empfohlen\' - - - + ], + 'sBasketProportional' => [ + 'content' => [ + 0 => [ + 'id' => 670, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch "Ibiza"', + 'articleID' => 178, + 'ordernumber' => 'SW10178', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '19,95', + 'netprice' => 16.764705882352999, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:02', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 407, + 'articleDetailId' => 407, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 84, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 0, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 33, + '__s_order_basket_attributes_basketID' => 670, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 178, + 'articleDetailsID' => 407, + 'ordernumber' => 'SW10178', + 'highlight' => false, + 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', + 'description_long' => ' +o decertatio. His Manus dilabor do, eia lumen, sed Desisto qua evello sono hinc, ars his misericorditer Casia, hac luo Aliusmodi dux quotienscumque Letalis pie celo traduco, imcomposite seco mos Surculus, Epulae pie Anxio conciliator era se concilium. Terra quam dicto erro prolecto, quo per incommoditas paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe. -Bezahlung per PayPal - einfach, schnell und sicher.', - 'debit_percent' => 0.0, - 'surcharge' => 0.0, - 'surchargestring' => '', - 'position' => -100, - 'active' => 1, - 'esdactive' => 0, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => 'PaypalUnifiedV2', - 'pluginID' => 59, - 'source' => null, - 'mobile_inactive' => 0, - 'attributes' => [ - ], - ], - 8 => [ - 'id' => 8, - 'name' => 'SwagPaymentPayPalUnifiedPayUponInvoice', - 'description' => 'Rechnungskauf', +', + 'esd' => false, + 'articleName' => 'Strandtuch "Ibiza"', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 84, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-31', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', 'template' => '', - 'class' => '', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => '', - 'debit_percent' => 0.0, - 'surcharge' => 0.0, - 'surchargestring' => '', - 'position' => -99, - 'active' => 1, - 'esdactive' => 0, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => 'PaypalUnifiedV2PayUponInvoice', - 'pluginID' => 59, - 'source' => null, - 'mobile_inactive' => 0, 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 429, + 'articledetailsID' => 407, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], ], - ], - 14 => [ - 'id' => 14, - 'name' => 'SwagPaymentPayPalUnifiedGiropay', - 'description' => 'Giropay', - 'template' => '', - 'class' => '', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => 'Logo giropay', - 'debit_percent' => 0.0, - 'surcharge' => 0.0, - 'surchargestring' => '', - 'position' => -95, - 'active' => 1, - 'esdactive' => 0, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => 'PaypalUnifiedApm', - 'pluginID' => 59, - 'source' => null, - 'mobile_inactive' => 0, - 'attributes' => [ + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], ], - ], - 20 => [ - 'id' => 20, - 'name' => 'SwagPaymentPayPalUnifiedSofort', - 'description' => 'Sofort', - 'template' => '', - 'class' => '', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => 'Logo Sofort', - 'debit_percent' => 0.0, - 'surcharge' => 0.0, - 'surchargestring' => '', - 'position' => -89, - 'active' => 1, - 'esdactive' => 0, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => 'PaypalUnifiedApm', - 'pluginID' => 59, - 'source' => null, - 'mobile_inactive' => 0, - 'attributes' => [ + 'attributes' => [ ], - ], - 9 => [ - 'id' => 9, - 'name' => 'SwagPaymentPayPalUnifiedAdvancedCreditDebitCard', - 'description' => 'Kredit- oder Debitkarte', - 'template' => '', - 'class' => '', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => 'Bezahlen Sie einfach, schnell und bequem mit Ihrer Kredit- oder Debitkarte', - 'debit_percent' => 0.0, - 'surcharge' => 0.0, - 'surchargestring' => '', - 'position' => -87, - 'active' => 1, - 'esdactive' => 0, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => 'PaypalUnifiedV2AdvancedCreditDebitCard', - 'pluginID' => 59, - 'source' => null, - 'mobile_inactive' => 0, - 'attributes' => [ + 'attribute' => [ ], - ], - 10 => [ - 'id' => 10, - 'name' => 'SwagPaymentPayPalUnifiedSepa', - 'description' => 'Lastschrift', - 'template' => '', - 'class' => '', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => 'SEPA Lastschrift\'', - 'debit_percent' => 0.0, - 'surcharge' => 0.0, - 'surchargestring' => '', - 'position' => -86, - 'active' => 1, - 'esdactive' => 0, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => 'PaypalUnifiedV2', - 'pluginID' => 59, - 'source' => null, - 'mobile_inactive' => 0, - 'attributes' => [ + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '19,95', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 19.949999999999999, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], ], - ], - 5 => [ - 'id' => 5, - 'name' => 'prepayment', - 'description' => 'Vorkasse', - 'template' => 'prepayment.tpl', - 'class' => 'prepayment.php', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => 'Sie zahlen einfach vorab und erhalten die Ware bequem und günstig bei Zahlungseingang nach Hause geliefert.', - 'debit_percent' => 0.0, - 'surcharge' => 0.0, - 'surchargestring' => '', - 'position' => 1, - 'active' => 1, - 'esdactive' => 0, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => null, - 'pluginID' => null, - 'source' => null, - 'mobile_inactive' => 0, - 'attributes' => [ + 'attributes' => [ ], - ], - 3 => [ - 'id' => 3, - 'name' => 'cash', - 'description' => 'Nachnahme', - 'template' => 'cash.tpl', - 'class' => 'cash.php', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => '(zzgl. 2,00 Euro Nachnahmegebühren)', - 'debit_percent' => 0.0, - 'surcharge' => 0.0, - 'surchargestring' => '', - 'position' => 2, - 'active' => 1, - 'esdactive' => 0, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => null, - 'pluginID' => null, - 'source' => null, - 'mobile_inactive' => 0, - 'attributes' => [ + 'attribute' => [ ], - ], - 4 => [ - 'id' => 4, - 'name' => 'invoice', - 'description' => 'Rechnung', - 'template' => 'invoice.tpl', - 'class' => 'invoice.php', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => 'Sie zahlen einfach und bequem auf Rechnung. Shopware bietet z.B. auch die Möglichkeit, Rechnung automatisiert erst ab der 2. Bestellung für Kunden zur Verfügung zu stellen, um Zahlungsausfälle zu vermeiden.', - 'debit_percent' => 0.0, - 'surcharge' => 5.0, - 'surchargestring' => '', - 'position' => 3, - 'active' => 1, - 'esdactive' => 1, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => '', - 'pluginID' => null, - 'source' => null, - 'mobile_inactive' => 0, - 'attributes' => [ + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '19,95', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 19.949999999999999, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', ], - 6 => [ - 'id' => 6, - 'name' => 'sepa', - 'description' => 'SEPA', - 'template' => 'sepa.tpl', - 'class' => 'sepa', - 'table' => '', - 'hide' => 0, - 'additionaldescription' => 'SEPA Lastschrift', - 'debit_percent' => 0.0, - 'surcharge' => 0.0, - 'surchargestring' => '', - 'position' => 5, - 'active' => 1, - 'esdactive' => 1, - 'embediframe' => '', - 'hideprospect' => 0, - 'action' => '', - 'pluginID' => null, - 'source' => null, - 'mobile_inactive' => 0, - 'attributes' => [ + 'amount' => '19,95', + 'amountnet' => '16,76', + 'priceNumeric' => 19.949999999999999, + 'amountNumeric' => 19.949999999999999, + 'amountnetNumeric' => 16.764705882352999, + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], ], - ], - ], - 'sDispatches' => [ - 10 => [ - 'key' => 10, - 'id' => 10, - 'name' => 'Versandkosten nach Gewicht', - 'description' => 'wenn bspw. ein Artikel das Gewicht von einem Kilo überschreitet wird automatisch auf die Ausweichversandart "Versandkosten nach Gewicht" zurückgegriffen.', - 'calculation' => 1, - 'status_link' => 'hier', + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 1131, + 'height' => 1698, ], + ], ], - ], - 'sBasketProportional' => [ - 'content' => [ - 0 => [ - 'id' => 670, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch "Ibiza"', - 'articleID' => 178, - 'ordernumber' => 'SW10178', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '19,95', - 'netprice' => 16.764705882352999, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:02', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 407, - 'articleDetailId' => 407, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 84, - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 0, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 33, - '__s_order_basket_attributes_basketID' => 670, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 178, - 'articleDetailsID' => 407, - 'ordernumber' => 'SW10178', - 'highlight' => false, - 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', - 'description_long' => ' -o decertatio. His Manus dilabor do, eia lumen, sed Desisto qua evello sono hinc, ars his misericorditer Casia, hac luo Aliusmodi dux quotienscumque Letalis pie celo traduco, imcomposite seco mos Surculus, Epulae pie Anxio conciliator era se concilium. Terra quam dicto erro prolecto, quo per incommoditas paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe. + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=670', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', + 'tax' => '3,19', + ], + 1 => [ + 'id' => 672, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch in mehreren Farben blau', + 'articleID' => 179, + 'ordernumber' => 'SW10179.1', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '44,99', + 'netprice' => 37.806722689075997, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:09', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 409, + 'articleDetailId' => 409, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 91, + 'suppliernumber' => '', + 'maxpurchase' => 91, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 34, + '__s_order_basket_attributes_basketID' => 672, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 179, + 'articleDetailsID' => 409, + 'ordernumber' => 'SW10179.1', + 'highlight' => true, + 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', + 'description_long' => ' +Eficio uterus vel fugo pes eo ops altor. Me consulo sui voveo ymo Ficus Libero nex modo sui velitatio opportunus, qui cum res termino unde potestas Palmula do donum Chalybs se illius. Pars ars eo labes upilio. Se quin etsi Lac se at, do. Hi per ora lentulus Concino, en, vox se mei Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute. ', - 'esd' => false, - 'articleName' => 'Strandtuch "Ibiza"', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 84, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-31', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 429, - 'articledetailsID' => 407, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '19,95', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 19.949999999999999, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '19,95', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 19.949999999999999, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', + 'esd' => false, + 'articleName' => 'Strandtuch in mehreren Farben', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 91, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => 'blau', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => true, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 431, + 'articledetailsID' => 409, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => false, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'amount' => '19,95', - 'amountnet' => '16,76', - 'priceNumeric' => 19.949999999999999, - 'amountNumeric' => 19.949999999999999, - 'amountnetNumeric' => 16.764705882352999, - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 1131, - 'height' => 1698, - ], - ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=670', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', - 'tax' => '3,19', - ], - 1 => [ - 'id' => 672, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch in mehreren Farben blau', - 'articleID' => 179, - 'ordernumber' => 'SW10179.1', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '44,99', - 'netprice' => 37.806722689075997, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:09', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 409, - 'articleDetailId' => 409, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 91, - 'suppliernumber' => '', - 'maxpurchase' => 91, - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 34, - '__s_order_basket_attributes_basketID' => 672, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 179, - 'articleDetailsID' => 409, - 'ordernumber' => 'SW10179.1', - 'highlight' => true, - 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', - 'description_long' => ' -Eficio uterus vel fugo pes eo ops altor. Me consulo sui voveo ymo Ficus Libero nex modo sui velitatio opportunus, qui cum res termino unde potestas Palmula do donum Chalybs se illius. Pars ars eo labes upilio. Se quin etsi Lac se at, do. Hi per ora lentulus Concino, en, vox se mei Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute. - -', - 'esd' => false, - 'articleName' => 'Strandtuch in mehreren Farben', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 91, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => 'blau', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => true, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 431, - 'articledetailsID' => 409, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => false, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '44,99', - 'pseudoprice' => '0', - 'referenceprice' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 44.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '44,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 44.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.1', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.1', + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'amount' => '44,99', - 'amountnet' => '37,81', - 'priceNumeric' => 44.990000000000002, - 'amountNumeric' => 44.990000000000002, - 'amountnetNumeric' => 37.806722689075997, - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 565, - 'height' => 849, - ], - ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '44,99', + 'pseudoprice' => '0', + 'referenceprice' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 44.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=672', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.1', - 'tax' => '7,18', - ], - 2 => [ - 'id' => 674, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch Stripes für Kinder', - 'articleID' => 177, - 'ordernumber' => 'SW10177', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '34,99', - 'netprice' => 29.403361344537998, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:14', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 406, - 'articleDetailId' => 406, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 32, - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 0, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 35, - '__s_order_basket_attributes_basketID' => 674, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 177, - 'articleDetailsID' => 406, - 'ordernumber' => 'SW10177', - 'highlight' => false, - 'description' => 'Noxa chirographum eo, os, agon os nec lac enucleo his ile pes vos Suppellex, re. Vae libro corium Pul.', - 'description_long' => ' -Ita si ardor laxe eu Cogo arx subaudio. Os, color attero, an. Hi inservio quatenus/quatinus, eu. Pax percunctor, ut. Me Mica. Ne, in plus neo pars ne navale quo Heniis varius, St. Iam vae ne inter Idem devenio parum accredo Neco nam byssus ales an Seu re is, mors vir incrementabiliter hio desisto Noxa chirographum eo, os, agon os nec lac enucleo his ile pes vos Suppellex, re. Vae libro corium Pul. - -', - 'esd' => false, - 'articleName' => 'Strandtuch Stripes für Kinder', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 32, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => [ - 'int' => 13.0, - 'float' => 12.529999999999999, - ], - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 428, - 'articledetailsID' => 406, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '34,99', - 'pseudoprice' => '40,00', - 'referenceprice' => '0', - 'has_pseudoprice' => true, - 'price_numeric' => 34.990000000000002, - 'pseudoprice_numeric' => 40.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 444, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg, http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg, http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg, http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '34,99', - 'pseudoprice' => '40,00', - 'referenceprice' => '0', - 'pseudopricePercent' => [ - 'int' => 13.0, - 'float' => 12.529999999999999, - ], - 'has_pseudoprice' => true, - 'price_numeric' => 34.990000000000002, - 'pseudoprice_numeric' => 40.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10177', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=177', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=177&number=SW10177', + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ ], - 'amount' => '34,99', - 'amountnet' => '29,40', - 'priceNumeric' => 34.990000000000002, - 'amountNumeric' => 34.990000000000002, - 'amountnetNumeric' => 29.403361344537998, - 'image' => [ - 'id' => 444, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg, http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg, http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg, http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', - 0 => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', - 0 => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 848, - 'height' => 566, - ], - ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=177', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=674', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10177', - 'tax' => '5,59', - ], - 3 => [ - 'id' => 676, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch Sunny', - 'articleID' => 175, - 'ordernumber' => 'SW10175', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '59,99', - 'netprice' => 50.411764705882, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:19', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 404, - 'articleDetailId' => 404, + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '44,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 44.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 336, - 'suppliernumber' => '', 'maxpurchase' => '100', 'purchasesteps' => 1, 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 36, - '__s_order_basket_attributes_basketID' => 676, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 175, - 'articleDetailsID' => 404, - 'ordernumber' => 'SW10175', - 'highlight' => true, - 'description' => 'abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s.', - 'description_long' => ' -Draginta pax. At denego Do Loci his simul creta humilitas, Excello, se, sis ne fere Amotio turba excedo se res domito Villa, in, fundo novem, per qua tam Acer cornu. Prex niger qui os an calcar, has illi eu opinor eo Iuvenesco, ne mano se noceo, sto vere to Damno occludo, abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s. + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.1', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.1', + ], + 'amount' => '44,99', + 'amountnet' => '37,81', + 'priceNumeric' => 44.990000000000002, + 'amountNumeric' => 44.990000000000002, + 'amountnetNumeric' => 37.806722689075997, + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 565, + 'height' => 849, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=672', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.1', + 'tax' => '7,18', + ], + 2 => [ + 'id' => 674, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch Stripes für Kinder', + 'articleID' => 177, + 'ordernumber' => 'SW10177', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '34,99', + 'netprice' => 29.403361344537998, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:14', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 406, + 'articleDetailId' => 406, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 32, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 0, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 35, + '__s_order_basket_attributes_basketID' => 674, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 177, + 'articleDetailsID' => 406, + 'ordernumber' => 'SW10177', + 'highlight' => false, + 'description' => 'Noxa chirographum eo, os, agon os nec lac enucleo his ile pes vos Suppellex, re. Vae libro corium Pul.', + 'description_long' => ' +Ita si ardor laxe eu Cogo arx subaudio. Os, color attero, an. Hi inservio quatenus/quatinus, eu. Pax percunctor, ut. Me Mica. Ne, in plus neo pars ne navale quo Heniis varius, St. Iam vae ne inter Idem devenio parum accredo Neco nam byssus ales an Seu re is, mors vir incrementabiliter hio desisto Noxa chirographum eo, os, agon os nec lac enucleo his ile pes vos Suppellex, re. Vae libro corium Pul. ', - 'esd' => false, - 'articleName' => 'Strandtuch Sunny', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 336, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 426, - 'articledetailsID' => 404, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '59,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 59.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 443, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 595, - 'height' => 807, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg, http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg, http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg, http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '59,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 59.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10175', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=175', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=175&number=SW10175', + 'esd' => false, + 'articleName' => 'Strandtuch Stripes für Kinder', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 32, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => [ + 'int' => 13.0, + 'float' => 12.529999999999999, + ], + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 428, + 'articledetailsID' => 406, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'amount' => '59,99', - 'amountnet' => '50,41', - 'priceNumeric' => 59.990000000000002, - 'amountNumeric' => 59.990000000000002, - 'amountnetNumeric' => 50.411764705882, - 'image' => [ - 'id' => 443, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 595, - 'height' => 807, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg, http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg, http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg, http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', - 0 => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', - 0 => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 807, - 'height' => 595, - ], - ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=175', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=676', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10175', - 'tax' => '9,58', - ], - 4 => [ - 'id' => 678, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch Gras-Green', - 'articleID' => 176, - 'ordernumber' => 'SW10176', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '49,99', - 'netprice' => 42.008403361345003, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:24', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 405, - 'articleDetailId' => 405, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 54, - 'suppliernumber' => '', - 'maxpurchase' => 54, - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 37, - '__s_order_basket_attributes_basketID' => 678, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 176, - 'articleDetailsID' => 405, - 'ordernumber' => 'SW10176', - 'highlight' => false, - 'description' => 'abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s.', - 'description_long' => ' -Draginta pax. At denego Do Loci his simul creta humilitas, Excello, se, sis ne fere Amotio turba excedo se res domito Villa, in, fundo novem, per qua tam Acer cornu. Prex niger qui os an calcar, has illi eu opinor eo Iuvenesco, ne mano se noceo, sto vere to Damno occludo, abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s. - -', - 'esd' => false, - 'articleName' => 'Strandtuch Gras-Green', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 54, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 427, - 'articledetailsID' => 405, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '49,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 49.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 441, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg, http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg, http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg, http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '49,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 49.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10176', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=176', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=176&number=SW10176', + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'amount' => '49,99', - 'amountnet' => '42,01', - 'priceNumeric' => 49.990000000000002, - 'amountNumeric' => 49.990000000000002, - 'amountnetNumeric' => 42.008403361345003, - 'image' => [ - 'id' => 441, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg, http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg, http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg, http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', - 0 => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', - 0 => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 565, - 'height' => 849, - ], - ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '34,99', + 'pseudoprice' => '40,00', + 'referenceprice' => '0', + 'has_pseudoprice' => true, + 'price_numeric' => 34.990000000000002, + 'pseudoprice_numeric' => 40.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 444, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg, http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=176', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=678', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10176', - 'tax' => '7,98', - ], - 5 => [ - 'id' => 680, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandkleid Short Red', - 'articleID' => 174, - 'ordernumber' => 'SW10174', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '38,99', - 'netprice' => 32.764705882352999, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:33', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 403, - 'articleDetailId' => 403, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 66, - 'suppliernumber' => '', - 'maxpurchase' => 66, - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 38, - '__s_order_basket_attributes_basketID' => 680, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 174, - 'articleDetailsID' => 403, - 'ordernumber' => 'SW10174', - 'highlight' => false, - 'description' => 'Illo queo Sino sine lea do Ferula emo exorior per dies iam Mollio Res exinde. Si, sis Genero In ter def.', - 'description_long' => ' -Men, juge pie pareo Caelum en nex Accommodo turma, quem optatus crus Idem nam mei hic, te. En repo agna, hac reverto grator via beo Indigeo, iam abhinc hae levo.. Tego, dis no invocatio.Sive infinitas pax St falx hoc multi. Tum sto se post Caetera. Boo, his nam tergo scisco lex puga per Virtus. Illo queo Sino sine lea do Ferula emo exorior per dies iam Mollio Res exinde. Si, sis Genero In ter def. - -', - 'esd' => false, - 'articleName' => 'Strandkleid Short Red', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 66, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 425, - 'articledetailsID' => 403, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '38,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 38.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 440, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg, http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg, http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg, http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '38,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 38.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10174', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=174', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=174&number=SW10174', + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg, http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ ], - 'amount' => '38,99', - 'amountnet' => '32,76', - 'priceNumeric' => 38.990000000000002, - 'amountNumeric' => 38.990000000000002, - 'amountnetNumeric' => 32.764705882352999, - 'image' => [ - 'id' => 440, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg, http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg, http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg, http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', - 0 => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', - 0 => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 848, - 'height' => 566, - ], - ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg, http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=174', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=680', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10174', - 'tax' => '6,23', - ], - 6 => [ - 'id' => 682, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Sommer-Sandale Pink 36', - 'articleID' => 162, - 'ordernumber' => 'SW10162.1', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '23,99', - 'netprice' => 20.159663865546001, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:38', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 380, - 'articleDetailId' => 380, + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '34,99', + 'pseudoprice' => '40,00', + 'referenceprice' => '0', + 'pseudopricePercent' => [ + 'int' => 13.0, + 'float' => 12.529999999999999, + ], + 'has_pseudoprice' => true, + 'price_numeric' => 34.990000000000002, + 'pseudoprice_numeric' => 40.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 7, - 'suppliernumber' => '', - 'maxpurchase' => 7, + 'maxpurchase' => '100', 'purchasesteps' => 1, 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 39, - '__s_order_basket_attributes_basketID' => 682, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 162, - 'articleDetailsID' => 380, - 'ordernumber' => 'SW10162.1', - 'highlight' => false, - 'description' => 'Summa inedicibilis. Prosum Arcus, dux dis Peto sui pro quid ars obviam Valde nec pennatus, pia Culpo Te defero emo se.', - 'description_long' => ' -O algeo sto fama pilo per crystallinus hoc per His. Arx limus orior fessus Dimidium curatio Demergo, humo pro Hi. Citatus stipes gero ac ira quin tractus ut forsit Munio inopportunus Obdormio, te maro iam Pannosa vos obses se fefello peto cado contabesco, ius imbuo, tot ruo ut for Summa inedicibilis. Prosum Arcus, dux dis Peto sui pro quid ars obviam Valde nec pennatus, pia Culpo Te defero emo se. - -', - 'esd' => false, - 'articleName' => 'Sommer-Sandale Pink', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 7, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '36', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => true, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 399, - 'articledetailsID' => 380, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => false, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '23,99', - 'pseudoprice' => '0', - 'referenceprice' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 23.989999999999998, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 428, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 690, - 'height' => 696, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg, http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg, http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg, http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '23,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 23.989999999999998, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10162.1', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=162', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=162&number=SW10162.1', - ], - 'amount' => '23,99', - 'amountnet' => '20,16', - 'priceNumeric' => 23.989999999999998, - 'amountNumeric' => 23.989999999999998, - 'amountnetNumeric' => 20.159663865546001, - 'image' => [ - 'id' => 428, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 690, - 'height' => 696, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg, http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg, http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg, http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', - 0 => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', - 0 => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 696, - 'height' => 690, - ], - ], - ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=162', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=682', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10162.1', - 'tax' => '3,83', + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10177', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=177', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=177&number=SW10177', ], - 'Amount' => '272,89', - 'AmountNet' => '229,31', - 'Quantity' => 7, - 'AmountNumeric' => 347.89000000000004, - 'AmountNetNumeric' => 292.33999999999997, - 'AmountWithTax' => '0', - 'AmountWithTaxNumeric' => 0.0, - 'sCurrencyId' => 1, - 'sCurrencyName' => 'EUR', - 'sCurrencyFactor' => 1.0, - 'sShippingcostsWithTax' => 75.0, - 'sShippingcostsNet' => 63.030000000000001, - 'sShippingcostsTax' => 19.0, - 'sShippingcostsDifference' => 9727.1100000000006, - 'sTaxRates' => [ - '19.00' => 55.549999999999997, + 'amount' => '34,99', + 'amountnet' => '29,40', + 'priceNumeric' => 34.990000000000002, + 'amountNumeric' => 34.990000000000002, + 'amountnetNumeric' => 29.403361344537998, + 'image' => [ + 'id' => 444, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg, http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg, http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg, http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', + 0 => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', + 0 => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 848, + 'height' => 566, + ], + ], ], - 'sShippingcosts' => 75.0, - 'sAmount' => 347.89000000000004, - 'sAmountTax' => 55.549999999999997, - ], - 'sBasket' => [ - 'content' => [ - 0 => [ - 'id' => 670, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch "Ibiza"', - 'articleID' => 178, - 'ordernumber' => 'SW10178', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '19,95', - 'netprice' => 16.764705882352999, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:02', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 407, - 'articleDetailId' => 407, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 84, - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 0, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 33, - '__s_order_basket_attributes_basketID' => 670, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 178, - 'articleDetailsID' => 407, - 'ordernumber' => 'SW10178', - 'highlight' => false, - 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', - 'description_long' => ' -o decertatio. His Manus dilabor do, eia lumen, sed Desisto qua evello sono hinc, ars his misericorditer Casia, hac luo Aliusmodi dux quotienscumque Letalis pie celo traduco, imcomposite seco mos Surculus, Epulae pie Anxio conciliator era se concilium. Terra quam dicto erro prolecto, quo per incommoditas paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe. + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=177', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=674', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10177', + 'tax' => '5,59', + ], + 3 => [ + 'id' => 676, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch Sunny', + 'articleID' => 175, + 'ordernumber' => 'SW10175', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '59,99', + 'netprice' => 50.411764705882, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:19', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 404, + 'articleDetailId' => 404, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 336, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 36, + '__s_order_basket_attributes_basketID' => 676, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 175, + 'articleDetailsID' => 404, + 'ordernumber' => 'SW10175', + 'highlight' => true, + 'description' => 'abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s.', + 'description_long' => ' +Draginta pax. At denego Do Loci his simul creta humilitas, Excello, se, sis ne fere Amotio turba excedo se res domito Villa, in, fundo novem, per qua tam Acer cornu. Prex niger qui os an calcar, has illi eu opinor eo Iuvenesco, ne mano se noceo, sto vere to Damno occludo, abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s. ', - 'esd' => false, - 'articleName' => 'Strandtuch "Ibiza"', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 84, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-31', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 429, - 'articledetailsID' => 407, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '19,95', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 19.949999999999999, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '19,95', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 19.949999999999999, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', + 'esd' => false, + 'articleName' => 'Strandtuch Sunny', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 336, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 426, + 'articledetailsID' => 404, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'amount' => '19,95', - 'amountnet' => '16,76', - 'priceNumeric' => 19.949999999999999, - 'amountNumeric' => 19.949999999999999, - 'amountnetNumeric' => 16.764705882352999, - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 1131, - 'height' => 1698, - ], - ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=670', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', - 'tax' => '3,19', - ], - 1 => [ - 'id' => 672, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch in mehreren Farben blau', - 'articleID' => 179, - 'ordernumber' => 'SW10179.1', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '44,99', - 'netprice' => 37.806722689075997, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:09', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 409, - 'articleDetailId' => 409, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 91, - 'suppliernumber' => '', - 'maxpurchase' => 91, - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 34, - '__s_order_basket_attributes_basketID' => 672, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 179, - 'articleDetailsID' => 409, - 'ordernumber' => 'SW10179.1', - 'highlight' => true, - 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', - 'description_long' => ' -Eficio uterus vel fugo pes eo ops altor. Me consulo sui voveo ymo Ficus Libero nex modo sui velitatio opportunus, qui cum res termino unde potestas Palmula do donum Chalybs se illius. Pars ars eo labes upilio. Se quin etsi Lac se at, do. Hi per ora lentulus Concino, en, vox se mei Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute. - -', - 'esd' => false, - 'articleName' => 'Strandtuch in mehreren Farben', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 91, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => 'blau', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => true, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 431, - 'articledetailsID' => 409, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => false, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '44,99', - 'pseudoprice' => '0', - 'referenceprice' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 44.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '44,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 44.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.1', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.1', + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'amount' => '44,99', - 'amountnet' => '37,81', - 'priceNumeric' => 44.990000000000002, - 'amountNumeric' => 44.990000000000002, - 'amountnetNumeric' => 37.806722689075997, - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 565, - 'height' => 849, - ], - ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '59,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 59.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 443, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 595, + 'height' => 807, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg, http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=672', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.1', - 'tax' => '7,18', - ], - 2 => [ - 'id' => 674, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch Stripes für Kinder', - 'articleID' => 177, - 'ordernumber' => 'SW10177', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '34,99', - 'netprice' => 29.403361344537998, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:14', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 406, - 'articleDetailId' => 406, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 32, - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 0, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 35, - '__s_order_basket_attributes_basketID' => 674, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 177, - 'articleDetailsID' => 406, - 'ordernumber' => 'SW10177', - 'highlight' => false, - 'description' => 'Noxa chirographum eo, os, agon os nec lac enucleo his ile pes vos Suppellex, re. Vae libro corium Pul.', - 'description_long' => ' -Ita si ardor laxe eu Cogo arx subaudio. Os, color attero, an. Hi inservio quatenus/quatinus, eu. Pax percunctor, ut. Me Mica. Ne, in plus neo pars ne navale quo Heniis varius, St. Iam vae ne inter Idem devenio parum accredo Neco nam byssus ales an Seu re is, mors vir incrementabiliter hio desisto Noxa chirographum eo, os, agon os nec lac enucleo his ile pes vos Suppellex, re. Vae libro corium Pul. - -', - 'esd' => false, - 'articleName' => 'Strandtuch Stripes für Kinder', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 32, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => [ - 'int' => 13.0, - 'float' => 12.529999999999999, - ], - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 428, - 'articledetailsID' => 406, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '34,99', - 'pseudoprice' => '40,00', - 'referenceprice' => '0', - 'has_pseudoprice' => true, - 'price_numeric' => 34.990000000000002, - 'pseudoprice_numeric' => 40.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 444, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg, http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg, http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg, http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '34,99', - 'pseudoprice' => '40,00', - 'referenceprice' => '0', - 'pseudopricePercent' => [ - 'int' => 13.0, - 'float' => 12.529999999999999, - ], - 'has_pseudoprice' => true, - 'price_numeric' => 34.990000000000002, - 'pseudoprice_numeric' => 40.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10177', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=177', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=177&number=SW10177', + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg, http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ ], - 'amount' => '34,99', - 'amountnet' => '29,40', - 'priceNumeric' => 34.990000000000002, - 'amountNumeric' => 34.990000000000002, - 'amountnetNumeric' => 29.403361344537998, - 'image' => [ - 'id' => 444, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg, http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg, http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg, http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', - 0 => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', - 0 => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 848, - 'height' => 566, - ], - ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg, http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=177', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=674', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10177', - 'tax' => '5,59', - ], - 3 => [ - 'id' => 676, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch Sunny', - 'articleID' => 175, - 'ordernumber' => 'SW10175', - 'shippingfree' => 0, - 'quantity' => 1, + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, 'price' => '59,99', - 'netprice' => 50.411764705882, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:19', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 404, - 'articleDetailId' => 404, + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 59.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 336, - 'suppliernumber' => '', 'maxpurchase' => '100', 'purchasesteps' => 1, 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 36, - '__s_order_basket_attributes_basketID' => 676, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 175, - 'articleDetailsID' => 404, - 'ordernumber' => 'SW10175', - 'highlight' => true, - 'description' => 'abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s.', - 'description_long' => ' + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10175', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=175', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=175&number=SW10175', + ], + 'amount' => '59,99', + 'amountnet' => '50,41', + 'priceNumeric' => 59.990000000000002, + 'amountNumeric' => 59.990000000000002, + 'amountnetNumeric' => 50.411764705882, + 'image' => [ + 'id' => 443, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 595, + 'height' => 807, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg, http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg, http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg, http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', + 0 => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', + 0 => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 807, + 'height' => 595, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=175', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=676', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10175', + 'tax' => '9,58', + ], + 4 => [ + 'id' => 678, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch Gras-Green', + 'articleID' => 176, + 'ordernumber' => 'SW10176', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '49,99', + 'netprice' => 42.008403361345003, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:24', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 405, + 'articleDetailId' => 405, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 54, + 'suppliernumber' => '', + 'maxpurchase' => 54, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 37, + '__s_order_basket_attributes_basketID' => 678, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 176, + 'articleDetailsID' => 405, + 'ordernumber' => 'SW10176', + 'highlight' => false, + 'description' => 'abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s.', + 'description_long' => ' Draginta pax. At denego Do Loci his simul creta humilitas, Excello, se, sis ne fere Amotio turba excedo se res domito Villa, in, fundo novem, per qua tam Acer cornu. Prex niger qui os an calcar, has illi eu opinor eo Iuvenesco, ne mano se noceo, sto vere to Damno occludo, abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s. ', - 'esd' => false, - 'articleName' => 'Strandtuch Sunny', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 336, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 426, - 'articledetailsID' => 404, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '59,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 59.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 443, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 595, - 'height' => 807, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg, http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg, http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg, http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '59,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 59.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10175', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=175', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=175&number=SW10175', + 'esd' => false, + 'articleName' => 'Strandtuch Gras-Green', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 54, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 427, + 'articledetailsID' => 405, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'amount' => '59,99', - 'amountnet' => '50,41', - 'priceNumeric' => 59.990000000000002, - 'amountNumeric' => 59.990000000000002, - 'amountnetNumeric' => 50.411764705882, - 'image' => [ - 'id' => 443, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 595, - 'height' => 807, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg, http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg, http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg, http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', - 0 => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', - 0 => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 807, - 'height' => 595, - ], - ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '49,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 49.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 441, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg, http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg, http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg, http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=175', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=676', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10175', - 'tax' => '9,58', - ], - 4 => [ - 'id' => 678, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch Gras-Green', - 'articleID' => 176, - 'ordernumber' => 'SW10176', - 'shippingfree' => 0, - 'quantity' => 1, + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, 'price' => '49,99', - 'netprice' => 42.008403361345003, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:24', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 405, - 'articleDetailId' => 405, + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 49.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 54, - 'suppliernumber' => '', - 'maxpurchase' => 54, + 'maxpurchase' => '100', 'purchasesteps' => 1, 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 37, - '__s_order_basket_attributes_basketID' => 678, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 176, - 'articleDetailsID' => 405, - 'ordernumber' => 'SW10176', - 'highlight' => false, - 'description' => 'abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s.', - 'description_long' => ' -Draginta pax. At denego Do Loci his simul creta humilitas, Excello, se, sis ne fere Amotio turba excedo se res domito Villa, in, fundo novem, per qua tam Acer cornu. Prex niger qui os an calcar, has illi eu opinor eo Iuvenesco, ne mano se noceo, sto vere to Damno occludo, abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s. + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10176', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=176', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=176&number=SW10176', + ], + 'amount' => '49,99', + 'amountnet' => '42,01', + 'priceNumeric' => 49.990000000000002, + 'amountNumeric' => 49.990000000000002, + 'amountnetNumeric' => 42.008403361345003, + 'image' => [ + 'id' => 441, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg, http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg, http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg, http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', + 0 => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', + 0 => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 565, + 'height' => 849, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=176', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=678', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10176', + 'tax' => '7,98', + ], + 5 => [ + 'id' => 680, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandkleid Short Red', + 'articleID' => 174, + 'ordernumber' => 'SW10174', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '38,99', + 'netprice' => 32.764705882352999, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:33', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 403, + 'articleDetailId' => 403, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 66, + 'suppliernumber' => '', + 'maxpurchase' => 66, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 38, + '__s_order_basket_attributes_basketID' => 680, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 174, + 'articleDetailsID' => 403, + 'ordernumber' => 'SW10174', + 'highlight' => false, + 'description' => 'Illo queo Sino sine lea do Ferula emo exorior per dies iam Mollio Res exinde. Si, sis Genero In ter def.', + 'description_long' => ' +Men, juge pie pareo Caelum en nex Accommodo turma, quem optatus crus Idem nam mei hic, te. En repo agna, hac reverto grator via beo Indigeo, iam abhinc hae levo.. Tego, dis no invocatio.Sive infinitas pax St falx hoc multi. Tum sto se post Caetera. Boo, his nam tergo scisco lex puga per Virtus. Illo queo Sino sine lea do Ferula emo exorior per dies iam Mollio Res exinde. Si, sis Genero In ter def. ', - 'esd' => false, - 'articleName' => 'Strandtuch Gras-Green', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 54, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 427, - 'articledetailsID' => 405, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '49,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 49.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 441, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg, http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg, http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg, http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '49,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 49.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10176', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=176', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=176&number=SW10176', + 'esd' => false, + 'articleName' => 'Strandkleid Short Red', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 66, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 425, + 'articledetailsID' => 403, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '38,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 38.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 440, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg, http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg, http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ ], - 'amount' => '49,99', - 'amountnet' => '42,01', - 'priceNumeric' => 49.990000000000002, - 'amountNumeric' => 49.990000000000002, - 'amountnetNumeric' => 42.008403361345003, - 'image' => [ - 'id' => 441, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg, http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg, http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg, http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', - 0 => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', - 0 => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 565, - 'height' => 849, - ], - ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg, http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=176', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=678', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10176', - 'tax' => '7,98', - ], - 5 => [ - 'id' => 680, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandkleid Short Red', - 'articleID' => 174, - 'ordernumber' => 'SW10174', - 'shippingfree' => 0, - 'quantity' => 1, + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, 'price' => '38,99', - 'netprice' => 32.764705882352999, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:33', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 403, - 'articleDetailId' => 403, + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 38.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 66, - 'suppliernumber' => '', - 'maxpurchase' => 66, + 'maxpurchase' => '100', 'purchasesteps' => 1, 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 38, - '__s_order_basket_attributes_basketID' => 680, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 174, - 'articleDetailsID' => 403, - 'ordernumber' => 'SW10174', - 'highlight' => false, - 'description' => 'Illo queo Sino sine lea do Ferula emo exorior per dies iam Mollio Res exinde. Si, sis Genero In ter def.', - 'description_long' => ' -Men, juge pie pareo Caelum en nex Accommodo turma, quem optatus crus Idem nam mei hic, te. En repo agna, hac reverto grator via beo Indigeo, iam abhinc hae levo.. Tego, dis no invocatio.Sive infinitas pax St falx hoc multi. Tum sto se post Caetera. Boo, his nam tergo scisco lex puga per Virtus. Illo queo Sino sine lea do Ferula emo exorior per dies iam Mollio Res exinde. Si, sis Genero In ter def. + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10174', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=174', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=174&number=SW10174', + ], + 'amount' => '38,99', + 'amountnet' => '32,76', + 'priceNumeric' => 38.990000000000002, + 'amountNumeric' => 38.990000000000002, + 'amountnetNumeric' => 32.764705882352999, + 'image' => [ + 'id' => 440, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg, http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg, http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg, http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', + 0 => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', + 0 => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 848, + 'height' => 566, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=174', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=680', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10174', + 'tax' => '6,23', + ], + 6 => [ + 'id' => 682, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Sommer-Sandale Pink 36', + 'articleID' => 162, + 'ordernumber' => 'SW10162.1', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '23,99', + 'netprice' => 20.159663865546001, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:38', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 380, + 'articleDetailId' => 380, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 7, + 'suppliernumber' => '', + 'maxpurchase' => 7, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 39, + '__s_order_basket_attributes_basketID' => 682, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 162, + 'articleDetailsID' => 380, + 'ordernumber' => 'SW10162.1', + 'highlight' => false, + 'description' => 'Summa inedicibilis. Prosum Arcus, dux dis Peto sui pro quid ars obviam Valde nec pennatus, pia Culpo Te defero emo se.', + 'description_long' => ' +O algeo sto fama pilo per crystallinus hoc per His. Arx limus orior fessus Dimidium curatio Demergo, humo pro Hi. Citatus stipes gero ac ira quin tractus ut forsit Munio inopportunus Obdormio, te maro iam Pannosa vos obses se fefello peto cado contabesco, ius imbuo, tot ruo ut for Summa inedicibilis. Prosum Arcus, dux dis Peto sui pro quid ars obviam Valde nec pennatus, pia Culpo Te defero emo se. ', - 'esd' => false, - 'articleName' => 'Strandkleid Short Red', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 66, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 425, - 'articledetailsID' => 403, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '38,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 38.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 440, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg, http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg, http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg, http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '38,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 38.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10174', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=174', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=174&number=SW10174', + 'esd' => false, + 'articleName' => 'Sommer-Sandale Pink', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 7, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '36', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => true, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 399, + 'articledetailsID' => 380, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => false, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'amount' => '38,99', - 'amountnet' => '32,76', - 'priceNumeric' => 38.990000000000002, - 'amountNumeric' => 38.990000000000002, - 'amountnetNumeric' => 32.764705882352999, - 'image' => [ - 'id' => 440, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg, http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg, http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg, http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', - 0 => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', - 0 => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 848, - 'height' => 566, - ], - ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '23,99', + 'pseudoprice' => '0', + 'referenceprice' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 23.989999999999998, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 428, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 690, + 'height' => 696, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg, http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=174', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=680', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10174', - 'tax' => '6,23', - ], - 6 => [ - 'id' => 682, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Sommer-Sandale Pink 36', - 'articleID' => 162, - 'ordernumber' => 'SW10162.1', - 'shippingfree' => 0, - 'quantity' => 1, + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg, http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg, http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, 'price' => '23,99', - 'netprice' => 20.159663865546001, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:38', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 23.989999999999998, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, 'packunit' => '', - 'mainDetailId' => 380, - 'articleDetailId' => 380, + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10162.1', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=162', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=162&number=SW10162.1', + ], + 'amount' => '23,99', + 'amountnet' => '20,16', + 'priceNumeric' => 23.989999999999998, + 'amountNumeric' => 23.989999999999998, + 'amountnetNumeric' => 20.159663865546001, + 'image' => [ + 'id' => 428, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 690, + 'height' => 696, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg, http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg, http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg, http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', + 0 => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', + 0 => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 696, + 'height' => 690, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=162', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=682', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10162.1', + 'tax' => '3,83', + ], + ], + 'Amount' => '272,89', + 'AmountNet' => '229,31', + 'Quantity' => 7, + 'AmountNumeric' => 347.89000000000004, + 'AmountNetNumeric' => 292.33999999999997, + 'AmountWithTax' => '0', + 'AmountWithTaxNumeric' => 0.0, + 'sCurrencyId' => 1, + 'sCurrencyName' => 'EUR', + 'sCurrencyFactor' => 1.0, + 'sShippingcostsWithTax' => 75.0, + 'sShippingcostsNet' => 63.030000000000001, + 'sShippingcostsTax' => 19.0, + 'sShippingcostsDifference' => 9727.1100000000006, + 'sTaxRates' => [ + '19.00' => 55.549999999999997, + ], + 'sShippingcosts' => 75.0, + 'sAmount' => 347.89000000000004, + 'sAmountTax' => 55.549999999999997, + ], + 'sBasket' => [ + 'content' => [ + 0 => [ + 'id' => 670, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch "Ibiza"', + 'articleID' => 178, + 'ordernumber' => 'SW10178', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '19,95', + 'netprice' => 16.764705882352999, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:02', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 407, + 'articleDetailId' => 407, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 84, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 0, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 33, + '__s_order_basket_attributes_basketID' => 670, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 178, + 'articleDetailsID' => 407, + 'ordernumber' => 'SW10178', + 'highlight' => false, + 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', + 'description_long' => ' +o decertatio. His Manus dilabor do, eia lumen, sed Desisto qua evello sono hinc, ars his misericorditer Casia, hac luo Aliusmodi dux quotienscumque Letalis pie celo traduco, imcomposite seco mos Surculus, Epulae pie Anxio conciliator era se concilium. Terra quam dicto erro prolecto, quo per incommoditas paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe. + +', + 'esd' => false, + 'articleName' => 'Strandtuch "Ibiza"', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 84, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-31', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 429, + 'articledetailsID' => 407, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '19,95', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 19.949999999999999, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '19,95', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 19.949999999999999, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 7, - 'suppliernumber' => '', - 'maxpurchase' => 7, + 'maxpurchase' => '100', 'purchasesteps' => 1, 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 39, - '__s_order_basket_attributes_basketID' => 682, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 162, - 'articleDetailsID' => 380, - 'ordernumber' => 'SW10162.1', - 'highlight' => false, - 'description' => 'Summa inedicibilis. Prosum Arcus, dux dis Peto sui pro quid ars obviam Valde nec pennatus, pia Culpo Te defero emo se.', - 'description_long' => ' -O algeo sto fama pilo per crystallinus hoc per His. Arx limus orior fessus Dimidium curatio Demergo, humo pro Hi. Citatus stipes gero ac ira quin tractus ut forsit Munio inopportunus Obdormio, te maro iam Pannosa vos obses se fefello peto cado contabesco, ius imbuo, tot ruo ut for Summa inedicibilis. Prosum Arcus, dux dis Peto sui pro quid ars obviam Valde nec pennatus, pia Culpo Te defero emo se. + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', + ], + 'amount' => '19,95', + 'amountnet' => '16,76', + 'priceNumeric' => 19.949999999999999, + 'amountNumeric' => 19.949999999999999, + 'amountnetNumeric' => 16.764705882352999, + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 1131, + 'height' => 1698, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=670', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', + 'tax' => '3,19', + ], + 1 => [ + 'id' => 672, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch in mehreren Farben blau', + 'articleID' => 179, + 'ordernumber' => 'SW10179.1', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '44,99', + 'netprice' => 37.806722689075997, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:09', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 409, + 'articleDetailId' => 409, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 91, + 'suppliernumber' => '', + 'maxpurchase' => 91, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 34, + '__s_order_basket_attributes_basketID' => 672, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 179, + 'articleDetailsID' => 409, + 'ordernumber' => 'SW10179.1', + 'highlight' => true, + 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', + 'description_long' => ' +Eficio uterus vel fugo pes eo ops altor. Me consulo sui voveo ymo Ficus Libero nex modo sui velitatio opportunus, qui cum res termino unde potestas Palmula do donum Chalybs se illius. Pars ars eo labes upilio. Se quin etsi Lac se at, do. Hi per ora lentulus Concino, en, vox se mei Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute. ', - 'esd' => false, - 'articleName' => 'Sommer-Sandale Pink', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 7, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '36', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => true, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 399, - 'articledetailsID' => 380, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => false, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '23,99', - 'pseudoprice' => '0', - 'referenceprice' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 23.989999999999998, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 428, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 690, - 'height' => 696, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg, http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg, http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg, http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '23,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 23.989999999999998, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10162.1', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=162', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=162&number=SW10162.1', + 'esd' => false, + 'articleName' => 'Strandtuch in mehreren Farben', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 91, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => 'blau', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => true, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 431, + 'articledetailsID' => 409, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => false, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '44,99', + 'pseudoprice' => '0', + 'referenceprice' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 44.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'amount' => '23,99', - 'amountnet' => '20,16', - 'priceNumeric' => 23.989999999999998, - 'amountNumeric' => 23.989999999999998, - 'amountnetNumeric' => 20.159663865546001, - 'image' => [ - 'id' => 428, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 690, - 'height' => 696, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg, http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg, http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg, http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', - 0 => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', - 0 => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 696, - 'height' => 690, - ], - ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=162', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=682', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10162.1', - 'tax' => '3,83', + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '44,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 44.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.1', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.1', + ], + 'amount' => '44,99', + 'amountnet' => '37,81', + 'priceNumeric' => 44.990000000000002, + 'amountNumeric' => 44.990000000000002, + 'amountnetNumeric' => 37.806722689075997, + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 565, + 'height' => 849, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=672', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.1', + 'tax' => '7,18', + ], + 2 => [ + 'id' => 674, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch Stripes für Kinder', + 'articleID' => 177, + 'ordernumber' => 'SW10177', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '34,99', + 'netprice' => 29.403361344537998, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:14', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 406, + 'articleDetailId' => 406, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 32, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 0, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 35, + '__s_order_basket_attributes_basketID' => 674, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 177, + 'articleDetailsID' => 406, + 'ordernumber' => 'SW10177', + 'highlight' => false, + 'description' => 'Noxa chirographum eo, os, agon os nec lac enucleo his ile pes vos Suppellex, re. Vae libro corium Pul.', + 'description_long' => ' +Ita si ardor laxe eu Cogo arx subaudio. Os, color attero, an. Hi inservio quatenus/quatinus, eu. Pax percunctor, ut. Me Mica. Ne, in plus neo pars ne navale quo Heniis varius, St. Iam vae ne inter Idem devenio parum accredo Neco nam byssus ales an Seu re is, mors vir incrementabiliter hio desisto Noxa chirographum eo, os, agon os nec lac enucleo his ile pes vos Suppellex, re. Vae libro corium Pul. + +', + 'esd' => false, + 'articleName' => 'Strandtuch Stripes für Kinder', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 32, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => [ + 'int' => 13.0, + 'float' => 12.529999999999999, + ], + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 428, + 'articledetailsID' => 406, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '34,99', + 'pseudoprice' => '40,00', + 'referenceprice' => '0', + 'has_pseudoprice' => true, + 'price_numeric' => 34.990000000000002, + 'pseudoprice_numeric' => 40.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 444, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg, http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg, http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg, http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '34,99', + 'pseudoprice' => '40,00', + 'referenceprice' => '0', + 'pseudopricePercent' => [ + 'int' => 13.0, + 'float' => 12.529999999999999, + ], + 'has_pseudoprice' => true, + 'price_numeric' => 34.990000000000002, + 'pseudoprice_numeric' => 40.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10177', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=177', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=177&number=SW10177', + ], + 'amount' => '34,99', + 'amountnet' => '29,40', + 'priceNumeric' => 34.990000000000002, + 'amountNumeric' => 34.990000000000002, + 'amountnetNumeric' => 29.403361344537998, + 'image' => [ + 'id' => 444, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg, http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg, http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg, http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', + 0 => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', + 0 => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 848, + 'height' => 566, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=177', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=674', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10177', + 'tax' => '5,59', + ], + 3 => [ + 'id' => 676, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch Sunny', + 'articleID' => 175, + 'ordernumber' => 'SW10175', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '59,99', + 'netprice' => 50.411764705882, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:19', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 404, + 'articleDetailId' => 404, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 336, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 36, + '__s_order_basket_attributes_basketID' => 676, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 175, + 'articleDetailsID' => 404, + 'ordernumber' => 'SW10175', + 'highlight' => true, + 'description' => 'abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s.', + 'description_long' => ' +Draginta pax. At denego Do Loci his simul creta humilitas, Excello, se, sis ne fere Amotio turba excedo se res domito Villa, in, fundo novem, per qua tam Acer cornu. Prex niger qui os an calcar, has illi eu opinor eo Iuvenesco, ne mano se noceo, sto vere to Damno occludo, abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s. + +', + 'esd' => false, + 'articleName' => 'Strandtuch Sunny', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 336, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 426, + 'articledetailsID' => 404, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '59,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 59.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 443, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 595, + 'height' => 807, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg, http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg, http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg, http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '59,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 59.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10175', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=175', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=175&number=SW10175', + ], + 'amount' => '59,99', + 'amountnet' => '50,41', + 'priceNumeric' => 59.990000000000002, + 'amountNumeric' => 59.990000000000002, + 'amountnetNumeric' => 50.411764705882, + 'image' => [ + 'id' => 443, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 595, + 'height' => 807, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg, http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg, http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg, http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', + 0 => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', + 0 => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 807, + 'height' => 595, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=175', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=676', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10175', + 'tax' => '9,58', + ], + 4 => [ + 'id' => 678, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch Gras-Green', + 'articleID' => 176, + 'ordernumber' => 'SW10176', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '49,99', + 'netprice' => 42.008403361345003, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:24', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 405, + 'articleDetailId' => 405, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 54, + 'suppliernumber' => '', + 'maxpurchase' => 54, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 37, + '__s_order_basket_attributes_basketID' => 678, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 176, + 'articleDetailsID' => 405, + 'ordernumber' => 'SW10176', + 'highlight' => false, + 'description' => 'abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s.', + 'description_long' => ' +Draginta pax. At denego Do Loci his simul creta humilitas, Excello, se, sis ne fere Amotio turba excedo se res domito Villa, in, fundo novem, per qua tam Acer cornu. Prex niger qui os an calcar, has illi eu opinor eo Iuvenesco, ne mano se noceo, sto vere to Damno occludo, abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s. + +', + 'esd' => false, + 'articleName' => 'Strandtuch Gras-Green', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 54, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 427, + 'articledetailsID' => 405, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '49,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 49.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 441, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg, http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg, http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg, http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '49,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 49.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10176', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=176', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=176&number=SW10176', + ], + 'amount' => '49,99', + 'amountnet' => '42,01', + 'priceNumeric' => 49.990000000000002, + 'amountNumeric' => 49.990000000000002, + 'amountnetNumeric' => 42.008403361345003, + 'image' => [ + 'id' => 441, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg, http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg, http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg, http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', + 0 => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', + 0 => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 565, + 'height' => 849, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=176', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=678', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10176', + 'tax' => '7,98', + ], + 5 => [ + 'id' => 680, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandkleid Short Red', + 'articleID' => 174, + 'ordernumber' => 'SW10174', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '38,99', + 'netprice' => 32.764705882352999, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:33', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 403, + 'articleDetailId' => 403, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 66, + 'suppliernumber' => '', + 'maxpurchase' => 66, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 38, + '__s_order_basket_attributes_basketID' => 680, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 174, + 'articleDetailsID' => 403, + 'ordernumber' => 'SW10174', + 'highlight' => false, + 'description' => 'Illo queo Sino sine lea do Ferula emo exorior per dies iam Mollio Res exinde. Si, sis Genero In ter def.', + 'description_long' => ' +Men, juge pie pareo Caelum en nex Accommodo turma, quem optatus crus Idem nam mei hic, te. En repo agna, hac reverto grator via beo Indigeo, iam abhinc hae levo.. Tego, dis no invocatio.Sive infinitas pax St falx hoc multi. Tum sto se post Caetera. Boo, his nam tergo scisco lex puga per Virtus. Illo queo Sino sine lea do Ferula emo exorior per dies iam Mollio Res exinde. Si, sis Genero In ter def. + +', + 'esd' => false, + 'articleName' => 'Strandkleid Short Red', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 66, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 425, + 'articledetailsID' => 403, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '38,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 38.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 440, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg, http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg, http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg, http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '38,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 38.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10174', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=174', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=174&number=SW10174', + ], + 'amount' => '38,99', + 'amountnet' => '32,76', + 'priceNumeric' => 38.990000000000002, + 'amountNumeric' => 38.990000000000002, + 'amountnetNumeric' => 32.764705882352999, + 'image' => [ + 'id' => 440, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg, http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg, http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg, http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', + 0 => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', + 0 => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 848, + 'height' => 566, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=174', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=680', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10174', + 'tax' => '6,23', + ], + 6 => [ + 'id' => 682, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Sommer-Sandale Pink 36', + 'articleID' => 162, + 'ordernumber' => 'SW10162.1', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '23,99', + 'netprice' => 20.159663865546001, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:38', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 380, + 'articleDetailId' => 380, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 7, + 'suppliernumber' => '', + 'maxpurchase' => 7, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 39, + '__s_order_basket_attributes_basketID' => 682, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 162, + 'articleDetailsID' => 380, + 'ordernumber' => 'SW10162.1', + 'highlight' => false, + 'description' => 'Summa inedicibilis. Prosum Arcus, dux dis Peto sui pro quid ars obviam Valde nec pennatus, pia Culpo Te defero emo se.', + 'description_long' => ' +O algeo sto fama pilo per crystallinus hoc per His. Arx limus orior fessus Dimidium curatio Demergo, humo pro Hi. Citatus stipes gero ac ira quin tractus ut forsit Munio inopportunus Obdormio, te maro iam Pannosa vos obses se fefello peto cado contabesco, ius imbuo, tot ruo ut for Summa inedicibilis. Prosum Arcus, dux dis Peto sui pro quid ars obviam Valde nec pennatus, pia Culpo Te defero emo se. + +', + 'esd' => false, + 'articleName' => 'Sommer-Sandale Pink', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 7, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '36', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => true, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 399, + 'articledetailsID' => 380, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => false, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '23,99', + 'pseudoprice' => '0', + 'referenceprice' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 23.989999999999998, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 428, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 690, + 'height' => 696, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg, http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg, http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg, http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '23,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 23.989999999999998, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10162.1', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=162', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=162&number=SW10162.1', + ], + 'amount' => '23,99', + 'amountnet' => '20,16', + 'priceNumeric' => 23.989999999999998, + 'amountNumeric' => 23.989999999999998, + 'amountnetNumeric' => 20.159663865546001, + 'image' => [ + 'id' => 428, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 690, + 'height' => 696, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg, http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg, http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg, http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', + 0 => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', + 0 => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 696, + 'height' => 690, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=162', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=682', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10162.1', + 'tax' => '3,83', + ], + ], + 'Amount' => '272,89', + 'AmountNet' => '229,31', + 'Quantity' => 7, + 'AmountNumeric' => 347.89000000000004, + 'AmountNetNumeric' => 292.33999999999997, + 'AmountWithTax' => '0', + 'AmountWithTaxNumeric' => 0.0, + 'sCurrencyId' => 1, + 'sCurrencyName' => 'EUR', + 'sCurrencyFactor' => 1.0, + 'sShippingcostsWithTax' => 75.0, + 'sShippingcostsNet' => 63.030000000000001, + 'sShippingcostsTax' => 19.0, + 'sShippingcostsDifference' => 9727.1100000000006, + 'sTaxRates' => [ + '19.00' => 55.549999999999997, + ], + 'sShippingcosts' => 75.0, + 'sAmount' => 347.89000000000004, + 'sAmountTax' => 55.549999999999997, + ], + 'sInvalidCartItems' => [ + ], + 'sLaststock' => [ + 'hideBasket' => false, + 'articles' => [ + 'SW10178' => [ + 'OutOfStock' => false, + ], + 'SW10179.1' => [ + 'OutOfStock' => false, + ], + 'SW10177' => [ + 'OutOfStock' => false, + ], + 'SW10175' => [ + 'OutOfStock' => false, + ], + 'SW10176' => [ + 'OutOfStock' => false, + ], + 'SW10174' => [ + 'OutOfStock' => false, + ], + 'SW10162.1' => [ + 'OutOfStock' => false, + ], + ], + ], + 'sShippingcosts' => 75.0, + 'sShippingcostsDifference' => 9727.1100000000006, + 'sAmount' => 347.89000000000004, + 'sAmountWithTax' => null, + 'sAmountTax' => 55.549999999999997, + 'sAmountNet' => 292.33999999999997, + 'sPremiums' => [ + 0 => [ + 'premium_ordernumber' => 'SW10209', + 'startprice' => '50,00', + 'subshopID' => 0, + 'articleID' => 210, + 'main_detail_id' => 748, + 'available' => 1, + 'sArticle' => [ + 'articleID' => 210, + 'articleDetailsID' => 748, + 'ordernumber' => 'SW10209', + 'highlight' => false, + 'description' => 'Diesen Artikel können die Kunden kostenpflichtig erwerben oder kostenlos als Prämienartikel ab einem Warenkorb Wert von 100 Euro bekommen.', + 'description_long' => ' +Diesen Artikel können die Kunden kostenpflichtig erwerben oder kostenlos als Prämienartikel ab einem Warenkorb Wert von 50 Euro bekommen. +Hinweis: +Damit die Prämienartikel im Warenkorb angezeigt werden, muss diese Funktion im Backend unter Einstellungen - Storefront - Bestellabschluss aktiviert sein. + +', + 'esd' => false, + 'articleName' => 'Prämienartikel ab 50 Euro Warenkorb Wert', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 99, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-07-16', + 'update' => '2012-08-30', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 782, + 'articledetailsID' => 748, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Example', + 'supplierImg' => null, + 'supplierID' => 14, + 'supplierDescription' => '', + 'supplierMedia' => null, + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '7,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 7.9900000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 686, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/87/88/24/Schneebesen503f475f63a73.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 908, + 'height' => 917, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/d4/cc/52/Schneebesen503f475f63a73_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/bd/9d/78/Schneebesen503f475f63a73_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/d4/cc/52/Schneebesen503f475f63a73_200x200.jpg, http://shopware.localhost/media/image/bd/9d/78/Schneebesen503f475f63a73_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/c6/0e/54/Schneebesen503f475f63a73_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/b2/20/03/Schneebesen503f475f63a73_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/c6/0e/54/Schneebesen503f475f63a73_600x600.jpg, http://shopware.localhost/media/image/b2/20/03/Schneebesen503f475f63a73_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/5d/6f/d9/Schneebesen503f475f63a73_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/e8/5b/58/Schneebesen503f475f63a73_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/5d/6f/d9/Schneebesen503f475f63a73_1280x1280.jpg, http://shopware.localhost/media/image/e8/5b/58/Schneebesen503f475f63a73_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '7,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 7.9900000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10209', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=210', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=210&number=SW10209', + ], + 'sVariants' => [ + 'SW10209' => [ + 'ordernumber' => 'SW10209', + 'additionaltext' => '', + ], + ], + ], + 1 => [ + 'premium_ordernumber' => 'SW10238', + 'startprice' => '100,00', + 'subshopID' => 0, + 'articleID' => 247, + 'main_detail_id' => 802, + 'available' => 1, + 'sArticle' => [ + 'articleID' => 247, + 'articleDetailsID' => 802, + 'ordernumber' => 'SW10238', + 'highlight' => false, + 'description' => 'Diesen Artikel können die Kunden kostenpflichtig erwerben oder kostenlos als Prämienartikel ab einem Warenkorb Wert von 100 Euro bekommen.', + 'description_long' => ' +Ihre Kunden können diesen Artikel entweder kaufen oder alsPrämienartikel ab einem Warenkorbwert von 100 Euro angeboten bekommen. + + +Hinweis: + + +Um prämienartikel im Warenkorb angezeigt zu bekommen, müssen Sie diese Funktionen im Backend aktivieren unter Einstellungen --> Storefront + +', + 'esd' => false, + 'articleName' => 'Prämienartikel ab 100 Euro Warenkorbwert', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 99, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-07-16', + 'update' => '2012-08-30', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 840, + 'articledetailsID' => 802, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', ], + ], ], - 'Amount' => '272,89', - 'AmountNet' => '229,31', - 'Quantity' => 7, - 'AmountNumeric' => 347.89000000000004, - 'AmountNetNumeric' => 292.33999999999997, - 'AmountWithTax' => '0', - 'AmountWithTaxNumeric' => 0.0, - 'sCurrencyId' => 1, - 'sCurrencyName' => 'EUR', - 'sCurrencyFactor' => 1.0, - 'sShippingcostsWithTax' => 75.0, - 'sShippingcostsNet' => 63.030000000000001, - 'sShippingcostsTax' => 19.0, - 'sShippingcostsDifference' => 9727.1100000000006, - 'sTaxRates' => [ - '19.00' => 55.549999999999997, + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Example', + 'supplierImg' => null, + 'supplierID' => 14, + 'supplierDescription' => '', + 'supplierMedia' => null, + 'supplier_attributes' => [ ], - 'sShippingcosts' => 75.0, - 'sAmount' => 347.89000000000004, - 'sAmountTax' => 55.549999999999997, - ], - 'sInvalidCartItems' => [ - ], - 'sLaststock' => [ - 'hideBasket' => false, - 'articles' => [ - 'SW10178' => [ - 'OutOfStock' => false, - ], - 'SW10179.1' => [ - 'OutOfStock' => false, + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '20,00', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 20.0, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 687, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/f6/e8/4f/Bumerang503f48282aa63.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 904, + 'height' => 613, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/34/cc/70/Bumerang503f48282aa63_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/7c/57/50/Bumerang503f48282aa63_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/34/cc/70/Bumerang503f48282aa63_200x200.jpg, http://shopware.localhost/media/image/7c/57/50/Bumerang503f48282aa63_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], ], - 'SW10177' => [ - 'OutOfStock' => false, + 1 => [ + 'source' => 'http://shopware.localhost/media/image/d0/3a/84/Bumerang503f48282aa63_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f6/7d/c2/Bumerang503f48282aa63_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/d0/3a/84/Bumerang503f48282aa63_600x600.jpg, http://shopware.localhost/media/image/f6/7d/c2/Bumerang503f48282aa63_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], ], - 'SW10175' => [ - 'OutOfStock' => false, + 2 => [ + 'source' => 'http://shopware.localhost/media/image/d9/9e/71/Bumerang503f48282aa63_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/46/e9/f3/Bumerang503f48282aa63_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/d9/9e/71/Bumerang503f48282aa63_1280x1280.jpg, http://shopware.localhost/media/image/46/e9/f3/Bumerang503f48282aa63_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], ], - 'SW10176' => [ - 'OutOfStock' => false, + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '20,00', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 20.0, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ ], - 'SW10174' => [ - 'OutOfStock' => false, + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, ], - 'SW10162.1' => [ - 'OutOfStock' => false, + 'unit_attributes' => [ ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10238', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=247', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=247&number=SW10238', + ], + 'sVariants' => [ + 'SW10238' => [ + 'ordernumber' => 'SW10238', + 'additionaltext' => '', ], + ], ], - 'sShippingcosts' => 75.0, - 'sShippingcostsDifference' => 9727.1100000000006, - 'sAmount' => 347.89000000000004, - 'sAmountWithTax' => null, - 'sAmountTax' => 55.549999999999997, - 'sAmountNet' => 292.33999999999997, - 'sPremiums' => [ - 0 => [ - 'premium_ordernumber' => 'SW10209', - 'startprice' => '50,00', - 'subshopID' => 0, - 'articleID' => 210, - 'main_detail_id' => 748, - 'available' => 1, - 'sArticle' => [ - 'articleID' => 210, - 'articleDetailsID' => 748, - 'ordernumber' => 'SW10209', - 'highlight' => false, - 'description' => 'Diesen Artikel können die Kunden kostenpflichtig erwerben oder kostenlos als Prämienartikel ab einem Warenkorb Wert von 100 Euro bekommen.', - 'description_long' => ' -Diesen Artikel können die Kunden kostenpflichtig erwerben oder kostenlos als Prämienartikel ab einem Warenkorb Wert von 50 Euro bekommen. + 2 => [ + 'premium_ordernumber' => 'SW10221', + 'startprice' => '250,00', + 'subshopID' => 0, + 'articleID' => 211, + 'main_detail_id' => 749, + 'available' => 1, + 'sArticle' => [ + 'articleID' => 211, + 'articleDetailsID' => 749, + 'ordernumber' => 'SW10221', + 'highlight' => false, + 'description' => 'Diesen Artikel können die Kunden kostenpflichtig erwerben oder kostenlos als Prämienartikel ab einem Warenkorb Wert von 250 Euro bekommen.', + 'description_long' => ' +Diesen Artikel können die Kunden kostenpflichtig erwerben oder kostenlos als Prämienartikel ab einem Warenkorb Wert von 250 Euro bekommen. + + Hinweis: Damit die Prämienartikel im Warenkorb angezeigt werden, muss diese Funktion im Backend unter Einstellungen - Storefront - Bestellabschluss aktiviert sein. ', - 'esd' => false, - 'articleName' => 'Prämienartikel ab 50 Euro Warenkorb Wert', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 99, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-07-16', - 'update' => '2012-08-30', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 782, - 'articledetailsID' => 748, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, + 'esd' => false, + 'articleName' => 'Prämienartikel ab 250 Euro Warenkorb Wert', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 100, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-07-16', + 'update' => '2012-08-30', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 783, + 'articledetailsID' => 749, 'attr1' => '', 'attr2' => '', 'attr3' => '', @@ -6200,28 +6630,819 @@ 'attr18' => '', 'attr19' => '', 'attr20' => '', - 'supplierName' => 'Example', - 'supplierImg' => null, - 'supplierID' => 14, - 'supplierDescription' => '', - 'supplierMedia' => null, - 'supplier_attributes' => [ + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Example', + 'supplierImg' => null, + 'supplierID' => 14, + 'supplierDescription' => '', + 'supplierMedia' => null, + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '50,00', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 50.0, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 549, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/63/b1/79/Dart-Set.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 910, + 'height' => 596, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/71/7e/Dart-Set_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/9c/43/63/Dart-Set_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/71/7e/Dart-Set_200x200.jpg, http://shopware.localhost/media/image/9c/43/63/Dart-Set_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/3f/c9/c9/Dart-Set_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/34/93/ba/Dart-Set_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/c9/c9/Dart-Set_600x600.jpg, http://shopware.localhost/media/image/34/93/ba/Dart-Set_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/a5/23/bb/Dart-Set_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/d3/0f/b6/Dart-Set_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/a5/23/bb/Dart-Set_1280x1280.jpg, http://shopware.localhost/media/image/d3/0f/b6/Dart-Set_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '50,00', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 50.0, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10221', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=211', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=211&number=SW10221', + ], + 'sVariants' => [ + 'SW10221' => [ + 'ordernumber' => 'SW10221', + 'additionaltext' => '', + ], + ], + ], + ], + 'sNewsletter' => null, + 'sComment' => null, + 'sShowEsdNote' => false, + 'sDispatchNoOrder' => false, + 'sRegisterFinished' => false, + 'sBasketView' => [ + 'content' => [ + 0 => [ + 'id' => 670, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch "Ibiza"', + 'articleID' => 178, + 'ordernumber' => 'SW10178', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '19,95', + 'netprice' => 16.764705882352999, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:02', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 407, + 'articleDetailId' => 407, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 84, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 0, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => '', + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 33, + '__s_order_basket_attributes_basketID' => 670, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 178, + 'articleDetailsID' => 407, + 'ordernumber' => 'SW10178', + 'highlight' => false, + 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', + 'description_long' => ' +o decertatio. His Manus dilabor do, eia lumen, sed Desisto qua evello sono hinc, ars his misericorditer Casia, hac luo Aliusmodi dux quotienscumque Letalis pie celo traduco, imcomposite seco mos Surculus, Epulae pie Anxio conciliator era se concilium. Terra quam dicto erro prolecto, quo per incommoditas paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe. + +', + 'esd' => false, + 'articleName' => 'Strandtuch "Ibiza"', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 84, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-31', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 429, + 'articledetailsID' => 407, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '19,95', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 19.949999999999999, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ 'valFrom' => 1, 'valTo' => null, 'from' => 1, 'to' => null, - 'price' => '7,99', + 'price' => '19,95', 'pseudoprice' => '0', 'referenceprice' => '0', + 'pseudopricePercent' => null, 'has_pseudoprice' => false, - 'price_numeric' => 7.9900000000000002, + 'price_numeric' => 19.949999999999999, 'pseudoprice_numeric' => 0.0, 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', + ], + 'amount' => '19,95', + 'amountnet' => '16,76', + 'priceNumeric' => 19.949999999999999, + 'amountNumeric' => 19.949999999999999, + 'amountnetNumeric' => 16.764705882352999, + 'image' => [ + 'id' => 445, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 1698, + 'height' => 1131, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', + 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 1131, + 'height' => 1698, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=670', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', + 'tax' => '3,19', + ], + 1 => [ + 'id' => 672, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch in mehreren Farben blau', + 'articleID' => 179, + 'ordernumber' => 'SW10179.1', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '44,99', + 'netprice' => 37.806722689075997, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:09', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 409, + 'articleDetailId' => 409, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 91, + 'suppliernumber' => '', + 'maxpurchase' => 91, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 34, + '__s_order_basket_attributes_basketID' => 672, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 179, + 'articleDetailsID' => 409, + 'ordernumber' => 'SW10179.1', + 'highlight' => true, + 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', + 'description_long' => ' +Eficio uterus vel fugo pes eo ops altor. Me consulo sui voveo ymo Ficus Libero nex modo sui velitatio opportunus, qui cum res termino unde potestas Palmula do donum Chalybs se illius. Pars ars eo labes upilio. Se quin etsi Lac se at, do. Hi per ora lentulus Concino, en, vox se mei Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute. + +', + 'esd' => false, + 'articleName' => 'Strandtuch in mehreren Farben', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 91, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => 'blau', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => true, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 431, + 'articledetailsID' => 409, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => false, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '44,99', + 'pseudoprice' => '0', + 'referenceprice' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 44.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '44,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 44.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], 'pricegroup' => 'EK', 'regulationPrice' => null, 'minpurchase' => 1, @@ -6232,224 +7453,752 @@ 'packunit' => '', 'unitID' => null, 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], + 'unit' => null, + 'description' => null, + ], 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.1', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.1', + ], + 'amount' => '44,99', + 'amountnet' => '37,81', + 'priceNumeric' => 44.990000000000002, + 'amountNumeric' => 44.990000000000002, + 'amountnetNumeric' => 37.806722689075997, + 'image' => [ + 'id' => 446, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', + 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 565, + 'height' => 849, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=672', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.1', + 'tax' => '7,18', + ], + 2 => [ + 'id' => 674, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch Stripes für Kinder', + 'articleID' => 177, + 'ordernumber' => 'SW10177', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '34,99', + 'netprice' => 29.403361344537998, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:14', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 406, + 'articleDetailId' => 406, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 32, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 0, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 35, + '__s_order_basket_attributes_basketID' => 674, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 177, + 'articleDetailsID' => 406, + 'ordernumber' => 'SW10177', + 'highlight' => false, + 'description' => 'Noxa chirographum eo, os, agon os nec lac enucleo his ile pes vos Suppellex, re. Vae libro corium Pul.', + 'description_long' => ' +Ita si ardor laxe eu Cogo arx subaudio. Os, color attero, an. Hi inservio quatenus/quatinus, eu. Pax percunctor, ut. Me Mica. Ne, in plus neo pars ne navale quo Heniis varius, St. Iam vae ne inter Idem devenio parum accredo Neco nam byssus ales an Seu re is, mors vir incrementabiliter hio desisto Noxa chirographum eo, os, agon os nec lac enucleo his ile pes vos Suppellex, re. Vae libro corium Pul. + +', + 'esd' => false, + 'articleName' => 'Strandtuch Stripes für Kinder', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 32, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => false, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => [ + 'int' => 13.0, + 'float' => 12.529999999999999, + ], + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 428, + 'articledetailsID' => 406, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'image' => [ - 'id' => 686, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/87/88/24/Schneebesen503f475f63a73.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 908, - 'height' => 917, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/d4/cc/52/Schneebesen503f475f63a73_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/bd/9d/78/Schneebesen503f475f63a73_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/d4/cc/52/Schneebesen503f475f63a73_200x200.jpg, http://shopware.localhost/media/image/bd/9d/78/Schneebesen503f475f63a73_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/c6/0e/54/Schneebesen503f475f63a73_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/b2/20/03/Schneebesen503f475f63a73_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/c6/0e/54/Schneebesen503f475f63a73_600x600.jpg, http://shopware.localhost/media/image/b2/20/03/Schneebesen503f475f63a73_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/5d/6f/d9/Schneebesen503f475f63a73_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/e8/5b/58/Schneebesen503f475f63a73_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/5d/6f/d9/Schneebesen503f475f63a73_1280x1280.jpg, http://shopware.localhost/media/image/e8/5b/58/Schneebesen503f475f63a73_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '34,99', + 'pseudoprice' => '40,00', + 'referenceprice' => '0', + 'has_pseudoprice' => true, + 'price_numeric' => 34.990000000000002, + 'pseudoprice_numeric' => 40.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 444, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg, http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '7,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 7.9900000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg, http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10209', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=210', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=210&number=SW10209', - ], - 'sVariants' => [ - 'SW10209' => [ - 'ordernumber' => 'SW10209', - 'additionaltext' => '', + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg, http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '34,99', + 'pseudoprice' => '40,00', + 'referenceprice' => '0', + 'pseudopricePercent' => [ + 'int' => 13.0, + 'float' => 12.529999999999999, + ], + 'has_pseudoprice' => true, + 'price_numeric' => 34.990000000000002, + 'pseudoprice_numeric' => 40.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10177', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=177', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=177&number=SW10177', ], - 1 => [ - 'premium_ordernumber' => 'SW10238', - 'startprice' => '100,00', - 'subshopID' => 0, - 'articleID' => 247, - 'main_detail_id' => 802, - 'available' => 1, - 'sArticle' => [ - 'articleID' => 247, - 'articleDetailsID' => 802, - 'ordernumber' => 'SW10238', - 'highlight' => false, - 'description' => 'Diesen Artikel können die Kunden kostenpflichtig erwerben oder kostenlos als Prämienartikel ab einem Warenkorb Wert von 100 Euro bekommen.', - 'description_long' => ' -Ihre Kunden können diesen Artikel entweder kaufen oder alsPrämienartikel ab einem Warenkorbwert von 100 Euro angeboten bekommen. - - -Hinweis: - - -Um prämienartikel im Warenkorb angezeigt zu bekommen, müssen Sie diese Funktionen im Backend aktivieren unter Einstellungen --> Storefront + 'amount' => '34,99', + 'amountnet' => '29,40', + 'priceNumeric' => 34.990000000000002, + 'amountNumeric' => 34.990000000000002, + 'amountnetNumeric' => 29.403361344537998, + 'image' => [ + 'id' => 444, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg, http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg, http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg, http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', + 0 => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', + 0 => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 848, + 'height' => 566, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=177', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=674', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10177', + 'tax' => '5,59', + ], + 3 => [ + 'id' => 676, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch Sunny', + 'articleID' => 175, + 'ordernumber' => 'SW10175', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '59,99', + 'netprice' => 50.411764705882, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:19', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 404, + 'articleDetailId' => 404, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 336, + 'suppliernumber' => '', + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 36, + '__s_order_basket_attributes_basketID' => 676, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 175, + 'articleDetailsID' => 404, + 'ordernumber' => 'SW10175', + 'highlight' => true, + 'description' => 'abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s.', + 'description_long' => ' +Draginta pax. At denego Do Loci his simul creta humilitas, Excello, se, sis ne fere Amotio turba excedo se res domito Villa, in, fundo novem, per qua tam Acer cornu. Prex niger qui os an calcar, has illi eu opinor eo Iuvenesco, ne mano se noceo, sto vere to Damno occludo, abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s. ', - 'esd' => false, - 'articleName' => 'Prämienartikel ab 100 Euro Warenkorbwert', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 99, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-07-16', - 'update' => '2012-08-30', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 840, - 'articledetailsID' => 802, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Example', - 'supplierImg' => null, - 'supplierID' => 14, - 'supplierDescription' => '', - 'supplierMedia' => null, - 'supplier_attributes' => [ + 'esd' => false, + 'articleName' => 'Strandtuch Sunny', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 336, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 426, + 'articledetailsID' => 404, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '59,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 59.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 443, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 595, + 'height' => 807, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg, http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg, http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg, http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ 'valFrom' => 1, 'valTo' => null, 'from' => 1, 'to' => null, - 'price' => '20,00', + 'price' => '59,99', 'pseudoprice' => '0', 'referenceprice' => '0', + 'pseudopricePercent' => null, 'has_pseudoprice' => false, - 'price_numeric' => 20.0, + 'price_numeric' => 59.990000000000002, 'pseudoprice_numeric' => 0.0, 'price_attributes' => [ - ], + ], 'pricegroup' => 'EK', 'regulationPrice' => null, 'minpurchase' => 1, @@ -6460,222 +8209,371 @@ 'packunit' => '', 'unitID' => null, 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], + 'unit' => null, + 'description' => null, + ], 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 687, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/f6/e8/4f/Bumerang503f48282aa63.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 904, - 'height' => 613, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/34/cc/70/Bumerang503f48282aa63_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/7c/57/50/Bumerang503f48282aa63_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/34/cc/70/Bumerang503f48282aa63_200x200.jpg, http://shopware.localhost/media/image/7c/57/50/Bumerang503f48282aa63_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/d0/3a/84/Bumerang503f48282aa63_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f6/7d/c2/Bumerang503f48282aa63_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/d0/3a/84/Bumerang503f48282aa63_600x600.jpg, http://shopware.localhost/media/image/f6/7d/c2/Bumerang503f48282aa63_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/d9/9e/71/Bumerang503f48282aa63_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/46/e9/f3/Bumerang503f48282aa63_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/d9/9e/71/Bumerang503f48282aa63_1280x1280.jpg, http://shopware.localhost/media/image/46/e9/f3/Bumerang503f48282aa63_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '20,00', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 20.0, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10238', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=247', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=247&number=SW10238', - ], - 'sVariants' => [ - 'SW10238' => [ - 'ordernumber' => 'SW10238', - 'additionaltext' => '', - ], + ], ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10175', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=175', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=175&number=SW10175', ], - 2 => [ - 'premium_ordernumber' => 'SW10221', - 'startprice' => '250,00', - 'subshopID' => 0, - 'articleID' => 211, - 'main_detail_id' => 749, - 'available' => 1, - 'sArticle' => [ - 'articleID' => 211, - 'articleDetailsID' => 749, - 'ordernumber' => 'SW10221', - 'highlight' => false, - 'description' => 'Diesen Artikel können die Kunden kostenpflichtig erwerben oder kostenlos als Prämienartikel ab einem Warenkorb Wert von 250 Euro bekommen.', - 'description_long' => ' -Diesen Artikel können die Kunden kostenpflichtig erwerben oder kostenlos als Prämienartikel ab einem Warenkorb Wert von 250 Euro bekommen. - - -Hinweis: -Damit die Prämienartikel im Warenkorb angezeigt werden, muss diese Funktion im Backend unter Einstellungen - Storefront - Bestellabschluss aktiviert sein. + 'amount' => '59,99', + 'amountnet' => '50,41', + 'priceNumeric' => 59.990000000000002, + 'amountNumeric' => 59.990000000000002, + 'amountnetNumeric' => 50.411764705882, + 'image' => [ + 'id' => 443, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 595, + 'height' => 807, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg, http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg, http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg, http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', + 0 => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', + 0 => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 807, + 'height' => 595, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=175', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=676', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10175', + 'tax' => '9,58', + ], + 4 => [ + 'id' => 678, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandtuch Gras-Green', + 'articleID' => 176, + 'ordernumber' => 'SW10176', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '49,99', + 'netprice' => 42.008403361345003, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:24', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 405, + 'articleDetailId' => 405, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 54, + 'suppliernumber' => '', + 'maxpurchase' => 54, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 37, + '__s_order_basket_attributes_basketID' => 678, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 176, + 'articleDetailsID' => 405, + 'ordernumber' => 'SW10176', + 'highlight' => false, + 'description' => 'abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s.', + 'description_long' => ' +Draginta pax. At denego Do Loci his simul creta humilitas, Excello, se, sis ne fere Amotio turba excedo se res domito Villa, in, fundo novem, per qua tam Acer cornu. Prex niger qui os an calcar, has illi eu opinor eo Iuvenesco, ne mano se noceo, sto vere to Damno occludo, abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s. ', - 'esd' => false, - 'articleName' => 'Prämienartikel ab 250 Euro Warenkorb Wert', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 100, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-07-16', - 'update' => '2012-08-30', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 783, - 'articledetailsID' => 749, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], + 'esd' => false, + 'articleName' => 'Strandtuch Gras-Green', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 54, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 427, + 'articledetailsID' => 405, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Example', - 'supplierImg' => null, - 'supplierID' => 14, - 'supplierDescription' => '', - 'supplierMedia' => null, - 'supplier_attributes' => [ + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '49,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 49.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 441, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg, http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg, http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg, http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ 'valFrom' => 1, 'valTo' => null, 'from' => 1, 'to' => null, - 'price' => '50,00', + 'price' => '49,99', 'pseudoprice' => '0', 'referenceprice' => '0', + 'pseudopricePercent' => null, 'has_pseudoprice' => false, - 'price_numeric' => 50.0, + 'price_numeric' => 49.990000000000002, 'pseudoprice_numeric' => 0.0, 'price_attributes' => [ - ], + ], 'pricegroup' => 'EK', 'regulationPrice' => null, 'minpurchase' => 1, @@ -6683,2760 +8581,862 @@ 'purchasesteps' => 1, 'purchaseunit' => null, 'referenceunit' => null, - 'packunit' => '', + 'packunit' => 'Stück', 'unitID' => null, 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], + 'unit' => null, + 'description' => null, + ], 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 549, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/63/b1/79/Dart-Set.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 910, - 'height' => 596, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/71/7e/Dart-Set_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/9c/43/63/Dart-Set_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/71/7e/Dart-Set_200x200.jpg, http://shopware.localhost/media/image/9c/43/63/Dart-Set_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/3f/c9/c9/Dart-Set_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/34/93/ba/Dart-Set_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/c9/c9/Dart-Set_600x600.jpg, http://shopware.localhost/media/image/34/93/ba/Dart-Set_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/a5/23/bb/Dart-Set_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/d3/0f/b6/Dart-Set_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/a5/23/bb/Dart-Set_1280x1280.jpg, http://shopware.localhost/media/image/d3/0f/b6/Dart-Set_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '50,00', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 50.0, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10221', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=211', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=211&number=SW10221', - ], - 'sVariants' => [ - 'SW10221' => [ - 'ordernumber' => 'SW10221', - 'additionaltext' => '', - ], + ], ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10176', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=176', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=176&number=SW10176', ], - ], - 'sNewsletter' => null, - 'sComment' => null, - 'sShowEsdNote' => false, - 'sDispatchNoOrder' => false, - 'sRegisterFinished' => false, - 'sBasketView' => [ - 'content' => [ - 0 => [ - 'id' => 670, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch "Ibiza"', - 'articleID' => 178, - 'ordernumber' => 'SW10178', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '19,95', - 'netprice' => 16.764705882352999, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:02', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 407, - 'articleDetailId' => 407, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 84, - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 0, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => '', - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 33, - '__s_order_basket_attributes_basketID' => 670, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 178, - 'articleDetailsID' => 407, - 'ordernumber' => 'SW10178', - 'highlight' => false, - 'description' => 'paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe.', - 'description_long' => ' -o decertatio. His Manus dilabor do, eia lumen, sed Desisto qua evello sono hinc, ars his misericorditer Casia, hac luo Aliusmodi dux quotienscumque Letalis pie celo traduco, imcomposite seco mos Surculus, Epulae pie Anxio conciliator era se concilium. Terra quam dicto erro prolecto, quo per incommoditas paulatim Praecepio lex Edoceo sis conticinium Furtum Heidelberg casula Toto pes an jugiter pe. + 'amount' => '49,99', + 'amountnet' => '42,01', + 'priceNumeric' => 49.990000000000002, + 'amountNumeric' => 49.990000000000002, + 'amountnetNumeric' => 42.008403361345003, + 'image' => [ + 'id' => 441, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 849, + 'height' => 565, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg, http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg, http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg, http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', + 0 => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', + 0 => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 565, + 'height' => 849, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=176', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=678', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10176', + 'tax' => '7,98', + ], + 5 => [ + 'id' => 680, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Strandkleid Short Red', + 'articleID' => 174, + 'ordernumber' => 'SW10174', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '38,99', + 'netprice' => 32.764705882352999, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:33', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => 'Stück', + 'mainDetailId' => 403, + 'articleDetailId' => 403, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 66, + 'suppliernumber' => '', + 'maxpurchase' => 66, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 38, + '__s_order_basket_attributes_basketID' => 680, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 174, + 'articleDetailsID' => 403, + 'ordernumber' => 'SW10174', + 'highlight' => false, + 'description' => 'Illo queo Sino sine lea do Ferula emo exorior per dies iam Mollio Res exinde. Si, sis Genero In ter def.', + 'description_long' => ' +Men, juge pie pareo Caelum en nex Accommodo turma, quem optatus crus Idem nam mei hic, te. En repo agna, hac reverto grator via beo Indigeo, iam abhinc hae levo.. Tego, dis no invocatio.Sive infinitas pax St falx hoc multi. Tum sto se post Caetera. Boo, his nam tergo scisco lex puga per Virtus. Illo queo Sino sine lea do Ferula emo exorior per dies iam Mollio Res exinde. Si, sis Genero In ter def. ', - 'esd' => false, - 'articleName' => 'Strandtuch "Ibiza"', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 84, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-31', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 429, - 'articledetailsID' => 407, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '19,95', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 19.949999999999999, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '19,95', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 19.949999999999999, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10178', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=178&number=SW10178', + 'esd' => false, + 'articleName' => 'Strandkleid Short Red', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 66, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => false, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 425, + 'articledetailsID' => 403, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => true, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'amount' => '19,95', - 'amountnet' => '16,76', - 'priceNumeric' => 19.949999999999999, - 'amountNumeric' => 19.949999999999999, - 'amountnetNumeric' => 16.764705882352999, - 'image' => [ - 'id' => 445, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 1698, - 'height' => 1131, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg, http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg, http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg, http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/1b/23/da/Strandtuch-mit-Flip-Flops-gelb_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/47/1d/25/Strandtuch-mit-Flip-Flops-gelb_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/08/d2/70/Strandtuch-mit-Flip-Flops-gelb_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/3c/80/e0/Strandtuch-mit-Flip-Flops-gelb.jpg', - 0 => 'http://shopware.localhost/media/image/45/e6/5f/Strandtuch-mit-Flip-Flops-gelb_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/1f/a8/51/Strandtuch-mit-Flip-Flops-gelb_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/87/9c/e9/Strandtuch-mit-Flip-Flops-gelb_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 1131, - 'height' => 1698, - ], - ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=178', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=670', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10178', - 'tax' => '3,19', - ], - 1 => [ - 'id' => 672, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch in mehreren Farben blau', - 'articleID' => 179, - 'ordernumber' => 'SW10179.1', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '44,99', - 'netprice' => 37.806722689075997, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:09', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 409, - 'articleDetailId' => 409, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 91, - 'suppliernumber' => '', - 'maxpurchase' => 91, - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 34, - '__s_order_basket_attributes_basketID' => 672, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 179, - 'articleDetailsID' => 409, - 'ordernumber' => 'SW10179.1', - 'highlight' => true, - 'description' => 'Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute.', - 'description_long' => ' -Eficio uterus vel fugo pes eo ops altor. Me consulo sui voveo ymo Ficus Libero nex modo sui velitatio opportunus, qui cum res termino unde potestas Palmula do donum Chalybs se illius. Pars ars eo labes upilio. Se quin etsi Lac se at, do. Hi per ora lentulus Concino, en, vox se mei Pulpa impenetrabiilis. His reus divum illum quisque ut Redeo. Ubi cui nam ira supplicium Ut Exporrigo, per algeo aute. - -', - 'esd' => false, - 'articleName' => 'Strandtuch in mehreren Farben', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 91, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => 'blau', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => true, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 431, - 'articledetailsID' => 409, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => false, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '44,99', - 'pseudoprice' => '0', - 'referenceprice' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 44.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '44,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 44.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10179.1', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=179&number=SW10179.1', + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'amount' => '44,99', - 'amountnet' => '37,81', - 'priceNumeric' => 44.990000000000002, - 'amountNumeric' => 44.990000000000002, - 'amountnetNumeric' => 37.806722689075997, - 'image' => [ - 'id' => 446, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg, http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg, http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg, http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/df/77/e2/Strandtuch-mehrfarbig_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/51/80/75/Strandtuch-mehrfarbig_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/9b/04/f3/Strandtuch-mehrfarbig_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/60/6c/22/Strandtuch-mehrfarbig.jpg', - 0 => 'http://shopware.localhost/media/image/41/bb/26/Strandtuch-mehrfarbig_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/a4/30/53/Strandtuch-mehrfarbig_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/43/72/fb/Strandtuch-mehrfarbig_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 565, - 'height' => 849, - ], - ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '38,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'has_pseudoprice' => false, + 'price_numeric' => 38.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 440, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg, http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=179', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=672', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10179.1', - 'tax' => '7,18', - ], - 2 => [ - 'id' => 674, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch Stripes für Kinder', - 'articleID' => 177, - 'ordernumber' => 'SW10177', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '34,99', - 'netprice' => 29.403361344537998, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:14', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 406, - 'articleDetailId' => 406, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 32, - 'suppliernumber' => '', - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 0, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 35, - '__s_order_basket_attributes_basketID' => 674, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 177, - 'articleDetailsID' => 406, - 'ordernumber' => 'SW10177', - 'highlight' => false, - 'description' => 'Noxa chirographum eo, os, agon os nec lac enucleo his ile pes vos Suppellex, re. Vae libro corium Pul.', - 'description_long' => ' -Ita si ardor laxe eu Cogo arx subaudio. Os, color attero, an. Hi inservio quatenus/quatinus, eu. Pax percunctor, ut. Me Mica. Ne, in plus neo pars ne navale quo Heniis varius, St. Iam vae ne inter Idem devenio parum accredo Neco nam byssus ales an Seu re is, mors vir incrementabiliter hio desisto Noxa chirographum eo, os, agon os nec lac enucleo his ile pes vos Suppellex, re. Vae libro corium Pul. - -', - 'esd' => false, - 'articleName' => 'Strandtuch Stripes für Kinder', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 32, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => false, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => [ - 'int' => 13.0, - 'float' => 12.529999999999999, - ], - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 428, - 'articledetailsID' => 406, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '34,99', - 'pseudoprice' => '40,00', - 'referenceprice' => '0', - 'has_pseudoprice' => true, - 'price_numeric' => 34.990000000000002, - 'pseudoprice_numeric' => 40.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 444, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg, http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg, http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg, http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '34,99', - 'pseudoprice' => '40,00', - 'referenceprice' => '0', - 'pseudopricePercent' => [ - 'int' => 13.0, - 'float' => 12.529999999999999, - ], - 'has_pseudoprice' => true, - 'price_numeric' => 34.990000000000002, - 'pseudoprice_numeric' => 40.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10177', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=177', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=177&number=SW10177', + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg, http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ ], - 'amount' => '34,99', - 'amountnet' => '29,40', - 'priceNumeric' => 34.990000000000002, - 'amountNumeric' => 34.990000000000002, - 'amountnetNumeric' => 29.403361344537998, - 'image' => [ - 'id' => 444, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg, http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg, http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg, http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', - 0 => 'http://shopware.localhost/media/image/e3/fb/dc/Strandtuch-Kinder_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/a3/4f/1a/Strandtuch-Kinder_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/19/86/9c/Strandtuch-Kinder_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/a2/2c/21/Strandtuch-Kinder.jpg', - 0 => 'http://shopware.localhost/media/image/3f/1c/d3/Strandtuch-Kinder_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/8a/8c/22/Strandtuch-Kinder_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/e5/2f/45/Strandtuch-Kinder_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 848, - 'height' => 566, - ], - ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg, http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=177', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=674', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10177', - 'tax' => '5,59', - ], - 3 => [ - 'id' => 676, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch Sunny', - 'articleID' => 175, - 'ordernumber' => 'SW10175', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '59,99', - 'netprice' => 50.411764705882, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:19', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 404, - 'articleDetailId' => 404, + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '38,99', + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 38.990000000000002, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 336, - 'suppliernumber' => '', 'maxpurchase' => '100', 'purchasesteps' => 1, 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 36, - '__s_order_basket_attributes_basketID' => 676, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 175, - 'articleDetailsID' => 404, - 'ordernumber' => 'SW10175', - 'highlight' => true, - 'description' => 'abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s.', - 'description_long' => ' -Draginta pax. At denego Do Loci his simul creta humilitas, Excello, se, sis ne fere Amotio turba excedo se res domito Villa, in, fundo novem, per qua tam Acer cornu. Prex niger qui os an calcar, has illi eu opinor eo Iuvenesco, ne mano se noceo, sto vere to Damno occludo, abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s. + 'referenceunit' => null, + 'packunit' => 'Stück', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10174', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=174', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=174&number=SW10174', + ], + 'amount' => '38,99', + 'amountnet' => '32,76', + 'priceNumeric' => 38.990000000000002, + 'amountNumeric' => 38.990000000000002, + 'amountnetNumeric' => 32.764705882352999, + 'image' => [ + 'id' => 440, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 566, + 'height' => 848, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg, http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg, http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg, http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', + 0 => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', + 0 => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 848, + 'height' => 566, + ], + ], + ], + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=174', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=680', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10174', + 'tax' => '6,23', + ], + 6 => [ + 'id' => 682, + 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', + 'userID' => 1, + 'articlename' => 'Sommer-Sandale Pink 36', + 'articleID' => 162, + 'ordernumber' => 'SW10162.1', + 'shippingfree' => 0, + 'quantity' => 1, + 'price' => '23,99', + 'netprice' => 20.159663865546001, + 'tax_rate' => 19.0, + 'datum' => '2022-04-25 08:08:38', + 'modus' => 0, + 'esdarticle' => 0, + 'partnerID' => '', + 'lastviewport' => 'checkout', + 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', + 'config' => '', + 'currencyFactor' => 1.0, + 'packunit' => '', + 'mainDetailId' => 380, + 'articleDetailId' => 380, + 'minpurchase' => 1, + 'taxID' => 1, + 'instock' => 7, + 'suppliernumber' => '', + 'maxpurchase' => 7, + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'laststock' => 1, + 'shippingtime' => null, + 'releasedate' => null, + 'sReleaseDate' => null, + 'ean' => null, + 'stockmin' => 0, + 'ob_attr1' => '', + 'ob_attr2' => null, + 'ob_attr3' => null, + 'ob_attr4' => null, + 'ob_attr5' => null, + 'ob_attr6' => null, + '__s_order_basket_attributes_id' => 39, + '__s_order_basket_attributes_basketID' => 682, + '__s_order_basket_attributes_attribute1' => '', + '__s_order_basket_attributes_attribute2' => null, + '__s_order_basket_attributes_attribute3' => null, + '__s_order_basket_attributes_attribute4' => null, + '__s_order_basket_attributes_attribute5' => null, + '__s_order_basket_attributes_attribute6' => null, + 'shippinginfo' => true, + 'esd' => 0, + 'additional_details' => [ + 'articleID' => 162, + 'articleDetailsID' => 380, + 'ordernumber' => 'SW10162.1', + 'highlight' => false, + 'description' => 'Summa inedicibilis. Prosum Arcus, dux dis Peto sui pro quid ars obviam Valde nec pennatus, pia Culpo Te defero emo se.', + 'description_long' => ' +O algeo sto fama pilo per crystallinus hoc per His. Arx limus orior fessus Dimidium curatio Demergo, humo pro Hi. Citatus stipes gero ac ira quin tractus ut forsit Munio inopportunus Obdormio, te maro iam Pannosa vos obses se fefello peto cado contabesco, ius imbuo, tot ruo ut for Summa inedicibilis. Prosum Arcus, dux dis Peto sui pro quid ars obviam Valde nec pennatus, pia Culpo Te defero emo se. ', - 'esd' => false, - 'articleName' => 'Strandtuch Sunny', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 336, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 426, - 'articledetailsID' => 404, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '59,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 59.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 443, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 595, - 'height' => 807, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg, http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg, http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg, http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '59,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 59.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10175', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=175', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=175&number=SW10175', + 'esd' => false, + 'articleName' => 'Sommer-Sandale Pink', + 'taxID' => 1, + 'tax' => 19.0, + 'instock' => 7, + 'isAvailable' => true, + 'hasAvailableVariant' => true, + 'weight' => 0.0, + 'shippingtime' => null, + 'pricegroupActive' => false, + 'pricegroupID' => null, + 'length' => 0.0, + 'height' => 0.0, + 'width' => 0.0, + 'laststock' => true, + 'additionaltext' => '36', + 'datum' => '2012-08-21', + 'update' => '2012-08-21', + 'sales' => 0, + 'filtergroupID' => null, + 'priceStartingFrom' => null, + 'pseudopricePercent' => null, + 'sVariantArticle' => null, + 'sConfigurator' => true, + 'metaTitle' => null, + 'shippingfree' => false, + 'suppliernumber' => '', + 'notification' => false, + 'ean' => '', + 'keywords' => '', + 'sReleasedate' => '', + 'template' => '', + 'attributes' => [ + 'core' => [ + 'storage' => [ + 'id' => 399, + 'articledetailsID' => 380, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + ], + ], + ], + 'allowBuyInListing' => false, + 'attr1' => '', + 'attr2' => '', + 'attr3' => '', + 'attr4' => '', + 'attr5' => '', + 'attr6' => '', + 'attr7' => '', + 'attr8' => '', + 'attr9' => '', + 'attr10' => '', + 'attr11' => '', + 'attr12' => '', + 'attr13' => '', + 'attr14' => '', + 'attr15' => '', + 'attr16' => '', + 'attr17' => null, + 'attr18' => '', + 'attr19' => '', + 'attr20' => '', + 'supplierName' => 'Beachdreams Clothes', + 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'supplierID' => 12, + 'supplierDescription' => '', + 'supplierMedia' => [ + 'id' => 666, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', + 'description' => 'beachdreams', + 'extension' => 'png', + 'main' => null, + 'parentId' => null, + 'width' => 204, + 'height' => 85, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', + 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'amount' => '59,99', - 'amountnet' => '50,41', - 'priceNumeric' => 59.990000000000002, - 'amountNumeric' => 59.990000000000002, - 'amountnetNumeric' => 50.411764705882, - 'image' => [ - 'id' => 443, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 595, - 'height' => 807, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg, http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg, http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg, http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', - 0 => 'http://shopware.localhost/media/image/62/1e/eb/Strandtuch-gelb-gross_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/36/65/34/Strandtuch-gelb-gross_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/dc/e1/bd/Strandtuch-gelb-gross_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/0c/3a/21/Strandtuch-gelb-gross.jpg', - 0 => 'http://shopware.localhost/media/image/f7/0b/fe/Strandtuch-gelb-gross_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/69/c6/fa/Strandtuch-gelb-gross_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/03/8b/8c/Strandtuch-gelb-gross_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 807, - 'height' => 595, - ], - ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', + 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=175', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=676', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10175', - 'tax' => '9,58', - ], - 4 => [ - 'id' => 678, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandtuch Gras-Green', - 'articleID' => 176, - 'ordernumber' => 'SW10176', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '49,99', - 'netprice' => 42.008403361345003, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:24', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 405, - 'articleDetailId' => 405, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 54, - 'suppliernumber' => '', - 'maxpurchase' => 54, - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 37, - '__s_order_basket_attributes_basketID' => 678, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 176, - 'articleDetailsID' => 405, - 'ordernumber' => 'SW10176', - 'highlight' => false, - 'description' => 'abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s.', - 'description_long' => ' -Draginta pax. At denego Do Loci his simul creta humilitas, Excello, se, sis ne fere Amotio turba excedo se res domito Villa, in, fundo novem, per qua tam Acer cornu. Prex niger qui os an calcar, has illi eu opinor eo Iuvenesco, ne mano se noceo, sto vere to Damno occludo, abortio pio os ago ictus imcomposite Vena subvenio, to evado Nitidus qua Immanis pollex, in tutus hae ac no laceratus, hi eo s. - -', - 'esd' => false, - 'articleName' => 'Strandtuch Gras-Green', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 54, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 427, - 'articledetailsID' => 405, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '49,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 49.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 441, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg, http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg, http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg, http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '49,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 49.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10176', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=176', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=176&number=SW10176', + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', + 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', + 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'amount' => '49,99', - 'amountnet' => '42,01', - 'priceNumeric' => 49.990000000000002, - 'amountNumeric' => 49.990000000000002, - 'amountnetNumeric' => 42.008403361345003, - 'image' => [ - 'id' => 441, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 849, - 'height' => 565, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg, http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg, http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg, http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', - 0 => 'http://shopware.localhost/media/image/ab/54/2a/Strandtuch-gruen-mit-Muschel_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/9f/2e/f0/Strandtuch-gruen-mit-Muschel_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/78/0b/34/Strandtuch-gruen-mit-Muschel_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/17/8c/a3/Strandtuch-gruen-mit-Muschel.jpg', - 0 => 'http://shopware.localhost/media/image/cc/b7/84/Strandtuch-gruen-mit-Muschel_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/95/43/c4/Strandtuch-gruen-mit-Muschel_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/f4/e2/57/Strandtuch-gruen-mit-Muschel_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 565, - 'height' => 849, - ], - ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'supplier_attributes' => [ + ], + 'newArticle' => false, + 'sUpcoming' => false, + 'topseller' => false, + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, + 'price' => '23,99', + 'pseudoprice' => '0', + 'referenceprice' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 23.989999999999998, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, + 'minpurchase' => 1, + 'maxpurchase' => '100', + 'purchasesteps' => 1, + 'purchaseunit' => null, + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], + 'image' => [ + 'id' => 428, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 690, + 'height' => 696, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg, http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=176', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=678', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10176', - 'tax' => '7,98', - ], - 5 => [ - 'id' => 680, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Strandkleid Short Red', - 'articleID' => 174, - 'ordernumber' => 'SW10174', - 'shippingfree' => 0, - 'quantity' => 1, - 'price' => '38,99', - 'netprice' => 32.764705882352999, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:33', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => 'Stück', - 'mainDetailId' => 403, - 'articleDetailId' => 403, - 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 66, - 'suppliernumber' => '', - 'maxpurchase' => 66, - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 38, - '__s_order_basket_attributes_basketID' => 680, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 174, - 'articleDetailsID' => 403, - 'ordernumber' => 'SW10174', - 'highlight' => false, - 'description' => 'Illo queo Sino sine lea do Ferula emo exorior per dies iam Mollio Res exinde. Si, sis Genero In ter def.', - 'description_long' => ' -Men, juge pie pareo Caelum en nex Accommodo turma, quem optatus crus Idem nam mei hic, te. En repo agna, hac reverto grator via beo Indigeo, iam abhinc hae levo.. Tego, dis no invocatio.Sive infinitas pax St falx hoc multi. Tum sto se post Caetera. Boo, his nam tergo scisco lex puga per Virtus. Illo queo Sino sine lea do Ferula emo exorior per dies iam Mollio Res exinde. Si, sis Genero In ter def. - -', - 'esd' => false, - 'articleName' => 'Strandkleid Short Red', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 66, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => false, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 425, - 'articledetailsID' => 403, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => true, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '38,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'has_pseudoprice' => false, - 'price_numeric' => 38.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 440, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg, http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg, http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg, http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '38,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 38.990000000000002, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => 'Stück', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10174', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=174', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=174&number=SW10174', + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg, http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ ], - 'amount' => '38,99', - 'amountnet' => '32,76', - 'priceNumeric' => 38.990000000000002, - 'amountNumeric' => 38.990000000000002, - 'amountnetNumeric' => 32.764705882352999, - 'image' => [ - 'id' => 440, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 566, - 'height' => 848, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg, http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg, http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg, http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', - 0 => 'http://shopware.localhost/media/image/91/93/a2/Strandkleid-rot_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/7e/cf/37/Strandkleid-rot_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/54/6d/e2/Strandkleid-rot_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/31/a0/7d/Strandkleid-rot.jpg', - 0 => 'http://shopware.localhost/media/image/c0/25/e3/Strandkleid-rot_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/03/49/a8/Strandkleid-rot_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/a7/10/38/Strandkleid-rot_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 848, - 'height' => 566, - ], - ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg, http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=174', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=680', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10174', - 'tax' => '6,23', - ], - 6 => [ - 'id' => 682, - 'sessionID' => 'a652d16a1c5a554b6b304653e4cc9629', - 'userID' => 1, - 'articlename' => 'Sommer-Sandale Pink 36', - 'articleID' => 162, - 'ordernumber' => 'SW10162.1', - 'shippingfree' => 0, - 'quantity' => 1, + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + ], + 'prices' => [ + 0 => [ + 'valFrom' => 1, + 'valTo' => null, + 'from' => 1, + 'to' => null, 'price' => '23,99', - 'netprice' => 20.159663865546001, - 'tax_rate' => 19.0, - 'datum' => '2022-04-25 08:08:38', - 'modus' => 0, - 'esdarticle' => 0, - 'partnerID' => '', - 'lastviewport' => 'checkout', - 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', - 'config' => '', - 'currencyFactor' => 1.0, - 'packunit' => '', - 'mainDetailId' => 380, - 'articleDetailId' => 380, + 'pseudoprice' => '0', + 'referenceprice' => '0', + 'pseudopricePercent' => null, + 'has_pseudoprice' => false, + 'price_numeric' => 23.989999999999998, + 'pseudoprice_numeric' => 0.0, + 'price_attributes' => [ + ], + 'pricegroup' => 'EK', + 'regulationPrice' => null, 'minpurchase' => 1, - 'taxID' => 1, - 'instock' => 7, - 'suppliernumber' => '', - 'maxpurchase' => 7, + 'maxpurchase' => '100', 'purchasesteps' => 1, 'purchaseunit' => null, - 'laststock' => 1, - 'shippingtime' => null, - 'releasedate' => null, - 'sReleaseDate' => null, - 'ean' => null, - 'stockmin' => 0, - 'ob_attr1' => '', - 'ob_attr2' => null, - 'ob_attr3' => null, - 'ob_attr4' => null, - 'ob_attr5' => null, - 'ob_attr6' => null, - '__s_order_basket_attributes_id' => 39, - '__s_order_basket_attributes_basketID' => 682, - '__s_order_basket_attributes_attribute1' => '', - '__s_order_basket_attributes_attribute2' => null, - '__s_order_basket_attributes_attribute3' => null, - '__s_order_basket_attributes_attribute4' => null, - '__s_order_basket_attributes_attribute5' => null, - '__s_order_basket_attributes_attribute6' => null, - 'shippinginfo' => true, - 'esd' => 0, - 'additional_details' => [ - 'articleID' => 162, - 'articleDetailsID' => 380, - 'ordernumber' => 'SW10162.1', - 'highlight' => false, - 'description' => 'Summa inedicibilis. Prosum Arcus, dux dis Peto sui pro quid ars obviam Valde nec pennatus, pia Culpo Te defero emo se.', - 'description_long' => ' -O algeo sto fama pilo per crystallinus hoc per His. Arx limus orior fessus Dimidium curatio Demergo, humo pro Hi. Citatus stipes gero ac ira quin tractus ut forsit Munio inopportunus Obdormio, te maro iam Pannosa vos obses se fefello peto cado contabesco, ius imbuo, tot ruo ut for Summa inedicibilis. Prosum Arcus, dux dis Peto sui pro quid ars obviam Valde nec pennatus, pia Culpo Te defero emo se. - -', - 'esd' => false, - 'articleName' => 'Sommer-Sandale Pink', - 'taxID' => 1, - 'tax' => 19.0, - 'instock' => 7, - 'isAvailable' => true, - 'hasAvailableVariant' => true, - 'weight' => 0.0, - 'shippingtime' => null, - 'pricegroupActive' => false, - 'pricegroupID' => null, - 'length' => 0.0, - 'height' => 0.0, - 'width' => 0.0, - 'laststock' => true, - 'additionaltext' => '36', - 'datum' => '2012-08-21', - 'update' => '2012-08-21', - 'sales' => 0, - 'filtergroupID' => null, - 'priceStartingFrom' => null, - 'pseudopricePercent' => null, - 'sVariantArticle' => null, - 'sConfigurator' => true, - 'metaTitle' => null, - 'shippingfree' => false, - 'suppliernumber' => '', - 'notification' => false, - 'ean' => '', - 'keywords' => '', - 'sReleasedate' => '', - 'template' => '', - 'attributes' => [ - 'core' => [ - 'storage' => [ - 'id' => 399, - 'articledetailsID' => 380, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - ], - ], - ], - 'allowBuyInListing' => false, - 'attr1' => '', - 'attr2' => '', - 'attr3' => '', - 'attr4' => '', - 'attr5' => '', - 'attr6' => '', - 'attr7' => '', - 'attr8' => '', - 'attr9' => '', - 'attr10' => '', - 'attr11' => '', - 'attr12' => '', - 'attr13' => '', - 'attr14' => '', - 'attr15' => '', - 'attr16' => '', - 'attr17' => null, - 'attr18' => '', - 'attr19' => '', - 'attr20' => '', - 'supplierName' => 'Beachdreams Clothes', - 'supplierImg' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'supplierID' => 12, - 'supplierDescription' => '', - 'supplierMedia' => [ - 'id' => 666, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/a1/f7/82/beachdreams.png', - 'description' => 'beachdreams', - 'extension' => 'png', - 'main' => null, - 'parentId' => null, - 'width' => 204, - 'height' => 85, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png', - 'retinaSource' => 'http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/95/da/c8/beachdreams_200x200.png, http://shopware.localhost/media/image/83/c0/5c/beachdreams_200x200@2x.png 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png', - 'retinaSource' => 'http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/60/3d/67/beachdreams_600x600.png, http://shopware.localhost/media/image/9b/c0/49/beachdreams_600x600@2x.png 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png', - 'retinaSource' => 'http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png', - 'sourceSet' => 'http://shopware.localhost/media/image/3f/32/20/beachdreams_1280x1280.png, http://shopware.localhost/media/image/b9/3b/25/beachdreams_1280x1280@2x.png 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'supplier_attributes' => [ - ], - 'newArticle' => false, - 'sUpcoming' => false, - 'topseller' => false, - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '23,99', - 'pseudoprice' => '0', - 'referenceprice' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 23.989999999999998, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - 'image' => [ - 'id' => 428, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 690, - 'height' => 696, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg, http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg, http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg, http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - ], - 'prices' => [ - 0 => [ - 'valFrom' => 1, - 'valTo' => null, - 'from' => 1, - 'to' => null, - 'price' => '23,99', - 'pseudoprice' => '0', - 'referenceprice' => '0', - 'pseudopricePercent' => null, - 'has_pseudoprice' => false, - 'price_numeric' => 23.989999999999998, - 'pseudoprice_numeric' => 0.0, - 'price_attributes' => [ - ], - 'pricegroup' => 'EK', - 'regulationPrice' => null, - 'minpurchase' => 1, - 'maxpurchase' => '100', - 'purchasesteps' => 1, - 'purchaseunit' => null, - 'referenceunit' => null, - 'packunit' => '', - 'unitID' => null, - 'sUnit' => [ - 'unit' => null, - 'description' => null, - ], - 'unit_attributes' => [ - ], - ], - ], - 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10162.1', - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=162', - 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=162&number=SW10162.1', - ], - 'amount' => '23,99', - 'amountnet' => '20,16', - 'priceNumeric' => 23.989999999999998, - 'amountNumeric' => 23.989999999999998, - 'amountnetNumeric' => 20.159663865546001, - 'image' => [ - 'id' => 428, - 'position' => null, - 'source' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', - 'description' => '', - 'extension' => 'jpg', - 'main' => true, - 'parentId' => null, - 'width' => 690, - 'height' => 696, - 'thumbnails' => [ - 0 => [ - 'source' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg, http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg 2x', - 'maxWidth' => '200', - 'maxHeight' => '200', - 'attributes' => [ - ], - ], - 1 => [ - 'source' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg, http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg 2x', - 'maxWidth' => '600', - 'maxHeight' => '600', - 'attributes' => [ - ], - ], - 2 => [ - 'source' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', - 'retinaSource' => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', - 'sourceSet' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg, http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg 2x', - 'maxWidth' => '1280', - 'maxHeight' => '1280', - 'attributes' => [ - ], - ], - ], - 'attributes' => [ - ], - 'attribute' => [ - ], - 'src' => [ - 'original' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', - 0 => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', - 1 => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', - 2 => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', - ], - 'srchd' => [ - 'original' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', - 0 => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', - 1 => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', - 2 => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', - ], - 'res' => [ - 'original' => [ - 'width' => 696, - 'height' => 690, - ], - ], - ], - 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=162', - 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=682', - 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10162.1', - 'tax' => '3,83', + 'referenceunit' => null, + 'packunit' => '', + 'unitID' => null, + 'sUnit' => [ + 'unit' => null, + 'description' => null, + ], + 'unit_attributes' => [ + ], ], + ], + 'linkBasket' => 'shopware.php?sViewport=basket&sAdd=SW10162.1', + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=162', + 'linkVariant' => 'shopware.php?sViewport=detail&sArticle=162&number=SW10162.1', ], - 'Amount' => '272,89', - 'AmountNet' => '229,31', - 'Quantity' => 7, - 'AmountNumeric' => 347.89000000000004, - 'AmountNetNumeric' => 292.33999999999997, - 'AmountWithTax' => '0', - 'AmountWithTaxNumeric' => 0.0, - 'sCurrencyId' => 1, - 'sCurrencyName' => 'EUR', - 'sCurrencyFactor' => 1.0, - 'sShippingcostsWithTax' => 75.0, - 'sShippingcostsNet' => 63.030000000000001, - 'sShippingcostsTax' => 19.0, - 'sShippingcostsDifference' => 9727.1100000000006, - 'sTaxRates' => [ - '19.00' => 55.549999999999997, + 'amount' => '23,99', + 'amountnet' => '20,16', + 'priceNumeric' => 23.989999999999998, + 'amountNumeric' => 23.989999999999998, + 'amountnetNumeric' => 20.159663865546001, + 'image' => [ + 'id' => 428, + 'position' => null, + 'source' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', + 'description' => '', + 'extension' => 'jpg', + 'main' => true, + 'parentId' => null, + 'width' => 690, + 'height' => 696, + 'thumbnails' => [ + 0 => [ + 'source' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg, http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg 2x', + 'maxWidth' => '200', + 'maxHeight' => '200', + 'attributes' => [ + ], + ], + 1 => [ + 'source' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg, http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg 2x', + 'maxWidth' => '600', + 'maxHeight' => '600', + 'attributes' => [ + ], + ], + 2 => [ + 'source' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', + 'retinaSource' => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', + 'sourceSet' => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg, http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg 2x', + 'maxWidth' => '1280', + 'maxHeight' => '1280', + 'attributes' => [ + ], + ], + ], + 'attributes' => [ + ], + 'attribute' => [ + ], + 'src' => [ + 'original' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', + 0 => 'http://shopware.localhost/media/image/58/ea/c5/Sandale-Beach-pink_200x200.jpg', + 1 => 'http://shopware.localhost/media/image/78/a9/9b/Sandale-Beach-pink_600x600.jpg', + 2 => 'http://shopware.localhost/media/image/94/16/81/Sandale-Beach-pink_1280x1280.jpg', + ], + 'srchd' => [ + 'original' => 'http://shopware.localhost/media/image/de/df/71/Sandale-Beach-pink.jpg', + 0 => 'http://shopware.localhost/media/image/eb/f3/ab/Sandale-Beach-pink_200x200@2x.jpg', + 1 => 'http://shopware.localhost/media/image/ae/b3/2a/Sandale-Beach-pink_600x600@2x.jpg', + 2 => 'http://shopware.localhost/media/image/48/6b/96/Sandale-Beach-pink_1280x1280@2x.jpg', + ], + 'res' => [ + 'original' => [ + 'width' => 696, + 'height' => 690, + ], + ], ], - 'sShippingcosts' => 75.0, - 'sAmount' => 347.89000000000004, - 'sAmountTax' => 55.549999999999997, + 'linkDetails' => 'shopware.php?sViewport=detail&sArticle=162', + 'linkDelete' => 'shopware.php?sViewport=basket&sDelete=682', + 'linkNote' => 'shopware.php?sViewport=note&sAdd=SW10162.1', + 'tax' => '3,83', + ], + ], + 'Amount' => '272,89', + 'AmountNet' => '229,31', + 'Quantity' => 7, + 'AmountNumeric' => 347.89000000000004, + 'AmountNetNumeric' => 292.33999999999997, + 'AmountWithTax' => '0', + 'AmountWithTaxNumeric' => 0.0, + 'sCurrencyId' => 1, + 'sCurrencyName' => 'EUR', + 'sCurrencyFactor' => 1.0, + 'sShippingcostsWithTax' => 75.0, + 'sShippingcostsNet' => 63.030000000000001, + 'sShippingcostsTax' => 19.0, + 'sShippingcostsDifference' => 9727.1100000000006, + 'sTaxRates' => [ + '19.00' => 55.549999999999997, ], + 'sShippingcosts' => 75.0, + 'sAmount' => 347.89000000000004, + 'sAmountTax' => 55.549999999999997, + ], ];