From fc6cad6738adb46ad00f2577fde85057b1f245c1 Mon Sep 17 00:00:00 2001 From: Jia Jia Ji Date: Fri, 21 Jan 2022 23:40:39 +0100 Subject: [PATCH 1/8] works but have an issue, more details on pimcore/demo##279 --- config/ecommerce/base-ecommerce.yaml | 30 +- public/static/js/payment.js | 145 +- src/Controller/PaymentController.php | 71 +- templates/payment/checkout_payment.html.twig | 145 +- var/classes/definition_OnlineShopOrder.php | 5215 +++++++---------- var/classes/fieldcollections/PaymentInfo.php | 585 +- .../objectbricks/PaymentProviderUnzer.php | 296 - 7 files changed, 2850 insertions(+), 3637 deletions(-) delete mode 100644 var/classes/objectbricks/PaymentProviderUnzer.php diff --git a/config/ecommerce/base-ecommerce.yaml b/config/ecommerce/base-ecommerce.yaml index 53e2ff32..d5654a36 100644 --- a/config/ecommerce/base-ecommerce.yaml +++ b/config/ecommerce/base-ecommerce.yaml @@ -209,7 +209,7 @@ pimcore_ecommerce_framework: tenants: default: payment: - provider: unzer + provider: paypal steps: deliveryaddress: class: \Pimcore\Bundle\EcommerceFrameworkBundle\CheckoutManager\DeliveryAddress @@ -229,14 +229,32 @@ pimcore_ecommerce_framework: # Configuration of payment providers, key is name of provider providers: - - unzer: - provider_id: Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\Payment\Unzer + paypal: + provider_id: Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\Payment\PayPalSmartPaymentButton profile: sandbox profiles: sandbox: - publicAccessKey: s-pub-2a10GBUCSfOqqtyulwXJub7e8m0EwDbP - privateAccessKey: s-priv-2a10PcxkejMP6YJwHH1shzvHyOd8PrOt + client_id: '%env(paypal_client_id)%' + client_secret: '%env(paypal_secret_id)%' + + # defines, if payment caputure should take place automatic or manual, default is automatic + capture_strategy: automatic + + # defines mode of PayPal API, default value is sandbox + mode: sandbox + + # defines PayPal application context for shipping, default value is NO_SHIPPING + # see https://developer.paypal.com/docs/api/orders/v2/#definition-application_context + shipping_preference: NO_SHIPPING + + # defines PayPal application context for user action, default value is PAY_NOW + # see https://developer.paypal.com/docs/api/orders/v2/#definition-application_context + user_action: PAY_NOW + + live: + client_id: + client_secret: + mode: live # tracking manager - define which trackers (e.g. Google Analytics Universal Ecommerce) are active and should # be called when you track something via TrackingManager diff --git a/public/static/js/payment.js b/public/static/js/payment.js index 780654c8..7c2e7c5f 100644 --- a/public/static/js/payment.js +++ b/public/static/js/payment.js @@ -1,93 +1,52 @@ - - -$(document).ready(function() { - - let unzerInstance = new unzer(_config.accessKey, {locale: 'en-GB'}); - - let $errorHolder = $('#error-holder'); - - let Card = unzerInstance.Card(); - // Rendering input fields - Card.create('number', { - containerId: 'card-element-id-number', - onlyIframe: false - }); - Card.create('expiry', { - containerId: 'card-element-id-expiry', - onlyIframe: false - }); - Card.create('cvc', { - containerId: 'card-element-id-cvc', - onlyIframe: false - }); - - let ccForm = document.getElementById('cc-form'); - let submitPaymentResultForm = document.getElementById('js-submit-payment-result'); - - // General event handling - let buttonDisabled = {}; - let submitButton = document.getElementById('submit-button'); - submitButton.disabled = true; - - - let successHandler = function(data) { - console.log('success'); - data.method = data.method ? data.method : 'card'; - $('.js-payment-method-hidden').val(data.method); - $('.js-payment-id-hidden').val(data.id); - - submitPaymentResultForm.submit(); - }; - - let errorHandler = function(error) { - console.log('error'); - $errorHolder.html(error.message); - }; - - Card.addEventListener('change', function(e) { - if (e.success) { - buttonDisabled[e.type] = true; - submitButton.disabled = false; - $errorHolder.html('') - } else { - buttonDisabled[e.type] = false; - submitButton.disabled = true; - $errorHolder.html(e.error) - } - submitButton.disabled = !(buttonDisabled.number && buttonDisabled.expiry && buttonDisabled.cvc); - - }); - - - ccForm.addEventListener('submit', function(event) { - event.preventDefault(); - console.log('creditcard form submit'); - Card.createResource() - .then(successHandler) - .catch(errorHandler) - }); - - - $('#js-redirect-payment-method-paypal').on('click', function(e){ - e.preventDefault(); - - var Paypal = unzerInstance.Paypal(); - - Paypal.createResource() - .then(successHandler) - .catch(errorHandler) - }); - - $('#js-redirect-payment-method-paypal-sofort').on('click', function(e){ - e.preventDefault(); - - let Sofort = unzerInstance.Sofort(); - - Sofort.createResource() - .then(successHandler) - .catch(errorHandler) - }); - - -}); - +paypal.Buttons({ + onCancel: function (data) { + // e.g. redirect to a certain page or show message + window.location.replace('/payment-error'); + }, + onError: function (data) { + // e.g. redirect to a certain page or show message + window.location.replace('/payment-error'); + }, + createOrder: function(data, actions) { + return fetch('/checkout-start-payment', { + method: 'post', + headers: { + 'content-type': 'application/json' + } + }).then(function(res) { + return res.json(); + }).then(function (data) { + return data.id; + }); + }, + onApprove: function(data) { + console.log(data); + // make sure you deliver orderID, payerID and paymentID to your + // handle response controller action, e.g. by creating a form and + // posting the data + var form = document.createElement('form'); + document.body.appendChild(form); + form.method = 'POST'; + form.action = '/payment-commit-order'; + + var orderID = document.createElement('input'); + orderID.type = 'hidden'; + orderID.name = 'orderID'; + orderID.value = data['orderID']; + form.appendChild(orderID); + + var payerID = document.createElement('input'); + payerID.type = 'hidden'; + payerID.name = 'payerID'; + payerID.value = data['payerID']; + form.appendChild(payerID); + + var paymentID = document.createElement('input'); + paymentID.type = 'hidden'; + paymentID.name = 'paymentID'; + paymentID.value = data['paymentID']; + form.appendChild(paymentID); + + form.submit(); + } +}).render('#paypal-button-container'); \ No newline at end of file diff --git a/src/Controller/PaymentController.php b/src/Controller/PaymentController.php index 8d12515e..1d8657ff 100644 --- a/src/Controller/PaymentController.php +++ b/src/Controller/PaymentController.php @@ -20,9 +20,9 @@ use Pimcore\Bundle\EcommerceFrameworkBundle\CheckoutManager\V7\CheckoutManagerInterface; use Pimcore\Bundle\EcommerceFrameworkBundle\Factory; use Pimcore\Bundle\EcommerceFrameworkBundle\Model\AbstractOrder; -use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\Payment\Unzer; -use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\V7\Payment\StartPaymentRequest\UnzerRequest; +use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\Payment\PayPalSmartPaymentButton; use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\V7\Payment\StartPaymentResponse\UrlResponse; +use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\V7\Payment\StartPaymentRequest\AbstractRequest; use Pimcore\Controller\FrontendController; use Pimcore\Model\DataObject\OnlineShopOrder; use Pimcore\Translation\Translator; @@ -53,9 +53,9 @@ public function checkoutPaymentAction(Factory $factory, BreadcrumbHelperService $checkoutManager = $factory->getCheckoutManager($cart); $paymentProvider = $checkoutManager->getPayment(); - $accessKey = ''; - if ($paymentProvider instanceof Unzer) { - $accessKey = $paymentProvider->getPublicAccessKey(); + $SDKUrl = ''; + if($paymentProvider instanceof PayPalSmartPaymentButton) { + $SDKUrl = $paymentProvider->buildPaymentSDKLink(); } $trackingManager = $factory->getTrackingManager(); @@ -63,7 +63,7 @@ public function checkoutPaymentAction(Factory $factory, BreadcrumbHelperService return $this->render('payment/checkout_payment.html.twig', [ 'cart' => $cart, - 'accessKey' => $accessKey + 'SDKUrl' => $SDKUrl ]); } @@ -77,39 +77,24 @@ public function checkoutPaymentAction(Factory $factory, BreadcrumbHelperService */ public function startPaymentAction(Request $request, Factory $factory, LoggerInterface $logger) { - try { $cartManager = $factory->getCartManager(); $cart = $cartManager->getOrCreateCartByName('cart'); - /** - * @var $checkoutManager CheckoutManagerInterface - */ - $checkoutManager = $factory->getCheckoutManager($cart); + $checkoutManager = Factory::getInstance()->getCheckoutManager($cart); + $paymentInformation = $checkoutManager->initOrderPayment(); + $order = $paymentInformation->getObject(); - $paymentInfo = $checkoutManager->initOrderPayment(); + $config = [ + 'return_url' => '', + 'cancel_url' => '' . 'http://localhost/payment?error=cancel', + 'OrderDescription' => 'My Order ' . $order->getOrdernumber() . ' at pimcore.org', + 'InternalPaymentId' => $paymentInformation->getInternalPaymentId() + ]; - /** - * @var OnlineShopOrder $order - */ - $order = $paymentInfo->getObject(); - - $paymentConfig = new UnzerRequest(); - $paymentConfig->setInternalPaymentId($paymentInfo->getInternalPaymentId()); - $paymentConfig->setPaymentReference($request->get('paymentId')); - $paymentConfig->setReturnUrl($this->generateUrl('shop-commit-order', ['order' => $order->getOrdernumber()], UrlGeneratorInterface::ABSOLUTE_URL)); - $paymentConfig->setErrorUrl($this->generateUrl('shop-checkout-payment-error', [], UrlGeneratorInterface::ABSOLUTE_URL)); + $paymentConfig = new AbstractRequest($config); $response = $checkoutManager->startOrderPaymentWithPaymentProvider($paymentConfig); - - if ($response instanceof UrlResponse) { - return new RedirectResponse($response->getUrl()); - } - } catch (\Exception $e) { - $this->addFlash('danger', $e->getMessage()); - $logger->error($e->getMessage()); - - return $this->redirectToRoute('shop-checkout-payment'); - } + return new \Symfony\Component\HttpFoundation\JsonResponse($response->getJsonString(), 200, [], true); } /** @@ -141,35 +126,19 @@ public function paymentErrorAction(Request $request, LoggerInterface $logger) */ public function commitOrderAction(Request $request, Factory $factory, LoggerInterface $logger, Translator $translator, SessionInterface $session) { - $order = OnlineShopOrder::getByOrdernumber($request->query->get('order'), 1); - $cartManager = $factory->getCartManager(); $cart = $cartManager->getOrCreateCartByName('cart'); - /** - * @var $checkoutManager CheckoutManagerInterface - */ $checkoutManager = $factory->getCheckoutManager($cart); + $params = array_merge($request->query->all(), $request->request->all()); - try { - $order = $checkoutManager->handlePaymentResponseAndCommitOrderPayment([ - 'order' => $order - ]); - } catch (\Exception $e) { - $logger->error($e->getMessage()); - } - - if (!$order || $order->getOrderState() !== AbstractOrder::ORDER_STATE_COMMITTED) { - $this->addFlash('danger', $translator->trans('checkout.payment-failed')); - - return $this->redirectToRoute('shop-checkout-payment'); - } + $order = $checkoutManager->handlePaymentResponseAndCommitOrderPayment($params); if (!$session->isStarted()) { $session->start(); } - $session->set('last_order_id', $order->getId()); + $session->set("last_order_id", $order->getId()); return $this->redirectToRoute('shop-checkout-completed'); } diff --git a/templates/payment/checkout_payment.html.twig b/templates/payment/checkout_payment.html.twig index 182c63ef..e39f576e 100644 --- a/templates/payment/checkout_payment.html.twig +++ b/templates/payment/checkout_payment.html.twig @@ -3,14 +3,7 @@ {% extends 'layouts/layout.html.twig' %} -{% do pimcore_head_script().appendScript(' - var _config = _config || {}; - _config["accessKey"] = "' ~ accessKey | raw ~ '"; -') %} - -{% do pimcore_head_link().appendStylesheet('https://static.unzer.com/v1/unzer.css') %} -{% do pimcore_head_script().appendFile('https://static.unzer.com/v1/unzer.js') %} - +{% do pimcore_head_script().appendFile(SDKUrl) %} {% block content %} @@ -22,99 +15,7 @@

{{ 'checkout.payment' | trans }}

-
-
-
-
- -
- - -
-
-
- -
-
- - -
-
-
- -
-
-
-
-
- -
-
-
-
- -
-
-
-
-
- -
-
- - -
-
-
-
-
-
- -
- -
-
-
-
-
- - -
- -
- -
-
-
-
-
-
- -
- -
-
-
-
-
- - -
- -
- -
-
-
-
+
@@ -152,7 +53,7 @@ Visa number - 4711100000000000 + 4111111111111111 @@ -164,15 +65,11 @@ cvc 123 - - - 3D Secure Password - secret3 - +   Mastercard number - 5453010000059543 + 5555555555554444 @@ -184,11 +81,6 @@ cvc 123 - - - 3D Secure Password - secret3 -
@@ -198,22 +90,13 @@ Sofort - - - - - - - - - - + +
bank number00000
account number123456
USER_PIN - 123456always fails
+ EPS + - - +
USER_TAN - 12345any data works, lets you decide the payment result
@@ -224,12 +107,8 @@ - - - - - - + +
Usernamepaypal-customer@heidelpay.de
PasswordheidelpayTest Credentialshere in the sandbox
diff --git a/var/classes/definition_OnlineShopOrder.php b/var/classes/definition_OnlineShopOrder.php index b9ab61f3..066a5f8f 100644 --- a/var/classes/definition_OnlineShopOrder.php +++ b/var/classes/definition_OnlineShopOrder.php @@ -52,7 +52,7 @@ 'name' => 'OnlineShopOrder', 'description' => '', 'creationDate' => 0, - 'modificationDate' => 1617805442, + 'modificationDate' => 1642802394, 'userOwner' => 0, 'userModification' => 1, 'parentClass' => '\\Pimcore\\Bundle\\EcommerceFrameworkBundle\\Model\\AbstractOrder', @@ -61,13 +61,16 @@ 'useTraits' => '', 'listingUseTraits' => '', 'encryption' => false, - 'encryptedTables' => + 'encryptedTables' => array ( ), 'allowInherit' => false, - 'allowVariants' => NULL, + 'allowVariants' => false, 'showVariants' => false, - 'layoutDefinitions' => + 'fieldDefinitions' => + array ( + ), + 'layoutDefinitions' => Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( 'fieldtype' => 'panel', 'layout' => NULL, @@ -83,9 +86,9 @@ 'bodyStyle' => NULL, 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Layout\Tabpanel::__set_state(array( 'fieldtype' => 'tabpanel', 'border' => false, @@ -101,9 +104,9 @@ 'bodyStyle' => NULL, 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( 'fieldtype' => 'panel', 'layout' => '', @@ -119,9 +122,9 @@ 'bodyStyle' => '', 'datatype' => 'layout', 'permissions' => '', - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Layout\Text::__set_state(array( 'fieldtype' => 'text', 'html' => 'OnlineShopOrder as storage for created orders. 
​May be extended for specific use case. 
', @@ -139,15 +142,15 @@ 'bodyStyle' => 'padding: 10px; background-color: #d9edf7; border-color: #bce8f1 !important; color: #31708f;', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), )), - 1 => + 1 => Pimcore\Model\DataObject\ClassDefinition\Layout\Fieldset::__set_state(array( 'fieldtype' => 'fieldset', 'name' => 'Order Information', @@ -161,9 +164,9 @@ 'bodyStyle' => '', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 400, @@ -186,32 +189,80 @@ 'invisible' => false, 'visibleGridView' => true, 'visibleSearch' => true, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 1 => + 1 => Pimcore\Model\DataObject\ClassDefinition\Data\Select::__set_state(array( 'fieldtype' => 'select', - 'options' => + 'options' => array ( - 0 => + 0 => array ( 'key' => 'Committed', 'value' => 'committed', ), - 1 => + 1 => array ( 'key' => 'Cancelled', 'value' => 'cancelled', ), - 2 => + 2 => array ( 'key' => 'Payment Pending', 'value' => 'paymentPending', ), - 3 => + 3 => array ( 'key' => 'Aborted', 'value' => 'aborted', @@ -237,14 +288,64 @@ 'invisible' => false, 'visibleGridView' => true, 'visibleSearch' => true, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 2 => + 2 => Pimcore\Model\DataObject\ClassDefinition\Data\Datetime::__set_state(array( 'fieldtype' => 'datetime', + 'queryColumnType' => 'bigint(20)', + 'columnType' => 'bigint(20)', 'defaultValue' => NULL, 'useCurrentDate' => false, 'name' => 'orderdate', @@ -261,12 +362,60 @@ 'invisible' => false, 'visibleGridView' => true, 'visibleSearch' => true, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 3 => + 3 => Pimcore\Model\DataObject\ClassDefinition\Data\ManyToManyObjectRelation::__set_state(array( 'fieldtype' => 'manyToManyObjectRelation', 'width' => '', @@ -276,12 +425,13 @@ 'visibleFields' => NULL, 'allowToCreateNewObject' => true, 'optimizedAdminLoading' => false, - 'visibleFieldDefinitions' => + 'enableTextSelection' => false, + 'visibleFieldDefinitions' => array ( ), - 'classes' => + 'classes' => array ( - 0 => + 0 => array ( 'classes' => 'OnlineShopOrderItem', ), @@ -300,11 +450,59 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), )), - 4 => + 4 => Pimcore\Model\DataObject\ClassDefinition\Data\Textarea::__set_state(array( 'fieldtype' => 'textarea', 'width' => 400, @@ -326,11 +524,59 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), )), - 5 => + 5 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 400, @@ -353,12 +599,60 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 6 => + 6 => Pimcore\Model\DataObject\ClassDefinition\Data\ManyToManyObjectRelation::__set_state(array( 'fieldtype' => 'manyToManyObjectRelation', 'width' => '', @@ -368,12 +662,13 @@ 'visibleFields' => NULL, 'allowToCreateNewObject' => true, 'optimizedAdminLoading' => false, - 'visibleFieldDefinitions' => + 'enableTextSelection' => false, + 'visibleFieldDefinitions' => array ( ), - 'classes' => + 'classes' => array ( - 0 => + 0 => array ( 'classes' => 'OnlineShopVoucherToken', ), @@ -392,19 +687,67 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), )), ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), 'labelWidth' => 100, 'labelAlign' => 'left', )), - 2 => + 2 => Pimcore\Model\DataObject\ClassDefinition\Layout\Fieldset::__set_state(array( 'fieldtype' => 'fieldset', 'name' => 'Gift Items', @@ -418,9 +761,9 @@ 'bodyStyle' => '', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Data\ManyToManyObjectRelation::__set_state(array( 'fieldtype' => 'manyToManyObjectRelation', 'width' => '', @@ -430,12 +773,13 @@ 'visibleFields' => NULL, 'allowToCreateNewObject' => true, 'optimizedAdminLoading' => false, - 'visibleFieldDefinitions' => + 'enableTextSelection' => false, + 'visibleFieldDefinitions' => array ( ), - 'classes' => + 'classes' => array ( - 0 => + 0 => array ( 'classes' => 'OnlineShopOrderItem', ), @@ -454,19 +798,67 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), )), ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), 'labelWidth' => 100, 'labelAlign' => 'left', )), - 3 => + 3 => Pimcore\Model\DataObject\ClassDefinition\Layout\Fieldset::__set_state(array( 'fieldtype' => 'fieldset', 'name' => 'Price Information', @@ -480,12 +872,12 @@ 'bodyStyle' => '', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Data\Fieldcollections::__set_state(array( 'fieldtype' => 'fieldcollections', - 'allowedTypes' => + 'allowedTypes' => array ( 0 => 'OrderPriceModifications', ), @@ -510,11 +902,59 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), )), - 1 => + 1 => Pimcore\Model\DataObject\ClassDefinition\Data\Numeric::__set_state(array( 'fieldtype' => 'numeric', 'width' => 400, @@ -540,12 +980,60 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 2 => + 2 => Pimcore\Model\DataObject\ClassDefinition\Data\Numeric::__set_state(array( 'fieldtype' => 'numeric', 'width' => 400, @@ -571,12 +1059,60 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 3 => + 3 => Pimcore\Model\DataObject\ClassDefinition\Data\Numeric::__set_state(array( 'fieldtype' => 'numeric', 'width' => 400, @@ -602,12 +1138,60 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 4 => + 4 => Pimcore\Model\DataObject\ClassDefinition\Data\Numeric::__set_state(array( 'fieldtype' => 'numeric', 'width' => 400, @@ -633,12 +1217,60 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 5 => + 5 => Pimcore\Model\DataObject\ClassDefinition\Data\Table::__set_state(array( 'fieldtype' => 'table', 'width' => '', @@ -649,7 +1281,7 @@ 'rowsFixed' => false, 'data' => '', 'columnConfigActivated' => false, - 'columnConfig' => + 'columnConfig' => array ( ), 'name' => 'taxInfo', @@ -666,11 +1298,59 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), )), - 6 => + 6 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => NULL, @@ -693,20 +1373,68 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), 'labelWidth' => 100, 'labelAlign' => 'left', )), - 4 => + 4 => Pimcore\Model\DataObject\ClassDefinition\Layout\Fieldset::__set_state(array( 'fieldtype' => 'fieldset', 'name' => 'System Informations', @@ -720,9 +1448,9 @@ 'bodyStyle' => '', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 400, @@ -745,12 +1473,60 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 1 => + 1 => Pimcore\Model\DataObject\ClassDefinition\Data\ManyToOneRelation::__set_state(array( 'fieldtype' => 'manyToOneRelation', 'width' => '', @@ -758,16 +1534,16 @@ 'relationType' => true, 'objectsAllowed' => true, 'assetsAllowed' => false, - 'assetTypes' => + 'assetTypes' => array ( ), 'documentsAllowed' => false, - 'documentTypes' => + 'documentTypes' => array ( ), - 'classes' => + 'classes' => array ( - 0 => + 0 => array ( 'classes' => 'OnlineShopOrder', ), @@ -786,11 +1562,59 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), )), - 2 => + 2 => Pimcore\Model\DataObject\ClassDefinition\Data\Numeric::__set_state(array( 'fieldtype' => 'numeric', 'width' => '', @@ -816,14 +1640,62 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), 'labelWidth' => 100, @@ -831,14 +1703,14 @@ )), ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), 'icon' => NULL, 'labelWidth' => 100, 'labelAlign' => 'left', )), - 1 => + 1 => Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( 'fieldtype' => 'panel', 'layout' => '', @@ -854,9 +1726,9 @@ 'bodyStyle' => '', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Data\ManyToOneRelation::__set_state(array( 'fieldtype' => 'manyToOneRelation', 'width' => 400, @@ -864,16 +1736,16 @@ 'relationType' => true, 'objectsAllowed' => true, 'assetsAllowed' => false, - 'assetTypes' => + 'assetTypes' => array ( ), 'documentsAllowed' => false, - 'documentTypes' => + 'documentTypes' => array ( ), - 'classes' => + 'classes' => array ( - 0 => + 0 => array ( 'classes' => 'Customer', ), @@ -892,11 +1764,59 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), )), - 1 => + 1 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 400, @@ -919,12 +1839,60 @@ 'invisible' => false, 'visibleGridView' => true, 'visibleSearch' => true, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 2 => + 2 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 400, @@ -947,12 +1915,60 @@ 'invisible' => false, 'visibleGridView' => true, 'visibleSearch' => true, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 3 => + 3 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 400, @@ -975,12 +1991,60 @@ 'invisible' => false, 'visibleGridView' => true, 'visibleSearch' => true, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 4 => + 4 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 400, @@ -1003,12 +2067,60 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 5 => + 5 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 400, @@ -1031,12 +2143,60 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 6 => + 6 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 400, @@ -1059,2874 +2219,700 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), - 7 => + 7 => Pimcore\Model\DataObject\ClassDefinition\Data\Country::__set_state(array( 'fieldtype' => 'country', 'width' => '', 'restrictTo' => '', - 'options' => + 'defaultValue' => NULL, + 'optionsProviderClass' => NULL, + 'optionsProviderData' => NULL, + 'columnLength' => 190, + 'dynamicOptions' => false, + 'name' => 'customerCountry', + 'title' => 'Country', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => true, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => false, + 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), + 'defaultValueGenerator' => '', + )), + 8 => + Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( + 'fieldtype' => 'input', + 'width' => 400, + 'defaultValue' => NULL, + 'columnLength' => 255, + 'regex' => '', + 'unique' => NULL, + 'showCharCount' => NULL, + 'name' => 'customerEmail', + 'title' => 'Email', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => true, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => true, + 'visibleSearch' => true, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), + 'defaultValueGenerator' => '', + )), + ), + 'locked' => false, + 'blockedVarsForExport' => + array ( + ), + 'icon' => NULL, + 'labelWidth' => 100, + 'labelAlign' => 'left', + )), + 2 => + Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( + 'fieldtype' => 'panel', + 'layout' => '', + 'border' => false, + 'name' => 'delivery', + 'type' => NULL, + 'region' => '', + 'title' => 'Delivery Information', + 'width' => NULL, + 'height' => NULL, + 'collapsible' => false, + 'collapsed' => false, + 'bodyStyle' => '', + 'datatype' => 'layout', + 'permissions' => NULL, + 'childs' => + array ( + 0 => + Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( + 'fieldtype' => 'input', + 'width' => 400, + 'defaultValue' => NULL, + 'columnLength' => 255, + 'regex' => '', + 'unique' => NULL, + 'showCharCount' => NULL, + 'name' => 'deliveryFirstname', + 'title' => 'Firstname', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => true, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => false, + 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), + 'defaultValueGenerator' => '', + )), + 1 => + Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( + 'fieldtype' => 'input', + 'width' => 400, + 'defaultValue' => NULL, + 'columnLength' => 255, + 'regex' => '', + 'unique' => NULL, + 'showCharCount' => NULL, + 'name' => 'deliveryLastname', + 'title' => 'Lastname', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => true, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => false, + 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( - 0 => - array ( - 'key' => 'Afghanistan', - 'value' => 'AF', - ), - 1 => - array ( - 'key' => 'Albania', - 'value' => 'AL', - ), - 2 => - array ( - 'key' => 'Algeria', - 'value' => 'DZ', - ), - 3 => - array ( - 'key' => 'American Samoa', - 'value' => 'AS', - ), - 4 => - array ( - 'key' => 'Andorra', - 'value' => 'AD', - ), - 5 => - array ( - 'key' => 'Angola', - 'value' => 'AO', - ), - 6 => - array ( - 'key' => 'Anguilla', - 'value' => 'AI', - ), - 7 => - array ( - 'key' => 'Antarctica', - 'value' => 'AQ', - ), - 8 => - array ( - 'key' => 'Antigua and Barbuda', - 'value' => 'AG', - ), - 9 => - array ( - 'key' => 'Argentina', - 'value' => 'AR', - ), - 10 => - array ( - 'key' => 'Armenia', - 'value' => 'AM', - ), - 11 => - array ( - 'key' => 'Aruba', - 'value' => 'AW', - ), - 12 => - array ( - 'key' => 'Ascension Island', - 'value' => 'AC', - ), - 13 => - array ( - 'key' => 'Australia', - 'value' => 'AU', - ), - 14 => - array ( - 'key' => 'Austria', - 'value' => 'AT', - ), - 15 => - array ( - 'key' => 'Azerbaijan', - 'value' => 'AZ', - ), - 16 => - array ( - 'key' => 'Bahamas', - 'value' => 'BS', - ), - 17 => - array ( - 'key' => 'Bahrain', - 'value' => 'BH', - ), - 18 => - array ( - 'key' => 'Bangladesh', - 'value' => 'BD', - ), - 19 => - array ( - 'key' => 'Barbados', - 'value' => 'BB', - ), - 20 => - array ( - 'key' => 'Belarus', - 'value' => 'BY', - ), - 21 => - array ( - 'key' => 'Belgium', - 'value' => 'BE', - ), - 22 => - array ( - 'key' => 'Belize', - 'value' => 'BZ', - ), - 23 => - array ( - 'key' => 'Benin', - 'value' => 'BJ', - ), - 24 => - array ( - 'key' => 'Bermuda', - 'value' => 'BM', - ), - 25 => - array ( - 'key' => 'Bhutan', - 'value' => 'BT', - ), - 26 => - array ( - 'key' => 'Bolivia', - 'value' => 'BO', - ), - 27 => - array ( - 'key' => 'Bosnia and Herzegovina', - 'value' => 'BA', - ), - 28 => - array ( - 'key' => 'Botswana', - 'value' => 'BW', - ), - 29 => - array ( - 'key' => 'Bouvet Island', - 'value' => 'BV', - ), - 30 => - array ( - 'key' => 'Brazil', - 'value' => 'BR', - ), - 31 => - array ( - 'key' => 'British Indian Ocean Territory', - 'value' => 'IO', - ), - 32 => - array ( - 'key' => 'British Virgin Islands', - 'value' => 'VG', - ), - 33 => - array ( - 'key' => 'Brunei', - 'value' => 'BN', - ), - 34 => - array ( - 'key' => 'Bulgaria', - 'value' => 'BG', - ), - 35 => - array ( - 'key' => 'Burkina Faso', - 'value' => 'BF', - ), - 36 => - array ( - 'key' => 'Burundi', - 'value' => 'BI', - ), - 37 => - array ( - 'key' => 'Cambodia', - 'value' => 'KH', - ), - 38 => - array ( - 'key' => 'Cameroon', - 'value' => 'CM', - ), - 39 => - array ( - 'key' => 'Canada', - 'value' => 'CA', - ), - 40 => - array ( - 'key' => 'Canary Islands', - 'value' => 'IC', - ), - 41 => - array ( - 'key' => 'Cape Verde', - 'value' => 'CV', - ), - 42 => - array ( - 'key' => 'Caribbean Netherlands', - 'value' => 'BQ', - ), - 43 => - array ( - 'key' => 'Cayman Islands', - 'value' => 'KY', - ), - 44 => - array ( - 'key' => 'Central African Republic', - 'value' => 'CF', - ), - 45 => - array ( - 'key' => 'Ceuta and Melilla', - 'value' => 'EA', - ), - 46 => - array ( - 'key' => 'Chad', - 'value' => 'TD', - ), - 47 => - array ( - 'key' => 'Chile', - 'value' => 'CL', - ), - 48 => - array ( - 'key' => 'China', - 'value' => 'CN', - ), - 49 => - array ( - 'key' => 'Christmas Island', - 'value' => 'CX', - ), - 50 => - array ( - 'key' => 'Clipperton Island', - 'value' => 'CP', - ), - 51 => - array ( - 'key' => 'Cocos (Keeling) Islands', - 'value' => 'CC', - ), - 52 => - array ( - 'key' => 'Colombia', - 'value' => 'CO', - ), - 53 => - array ( - 'key' => 'Comoros', - 'value' => 'KM', - ), - 54 => - array ( - 'key' => 'Congo - Brazzaville', - 'value' => 'CG', - ), - 55 => - array ( - 'key' => 'Congo - Kinshasa', - 'value' => 'CD', - ), - 56 => - array ( - 'key' => 'Cook Islands', - 'value' => 'CK', - ), - 57 => - array ( - 'key' => 'Costa Rica', - 'value' => 'CR', - ), - 58 => - array ( - 'key' => 'Croatia', - 'value' => 'HR', - ), - 59 => - array ( - 'key' => 'Cuba', - 'value' => 'CU', - ), - 60 => - array ( - 'key' => 'Curaçao', - 'value' => 'CW', - ), - 61 => - array ( - 'key' => 'Cyprus', - 'value' => 'CY', - ), - 62 => - array ( - 'key' => 'Czech Republic', - 'value' => 'CZ', - ), - 63 => - array ( - 'key' => 'Côte d’Ivoire', - 'value' => 'CI', - ), - 64 => - array ( - 'key' => 'Denmark', - 'value' => 'DK', - ), - 65 => - array ( - 'key' => 'Diego Garcia', - 'value' => 'DG', - ), - 66 => - array ( - 'key' => 'Djibouti', - 'value' => 'DJ', - ), - 67 => - array ( - 'key' => 'Dominica', - 'value' => 'DM', - ), - 68 => - array ( - 'key' => 'Dominican Republic', - 'value' => 'DO', - ), - 69 => - array ( - 'key' => 'Ecuador', - 'value' => 'EC', - ), - 70 => - array ( - 'key' => 'Egypt', - 'value' => 'EG', - ), - 71 => - array ( - 'key' => 'El Salvador', - 'value' => 'SV', - ), - 72 => - array ( - 'key' => 'Equatorial Guinea', - 'value' => 'GQ', - ), - 73 => - array ( - 'key' => 'Eritrea', - 'value' => 'ER', - ), - 74 => - array ( - 'key' => 'Estonia', - 'value' => 'EE', - ), - 75 => - array ( - 'key' => 'Ethiopia', - 'value' => 'ET', - ), - 76 => - array ( - 'key' => 'European Union', - 'value' => 'EU', - ), - 77 => - array ( - 'key' => 'Falkland Islands', - 'value' => 'FK', - ), - 78 => - array ( - 'key' => 'Faroe Islands', - 'value' => 'FO', - ), - 79 => - array ( - 'key' => 'Fiji', - 'value' => 'FJ', - ), - 80 => - array ( - 'key' => 'Finland', - 'value' => 'FI', - ), - 81 => - array ( - 'key' => 'France', - 'value' => 'FR', - ), - 82 => - array ( - 'key' => 'French Guiana', - 'value' => 'GF', - ), - 83 => - array ( - 'key' => 'French Polynesia', - 'value' => 'PF', - ), - 84 => - array ( - 'key' => 'French Southern Territories', - 'value' => 'TF', - ), - 85 => - array ( - 'key' => 'Gabon', - 'value' => 'GA', - ), - 86 => - array ( - 'key' => 'Gambia', - 'value' => 'GM', - ), - 87 => - array ( - 'key' => 'Georgia', - 'value' => 'GE', - ), - 88 => - array ( - 'key' => 'Germany', - 'value' => 'DE', - ), - 89 => - array ( - 'key' => 'Ghana', - 'value' => 'GH', - ), - 90 => - array ( - 'key' => 'Gibraltar', - 'value' => 'GI', - ), - 91 => - array ( - 'key' => 'Greece', - 'value' => 'GR', - ), - 92 => - array ( - 'key' => 'Greenland', - 'value' => 'GL', - ), - 93 => - array ( - 'key' => 'Grenada', - 'value' => 'GD', - ), - 94 => - array ( - 'key' => 'Guadeloupe', - 'value' => 'GP', - ), - 95 => - array ( - 'key' => 'Guam', - 'value' => 'GU', - ), - 96 => - array ( - 'key' => 'Guatemala', - 'value' => 'GT', - ), - 97 => - array ( - 'key' => 'Guernsey', - 'value' => 'GG', - ), - 98 => - array ( - 'key' => 'Guinea', - 'value' => 'GN', - ), - 99 => - array ( - 'key' => 'Guinea-Bissau', - 'value' => 'GW', - ), - 100 => - array ( - 'key' => 'Guyana', - 'value' => 'GY', - ), - 101 => - array ( - 'key' => 'Haiti', - 'value' => 'HT', - ), - 102 => - array ( - 'key' => 'Heard & McDonald Islands', - 'value' => 'HM', - ), - 103 => - array ( - 'key' => 'Honduras', - 'value' => 'HN', - ), - 104 => - array ( - 'key' => 'Hong Kong SAR China', - 'value' => 'HK', - ), - 105 => - array ( - 'key' => 'Hungary', - 'value' => 'HU', - ), - 106 => - array ( - 'key' => 'Iceland', - 'value' => 'IS', - ), - 107 => - array ( - 'key' => 'India', - 'value' => 'IN', - ), - 108 => - array ( - 'key' => 'Indonesia', - 'value' => 'ID', - ), - 109 => - array ( - 'key' => 'Iran', - 'value' => 'IR', - ), - 110 => - array ( - 'key' => 'Iraq', - 'value' => 'IQ', - ), - 111 => - array ( - 'key' => 'Ireland', - 'value' => 'IE', - ), - 112 => - array ( - 'key' => 'Isle of Man', - 'value' => 'IM', - ), - 113 => - array ( - 'key' => 'Israel', - 'value' => 'IL', - ), - 114 => - array ( - 'key' => 'Italy', - 'value' => 'IT', - ), - 115 => - array ( - 'key' => 'Jamaica', - 'value' => 'JM', - ), - 116 => - array ( - 'key' => 'Japan', - 'value' => 'JP', - ), - 117 => - array ( - 'key' => 'Jersey', - 'value' => 'JE', - ), - 118 => - array ( - 'key' => 'Jordan', - 'value' => 'JO', - ), - 119 => - array ( - 'key' => 'Kazakhstan', - 'value' => 'KZ', - ), - 120 => - array ( - 'key' => 'Kenya', - 'value' => 'KE', - ), - 121 => - array ( - 'key' => 'Kiribati', - 'value' => 'KI', - ), - 122 => - array ( - 'key' => 'Kosovo', - 'value' => 'XK', - ), - 123 => - array ( - 'key' => 'Kuwait', - 'value' => 'KW', - ), - 124 => - array ( - 'key' => 'Kyrgyzstan', - 'value' => 'KG', - ), - 125 => - array ( - 'key' => 'Laos', - 'value' => 'LA', - ), - 126 => - array ( - 'key' => 'Latvia', - 'value' => 'LV', - ), - 127 => - array ( - 'key' => 'Lebanon', - 'value' => 'LB', - ), - 128 => - array ( - 'key' => 'Lesotho', - 'value' => 'LS', - ), - 129 => - array ( - 'key' => 'Liberia', - 'value' => 'LR', - ), - 130 => - array ( - 'key' => 'Libya', - 'value' => 'LY', - ), - 131 => - array ( - 'key' => 'Liechtenstein', - 'value' => 'LI', - ), - 132 => - array ( - 'key' => 'Lithuania', - 'value' => 'LT', - ), - 133 => - array ( - 'key' => 'Luxembourg', - 'value' => 'LU', - ), - 134 => - array ( - 'key' => 'Macau SAR China', - 'value' => 'MO', - ), - 135 => - array ( - 'key' => 'Macedonia', - 'value' => 'MK', - ), - 136 => - array ( - 'key' => 'Madagascar', - 'value' => 'MG', - ), - 137 => - array ( - 'key' => 'Malawi', - 'value' => 'MW', - ), - 138 => - array ( - 'key' => 'Malaysia', - 'value' => 'MY', - ), - 139 => - array ( - 'key' => 'Maldives', - 'value' => 'MV', - ), - 140 => - array ( - 'key' => 'Mali', - 'value' => 'ML', - ), - 141 => - array ( - 'key' => 'Malta', - 'value' => 'MT', - ), - 142 => - array ( - 'key' => 'Marshall Islands', - 'value' => 'MH', - ), - 143 => - array ( - 'key' => 'Martinique', - 'value' => 'MQ', - ), - 144 => - array ( - 'key' => 'Mauritania', - 'value' => 'MR', - ), - 145 => - array ( - 'key' => 'Mauritius', - 'value' => 'MU', - ), - 146 => - array ( - 'key' => 'Mayotte', - 'value' => 'YT', - ), - 147 => - array ( - 'key' => 'Mexico', - 'value' => 'MX', - ), - 148 => - array ( - 'key' => 'Micronesia', - 'value' => 'FM', - ), - 149 => - array ( - 'key' => 'Moldova', - 'value' => 'MD', - ), - 150 => - array ( - 'key' => 'Monaco', - 'value' => 'MC', - ), - 151 => - array ( - 'key' => 'Mongolia', - 'value' => 'MN', - ), - 152 => - array ( - 'key' => 'Montenegro', - 'value' => 'ME', - ), - 153 => - array ( - 'key' => 'Montserrat', - 'value' => 'MS', - ), - 154 => - array ( - 'key' => 'Morocco', - 'value' => 'MA', - ), - 155 => - array ( - 'key' => 'Mozambique', - 'value' => 'MZ', - ), - 156 => - array ( - 'key' => 'Myanmar (Burma)', - 'value' => 'MM', - ), - 157 => - array ( - 'key' => 'Namibia', - 'value' => 'NA', - ), - 158 => - array ( - 'key' => 'Nauru', - 'value' => 'NR', - ), - 159 => - array ( - 'key' => 'Nepal', - 'value' => 'NP', - ), - 160 => - array ( - 'key' => 'Netherlands', - 'value' => 'NL', - ), - 161 => - array ( - 'key' => 'Netherlands Antilles', - 'value' => 'AN', - ), - 162 => - array ( - 'key' => 'New Caledonia', - 'value' => 'NC', - ), - 163 => - array ( - 'key' => 'New Zealand', - 'value' => 'NZ', - ), - 164 => - array ( - 'key' => 'Nicaragua', - 'value' => 'NI', - ), - 165 => - array ( - 'key' => 'Niger', - 'value' => 'NE', - ), - 166 => - array ( - 'key' => 'Nigeria', - 'value' => 'NG', - ), - 167 => - array ( - 'key' => 'Niue', - 'value' => 'NU', - ), - 168 => - array ( - 'key' => 'Norfolk Island', - 'value' => 'NF', - ), - 169 => - array ( - 'key' => 'North Korea', - 'value' => 'KP', - ), - 170 => - array ( - 'key' => 'Northern Mariana Islands', - 'value' => 'MP', - ), - 171 => - array ( - 'key' => 'Norway', - 'value' => 'NO', - ), - 172 => - array ( - 'key' => 'Oman', - 'value' => 'OM', - ), - 173 => - array ( - 'key' => 'Outlying Oceania', - 'value' => 'QO', - ), - 174 => - array ( - 'key' => 'Pakistan', - 'value' => 'PK', - ), - 175 => - array ( - 'key' => 'Palau', - 'value' => 'PW', - ), - 176 => - array ( - 'key' => 'Palestinian Territories', - 'value' => 'PS', - ), - 177 => - array ( - 'key' => 'Panama', - 'value' => 'PA', - ), - 178 => - array ( - 'key' => 'Papua New Guinea', - 'value' => 'PG', - ), - 179 => - array ( - 'key' => 'Paraguay', - 'value' => 'PY', - ), - 180 => - array ( - 'key' => 'Peru', - 'value' => 'PE', - ), - 181 => - array ( - 'key' => 'Philippines', - 'value' => 'PH', - ), - 182 => - array ( - 'key' => 'Pitcairn Islands', - 'value' => 'PN', - ), - 183 => - array ( - 'key' => 'Poland', - 'value' => 'PL', - ), - 184 => - array ( - 'key' => 'Portugal', - 'value' => 'PT', - ), - 185 => - array ( - 'key' => 'Puerto Rico', - 'value' => 'PR', - ), - 186 => - array ( - 'key' => 'Qatar', - 'value' => 'QA', - ), - 187 => - array ( - 'key' => 'Romania', - 'value' => 'RO', - ), - 188 => - array ( - 'key' => 'Russia', - 'value' => 'RU', - ), - 189 => - array ( - 'key' => 'Rwanda', - 'value' => 'RW', - ), - 190 => - array ( - 'key' => 'Réunion', - 'value' => 'RE', - ), - 191 => - array ( - 'key' => 'Saint Barthélemy', - 'value' => 'BL', - ), - 192 => - array ( - 'key' => 'Saint Helena', - 'value' => 'SH', - ), - 193 => - array ( - 'key' => 'Saint Kitts and Nevis', - 'value' => 'KN', - ), - 194 => - array ( - 'key' => 'Saint Lucia', - 'value' => 'LC', - ), - 195 => - array ( - 'key' => 'Saint Martin', - 'value' => 'MF', - ), - 196 => - array ( - 'key' => 'Saint Pierre and Miquelon', - 'value' => 'PM', - ), - 197 => - array ( - 'key' => 'Samoa', - 'value' => 'WS', - ), - 198 => - array ( - 'key' => 'San Marino', - 'value' => 'SM', - ), - 199 => - array ( - 'key' => 'Saudi Arabia', - 'value' => 'SA', - ), - 200 => - array ( - 'key' => 'Senegal', - 'value' => 'SN', - ), - 201 => - array ( - 'key' => 'Serbia', - 'value' => 'RS', - ), - 202 => - array ( - 'key' => 'Seychelles', - 'value' => 'SC', - ), - 203 => - array ( - 'key' => 'Sierra Leone', - 'value' => 'SL', - ), - 204 => - array ( - 'key' => 'Singapore', - 'value' => 'SG', - ), - 205 => - array ( - 'key' => 'Sint Maarten', - 'value' => 'SX', - ), - 206 => - array ( - 'key' => 'Slovakia', - 'value' => 'SK', - ), - 207 => - array ( - 'key' => 'Slovenia', - 'value' => 'SI', - ), - 208 => - array ( - 'key' => 'Solomon Islands', - 'value' => 'SB', - ), - 209 => - array ( - 'key' => 'Somalia', - 'value' => 'SO', - ), - 210 => - array ( - 'key' => 'South Africa', - 'value' => 'ZA', - ), - 211 => - array ( - 'key' => 'South Georgia & South Sandwich Islands', - 'value' => 'GS', - ), - 212 => - array ( - 'key' => 'South Korea', - 'value' => 'KR', - ), - 213 => - array ( - 'key' => 'South Sudan', - 'value' => 'SS', - ), - 214 => - array ( - 'key' => 'Spain', - 'value' => 'ES', - ), - 215 => - array ( - 'key' => 'Sri Lanka', - 'value' => 'LK', - ), - 216 => - array ( - 'key' => 'St. Vincent & Grenadines', - 'value' => 'VC', - ), - 217 => - array ( - 'key' => 'Sudan', - 'value' => 'SD', - ), - 218 => - array ( - 'key' => 'Suriname', - 'value' => 'SR', - ), - 219 => - array ( - 'key' => 'Svalbard and Jan Mayen', - 'value' => 'SJ', - ), - 220 => - array ( - 'key' => 'Swaziland', - 'value' => 'SZ', - ), - 221 => - array ( - 'key' => 'Sweden', - 'value' => 'SE', - ), - 222 => - array ( - 'key' => 'Switzerland', - 'value' => 'CH', - ), - 223 => - array ( - 'key' => 'Syria', - 'value' => 'SY', - ), - 224 => - array ( - 'key' => 'São Tomé and Príncipe', - 'value' => 'ST', - ), - 225 => - array ( - 'key' => 'Taiwan', - 'value' => 'TW', - ), - 226 => - array ( - 'key' => 'Tajikistan', - 'value' => 'TJ', - ), - 227 => - array ( - 'key' => 'Tanzania', - 'value' => 'TZ', - ), - 228 => - array ( - 'key' => 'Thailand', - 'value' => 'TH', - ), - 229 => - array ( - 'key' => 'Timor-Leste', - 'value' => 'TL', - ), - 230 => - array ( - 'key' => 'Togo', - 'value' => 'TG', - ), - 231 => - array ( - 'key' => 'Tokelau', - 'value' => 'TK', - ), - 232 => - array ( - 'key' => 'Tonga', - 'value' => 'TO', - ), - 233 => - array ( - 'key' => 'Trinidad and Tobago', - 'value' => 'TT', - ), - 234 => - array ( - 'key' => 'Tristan da Cunha', - 'value' => 'TA', - ), - 235 => - array ( - 'key' => 'Tunisia', - 'value' => 'TN', - ), - 236 => - array ( - 'key' => 'Turkey', - 'value' => 'TR', - ), - 237 => - array ( - 'key' => 'Turkmenistan', - 'value' => 'TM', - ), - 238 => - array ( - 'key' => 'Turks and Caicos Islands', - 'value' => 'TC', - ), - 239 => - array ( - 'key' => 'Tuvalu', - 'value' => 'TV', - ), - 240 => - array ( - 'key' => 'U.S. Outlying Islands', - 'value' => 'UM', - ), - 241 => - array ( - 'key' => 'U.S. Virgin Islands', - 'value' => 'VI', - ), - 242 => - array ( - 'key' => 'Uganda', - 'value' => 'UG', - ), - 243 => - array ( - 'key' => 'Ukraine', - 'value' => 'UA', - ), - 244 => - array ( - 'key' => 'United Arab Emirates', - 'value' => 'AE', - ), - 245 => - array ( - 'key' => 'United Kingdom', - 'value' => 'GB', - ), - 246 => - array ( - 'key' => 'United States', - 'value' => 'US', - ), - 247 => - array ( - 'key' => 'Unknown Region', - 'value' => 'ZZ', - ), - 248 => - array ( - 'key' => 'Uruguay', - 'value' => 'UY', - ), - 249 => - array ( - 'key' => 'Uzbekistan', - 'value' => 'UZ', - ), - 250 => - array ( - 'key' => 'Vanuatu', - 'value' => 'VU', - ), - 251 => - array ( - 'key' => 'Vatican City', - 'value' => 'VA', - ), - 252 => - array ( - 'key' => 'Venezuela', - 'value' => 'VE', - ), - 253 => - array ( - 'key' => 'Vietnam', - 'value' => 'VN', - ), - 254 => - array ( - 'key' => 'Wallis and Futuna', - 'value' => 'WF', - ), - 255 => - array ( - 'key' => 'Western Sahara', - 'value' => 'EH', - ), - 256 => - array ( - 'key' => 'Yemen', - 'value' => 'YE', - ), - 257 => - array ( - 'key' => 'Zambia', - 'value' => 'ZM', - ), - 258 => - array ( - 'key' => 'Zimbabwe', - 'value' => 'ZW', - ), - 259 => - array ( - 'key' => 'Åland Islands', - 'value' => 'AX', - ), - ), - 'defaultValue' => NULL, - 'optionsProviderClass' => NULL, - 'optionsProviderData' => NULL, - 'columnLength' => 190, - 'dynamicOptions' => false, - 'name' => 'customerCountry', - 'title' => 'Country', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'blockedVarsForExport' => - array ( - ), - 'defaultValueGenerator' => '', - )), - 8 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 400, - 'defaultValue' => NULL, - 'columnLength' => 255, - 'regex' => '', - 'unique' => NULL, - 'showCharCount' => NULL, - 'name' => 'customerEmail', - 'title' => 'Email', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => true, - 'visibleSearch' => true, - 'blockedVarsForExport' => - array ( - ), - 'defaultValueGenerator' => '', - )), - ), - 'locked' => false, - 'blockedVarsForExport' => - array ( - ), - 'icon' => NULL, - 'labelWidth' => 100, - 'labelAlign' => 'left', - )), - 2 => - Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( - 'fieldtype' => 'panel', - 'layout' => '', - 'border' => false, - 'name' => 'delivery', - 'type' => NULL, - 'region' => '', - 'title' => 'Delivery Information', - 'width' => NULL, - 'height' => NULL, - 'collapsible' => false, - 'collapsed' => false, - 'bodyStyle' => '', - 'datatype' => 'layout', - 'permissions' => NULL, - 'childs' => - array ( - 0 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 400, - 'defaultValue' => NULL, - 'columnLength' => 255, - 'regex' => '', - 'unique' => NULL, - 'showCharCount' => NULL, - 'name' => 'deliveryFirstname', - 'title' => 'Firstname', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'blockedVarsForExport' => - array ( - ), - 'defaultValueGenerator' => '', - )), - 1 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 400, - 'defaultValue' => NULL, - 'columnLength' => 255, - 'regex' => '', - 'unique' => NULL, - 'showCharCount' => NULL, - 'name' => 'deliveryLastname', - 'title' => 'Lastname', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'blockedVarsForExport' => - array ( - ), - 'defaultValueGenerator' => '', - )), - 2 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 400, - 'defaultValue' => NULL, - 'columnLength' => 255, - 'regex' => '', - 'unique' => NULL, - 'showCharCount' => NULL, - 'name' => 'deliveryCompany', - 'title' => 'Company', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'blockedVarsForExport' => - array ( - ), - 'defaultValueGenerator' => '', - )), - 3 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 400, - 'defaultValue' => NULL, - 'columnLength' => 255, - 'regex' => '', - 'unique' => NULL, - 'showCharCount' => NULL, - 'name' => 'deliveryStreet', - 'title' => 'Street', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'blockedVarsForExport' => - array ( - ), - 'defaultValueGenerator' => '', - )), - 4 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 400, - 'defaultValue' => NULL, - 'columnLength' => 255, - 'regex' => '', - 'unique' => NULL, - 'showCharCount' => NULL, - 'name' => 'deliveryZip', - 'title' => 'Zip', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'blockedVarsForExport' => - array ( - ), - 'defaultValueGenerator' => '', - )), - 5 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 400, - 'defaultValue' => NULL, - 'columnLength' => 255, - 'regex' => '', - 'unique' => NULL, - 'showCharCount' => NULL, - 'name' => 'deliveryCity', - 'title' => 'City', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'blockedVarsForExport' => - array ( - ), - 'defaultValueGenerator' => '', - )), - 6 => - Pimcore\Model\DataObject\ClassDefinition\Data\Country::__set_state(array( - 'fieldtype' => 'country', - 'width' => '', - 'restrictTo' => '', - 'options' => - array ( - 0 => - array ( - 'key' => 'Afghanistan', - 'value' => 'AF', - ), - 1 => - array ( - 'key' => 'Albania', - 'value' => 'AL', - ), - 2 => - array ( - 'key' => 'Algeria', - 'value' => 'DZ', - ), - 3 => - array ( - 'key' => 'American Samoa', - 'value' => 'AS', - ), - 4 => - array ( - 'key' => 'Andorra', - 'value' => 'AD', - ), - 5 => - array ( - 'key' => 'Angola', - 'value' => 'AO', - ), - 6 => - array ( - 'key' => 'Anguilla', - 'value' => 'AI', - ), - 7 => - array ( - 'key' => 'Antarctica', - 'value' => 'AQ', - ), - 8 => - array ( - 'key' => 'Antigua and Barbuda', - 'value' => 'AG', - ), - 9 => - array ( - 'key' => 'Argentina', - 'value' => 'AR', - ), - 10 => - array ( - 'key' => 'Armenia', - 'value' => 'AM', - ), - 11 => - array ( - 'key' => 'Aruba', - 'value' => 'AW', - ), - 12 => - array ( - 'key' => 'Ascension Island', - 'value' => 'AC', - ), - 13 => - array ( - 'key' => 'Australia', - 'value' => 'AU', - ), - 14 => - array ( - 'key' => 'Austria', - 'value' => 'AT', - ), - 15 => - array ( - 'key' => 'Azerbaijan', - 'value' => 'AZ', - ), - 16 => - array ( - 'key' => 'Bahamas', - 'value' => 'BS', - ), - 17 => - array ( - 'key' => 'Bahrain', - 'value' => 'BH', - ), - 18 => - array ( - 'key' => 'Bangladesh', - 'value' => 'BD', - ), - 19 => - array ( - 'key' => 'Barbados', - 'value' => 'BB', - ), - 20 => - array ( - 'key' => 'Belarus', - 'value' => 'BY', - ), - 21 => - array ( - 'key' => 'Belgium', - 'value' => 'BE', - ), - 22 => - array ( - 'key' => 'Belize', - 'value' => 'BZ', - ), - 23 => - array ( - 'key' => 'Benin', - 'value' => 'BJ', - ), - 24 => - array ( - 'key' => 'Bermuda', - 'value' => 'BM', - ), - 25 => - array ( - 'key' => 'Bhutan', - 'value' => 'BT', - ), - 26 => - array ( - 'key' => 'Bolivia', - 'value' => 'BO', - ), - 27 => - array ( - 'key' => 'Bosnia and Herzegovina', - 'value' => 'BA', - ), - 28 => - array ( - 'key' => 'Botswana', - 'value' => 'BW', - ), - 29 => - array ( - 'key' => 'Bouvet Island', - 'value' => 'BV', - ), - 30 => - array ( - 'key' => 'Brazil', - 'value' => 'BR', - ), - 31 => - array ( - 'key' => 'British Indian Ocean Territory', - 'value' => 'IO', - ), - 32 => - array ( - 'key' => 'British Virgin Islands', - 'value' => 'VG', - ), - 33 => - array ( - 'key' => 'Brunei', - 'value' => 'BN', - ), - 34 => - array ( - 'key' => 'Bulgaria', - 'value' => 'BG', - ), - 35 => - array ( - 'key' => 'Burkina Faso', - 'value' => 'BF', - ), - 36 => - array ( - 'key' => 'Burundi', - 'value' => 'BI', - ), - 37 => - array ( - 'key' => 'Cambodia', - 'value' => 'KH', - ), - 38 => - array ( - 'key' => 'Cameroon', - 'value' => 'CM', - ), - 39 => - array ( - 'key' => 'Canada', - 'value' => 'CA', - ), - 40 => - array ( - 'key' => 'Canary Islands', - 'value' => 'IC', - ), - 41 => - array ( - 'key' => 'Cape Verde', - 'value' => 'CV', - ), - 42 => - array ( - 'key' => 'Caribbean Netherlands', - 'value' => 'BQ', - ), - 43 => - array ( - 'key' => 'Cayman Islands', - 'value' => 'KY', - ), - 44 => - array ( - 'key' => 'Central African Republic', - 'value' => 'CF', - ), - 45 => - array ( - 'key' => 'Ceuta and Melilla', - 'value' => 'EA', - ), - 46 => - array ( - 'key' => 'Chad', - 'value' => 'TD', - ), - 47 => - array ( - 'key' => 'Chile', - 'value' => 'CL', - ), - 48 => - array ( - 'key' => 'China', - 'value' => 'CN', - ), - 49 => - array ( - 'key' => 'Christmas Island', - 'value' => 'CX', - ), - 50 => - array ( - 'key' => 'Clipperton Island', - 'value' => 'CP', - ), - 51 => - array ( - 'key' => 'Cocos (Keeling) Islands', - 'value' => 'CC', - ), - 52 => - array ( - 'key' => 'Colombia', - 'value' => 'CO', - ), - 53 => - array ( - 'key' => 'Comoros', - 'value' => 'KM', - ), - 54 => - array ( - 'key' => 'Congo - Brazzaville', - 'value' => 'CG', - ), - 55 => - array ( - 'key' => 'Congo - Kinshasa', - 'value' => 'CD', - ), - 56 => - array ( - 'key' => 'Cook Islands', - 'value' => 'CK', - ), - 57 => - array ( - 'key' => 'Costa Rica', - 'value' => 'CR', - ), - 58 => - array ( - 'key' => 'Croatia', - 'value' => 'HR', - ), - 59 => - array ( - 'key' => 'Cuba', - 'value' => 'CU', - ), - 60 => - array ( - 'key' => 'Curaçao', - 'value' => 'CW', - ), - 61 => - array ( - 'key' => 'Cyprus', - 'value' => 'CY', - ), - 62 => - array ( - 'key' => 'Czech Republic', - 'value' => 'CZ', - ), - 63 => - array ( - 'key' => 'Côte d’Ivoire', - 'value' => 'CI', - ), - 64 => - array ( - 'key' => 'Denmark', - 'value' => 'DK', - ), - 65 => - array ( - 'key' => 'Diego Garcia', - 'value' => 'DG', - ), - 66 => - array ( - 'key' => 'Djibouti', - 'value' => 'DJ', - ), - 67 => - array ( - 'key' => 'Dominica', - 'value' => 'DM', - ), - 68 => - array ( - 'key' => 'Dominican Republic', - 'value' => 'DO', - ), - 69 => - array ( - 'key' => 'Ecuador', - 'value' => 'EC', - ), - 70 => - array ( - 'key' => 'Egypt', - 'value' => 'EG', - ), - 71 => - array ( - 'key' => 'El Salvador', - 'value' => 'SV', - ), - 72 => - array ( - 'key' => 'Equatorial Guinea', - 'value' => 'GQ', - ), - 73 => - array ( - 'key' => 'Eritrea', - 'value' => 'ER', - ), - 74 => - array ( - 'key' => 'Estonia', - 'value' => 'EE', - ), - 75 => - array ( - 'key' => 'Ethiopia', - 'value' => 'ET', - ), - 76 => - array ( - 'key' => 'European Union', - 'value' => 'EU', - ), - 77 => - array ( - 'key' => 'Falkland Islands', - 'value' => 'FK', - ), - 78 => - array ( - 'key' => 'Faroe Islands', - 'value' => 'FO', - ), - 79 => - array ( - 'key' => 'Fiji', - 'value' => 'FJ', - ), - 80 => - array ( - 'key' => 'Finland', - 'value' => 'FI', - ), - 81 => - array ( - 'key' => 'France', - 'value' => 'FR', - ), - 82 => - array ( - 'key' => 'French Guiana', - 'value' => 'GF', - ), - 83 => - array ( - 'key' => 'French Polynesia', - 'value' => 'PF', - ), - 84 => - array ( - 'key' => 'French Southern Territories', - 'value' => 'TF', - ), - 85 => - array ( - 'key' => 'Gabon', - 'value' => 'GA', - ), - 86 => - array ( - 'key' => 'Gambia', - 'value' => 'GM', - ), - 87 => - array ( - 'key' => 'Georgia', - 'value' => 'GE', - ), - 88 => - array ( - 'key' => 'Germany', - 'value' => 'DE', - ), - 89 => - array ( - 'key' => 'Ghana', - 'value' => 'GH', - ), - 90 => - array ( - 'key' => 'Gibraltar', - 'value' => 'GI', - ), - 91 => - array ( - 'key' => 'Greece', - 'value' => 'GR', - ), - 92 => - array ( - 'key' => 'Greenland', - 'value' => 'GL', - ), - 93 => - array ( - 'key' => 'Grenada', - 'value' => 'GD', - ), - 94 => - array ( - 'key' => 'Guadeloupe', - 'value' => 'GP', - ), - 95 => - array ( - 'key' => 'Guam', - 'value' => 'GU', - ), - 96 => - array ( - 'key' => 'Guatemala', - 'value' => 'GT', - ), - 97 => - array ( - 'key' => 'Guernsey', - 'value' => 'GG', - ), - 98 => - array ( - 'key' => 'Guinea', - 'value' => 'GN', - ), - 99 => - array ( - 'key' => 'Guinea-Bissau', - 'value' => 'GW', - ), - 100 => - array ( - 'key' => 'Guyana', - 'value' => 'GY', - ), - 101 => - array ( - 'key' => 'Haiti', - 'value' => 'HT', - ), - 102 => - array ( - 'key' => 'Heard & McDonald Islands', - 'value' => 'HM', - ), - 103 => - array ( - 'key' => 'Honduras', - 'value' => 'HN', - ), - 104 => - array ( - 'key' => 'Hong Kong SAR China', - 'value' => 'HK', - ), - 105 => - array ( - 'key' => 'Hungary', - 'value' => 'HU', - ), - 106 => - array ( - 'key' => 'Iceland', - 'value' => 'IS', - ), - 107 => - array ( - 'key' => 'India', - 'value' => 'IN', - ), - 108 => - array ( - 'key' => 'Indonesia', - 'value' => 'ID', - ), - 109 => - array ( - 'key' => 'Iran', - 'value' => 'IR', - ), - 110 => - array ( - 'key' => 'Iraq', - 'value' => 'IQ', - ), - 111 => - array ( - 'key' => 'Ireland', - 'value' => 'IE', - ), - 112 => - array ( - 'key' => 'Isle of Man', - 'value' => 'IM', - ), - 113 => - array ( - 'key' => 'Israel', - 'value' => 'IL', - ), - 114 => - array ( - 'key' => 'Italy', - 'value' => 'IT', - ), - 115 => - array ( - 'key' => 'Jamaica', - 'value' => 'JM', - ), - 116 => - array ( - 'key' => 'Japan', - 'value' => 'JP', - ), - 117 => - array ( - 'key' => 'Jersey', - 'value' => 'JE', - ), - 118 => - array ( - 'key' => 'Jordan', - 'value' => 'JO', - ), - 119 => - array ( - 'key' => 'Kazakhstan', - 'value' => 'KZ', - ), - 120 => - array ( - 'key' => 'Kenya', - 'value' => 'KE', - ), - 121 => - array ( - 'key' => 'Kiribati', - 'value' => 'KI', - ), - 122 => - array ( - 'key' => 'Kosovo', - 'value' => 'XK', - ), - 123 => - array ( - 'key' => 'Kuwait', - 'value' => 'KW', - ), - 124 => - array ( - 'key' => 'Kyrgyzstan', - 'value' => 'KG', - ), - 125 => - array ( - 'key' => 'Laos', - 'value' => 'LA', - ), - 126 => - array ( - 'key' => 'Latvia', - 'value' => 'LV', - ), - 127 => - array ( - 'key' => 'Lebanon', - 'value' => 'LB', - ), - 128 => - array ( - 'key' => 'Lesotho', - 'value' => 'LS', - ), - 129 => - array ( - 'key' => 'Liberia', - 'value' => 'LR', - ), - 130 => - array ( - 'key' => 'Libya', - 'value' => 'LY', - ), - 131 => - array ( - 'key' => 'Liechtenstein', - 'value' => 'LI', - ), - 132 => - array ( - 'key' => 'Lithuania', - 'value' => 'LT', - ), - 133 => - array ( - 'key' => 'Luxembourg', - 'value' => 'LU', - ), - 134 => - array ( - 'key' => 'Macau SAR China', - 'value' => 'MO', - ), - 135 => - array ( - 'key' => 'Macedonia', - 'value' => 'MK', - ), - 136 => - array ( - 'key' => 'Madagascar', - 'value' => 'MG', - ), - 137 => - array ( - 'key' => 'Malawi', - 'value' => 'MW', - ), - 138 => - array ( - 'key' => 'Malaysia', - 'value' => 'MY', - ), - 139 => - array ( - 'key' => 'Maldives', - 'value' => 'MV', - ), - 140 => - array ( - 'key' => 'Mali', - 'value' => 'ML', - ), - 141 => - array ( - 'key' => 'Malta', - 'value' => 'MT', - ), - 142 => - array ( - 'key' => 'Marshall Islands', - 'value' => 'MH', - ), - 143 => - array ( - 'key' => 'Martinique', - 'value' => 'MQ', - ), - 144 => - array ( - 'key' => 'Mauritania', - 'value' => 'MR', - ), - 145 => - array ( - 'key' => 'Mauritius', - 'value' => 'MU', - ), - 146 => - array ( - 'key' => 'Mayotte', - 'value' => 'YT', - ), - 147 => - array ( - 'key' => 'Mexico', - 'value' => 'MX', - ), - 148 => - array ( - 'key' => 'Micronesia', - 'value' => 'FM', - ), - 149 => - array ( - 'key' => 'Moldova', - 'value' => 'MD', - ), - 150 => - array ( - 'key' => 'Monaco', - 'value' => 'MC', - ), - 151 => - array ( - 'key' => 'Mongolia', - 'value' => 'MN', - ), - 152 => - array ( - 'key' => 'Montenegro', - 'value' => 'ME', - ), - 153 => - array ( - 'key' => 'Montserrat', - 'value' => 'MS', - ), - 154 => - array ( - 'key' => 'Morocco', - 'value' => 'MA', - ), - 155 => - array ( - 'key' => 'Mozambique', - 'value' => 'MZ', - ), - 156 => - array ( - 'key' => 'Myanmar (Burma)', - 'value' => 'MM', - ), - 157 => - array ( - 'key' => 'Namibia', - 'value' => 'NA', - ), - 158 => - array ( - 'key' => 'Nauru', - 'value' => 'NR', - ), - 159 => - array ( - 'key' => 'Nepal', - 'value' => 'NP', - ), - 160 => - array ( - 'key' => 'Netherlands', - 'value' => 'NL', - ), - 161 => - array ( - 'key' => 'Netherlands Antilles', - 'value' => 'AN', - ), - 162 => - array ( - 'key' => 'New Caledonia', - 'value' => 'NC', - ), - 163 => - array ( - 'key' => 'New Zealand', - 'value' => 'NZ', - ), - 164 => - array ( - 'key' => 'Nicaragua', - 'value' => 'NI', - ), - 165 => - array ( - 'key' => 'Niger', - 'value' => 'NE', - ), - 166 => - array ( - 'key' => 'Nigeria', - 'value' => 'NG', - ), - 167 => - array ( - 'key' => 'Niue', - 'value' => 'NU', - ), - 168 => - array ( - 'key' => 'Norfolk Island', - 'value' => 'NF', - ), - 169 => - array ( - 'key' => 'North Korea', - 'value' => 'KP', - ), - 170 => - array ( - 'key' => 'Northern Mariana Islands', - 'value' => 'MP', - ), - 171 => - array ( - 'key' => 'Norway', - 'value' => 'NO', - ), - 172 => - array ( - 'key' => 'Oman', - 'value' => 'OM', - ), - 173 => - array ( - 'key' => 'Outlying Oceania', - 'value' => 'QO', - ), - 174 => - array ( - 'key' => 'Pakistan', - 'value' => 'PK', - ), - 175 => - array ( - 'key' => 'Palau', - 'value' => 'PW', - ), - 176 => - array ( - 'key' => 'Palestinian Territories', - 'value' => 'PS', - ), - 177 => - array ( - 'key' => 'Panama', - 'value' => 'PA', - ), - 178 => - array ( - 'key' => 'Papua New Guinea', - 'value' => 'PG', - ), - 179 => - array ( - 'key' => 'Paraguay', - 'value' => 'PY', - ), - 180 => - array ( - 'key' => 'Peru', - 'value' => 'PE', - ), - 181 => - array ( - 'key' => 'Philippines', - 'value' => 'PH', - ), - 182 => - array ( - 'key' => 'Pitcairn Islands', - 'value' => 'PN', - ), - 183 => - array ( - 'key' => 'Poland', - 'value' => 'PL', - ), - 184 => - array ( - 'key' => 'Portugal', - 'value' => 'PT', - ), - 185 => - array ( - 'key' => 'Puerto Rico', - 'value' => 'PR', - ), - 186 => - array ( - 'key' => 'Qatar', - 'value' => 'QA', - ), - 187 => - array ( - 'key' => 'Romania', - 'value' => 'RO', - ), - 188 => - array ( - 'key' => 'Russia', - 'value' => 'RU', - ), - 189 => - array ( - 'key' => 'Rwanda', - 'value' => 'RW', - ), - 190 => - array ( - 'key' => 'Réunion', - 'value' => 'RE', - ), - 191 => - array ( - 'key' => 'Saint Barthélemy', - 'value' => 'BL', - ), - 192 => - array ( - 'key' => 'Saint Helena', - 'value' => 'SH', - ), - 193 => - array ( - 'key' => 'Saint Kitts and Nevis', - 'value' => 'KN', - ), - 194 => - array ( - 'key' => 'Saint Lucia', - 'value' => 'LC', - ), - 195 => - array ( - 'key' => 'Saint Martin', - 'value' => 'MF', - ), - 196 => - array ( - 'key' => 'Saint Pierre and Miquelon', - 'value' => 'PM', - ), - 197 => - array ( - 'key' => 'Samoa', - 'value' => 'WS', - ), - 198 => - array ( - 'key' => 'San Marino', - 'value' => 'SM', - ), - 199 => - array ( - 'key' => 'Saudi Arabia', - 'value' => 'SA', - ), - 200 => - array ( - 'key' => 'Senegal', - 'value' => 'SN', - ), - 201 => - array ( - 'key' => 'Serbia', - 'value' => 'RS', - ), - 202 => - array ( - 'key' => 'Seychelles', - 'value' => 'SC', - ), - 203 => - array ( - 'key' => 'Sierra Leone', - 'value' => 'SL', - ), - 204 => - array ( - 'key' => 'Singapore', - 'value' => 'SG', - ), - 205 => - array ( - 'key' => 'Sint Maarten', - 'value' => 'SX', - ), - 206 => - array ( - 'key' => 'Slovakia', - 'value' => 'SK', - ), - 207 => - array ( - 'key' => 'Slovenia', - 'value' => 'SI', - ), - 208 => - array ( - 'key' => 'Solomon Islands', - 'value' => 'SB', - ), - 209 => - array ( - 'key' => 'Somalia', - 'value' => 'SO', - ), - 210 => - array ( - 'key' => 'South Africa', - 'value' => 'ZA', - ), - 211 => - array ( - 'key' => 'South Georgia & South Sandwich Islands', - 'value' => 'GS', - ), - 212 => - array ( - 'key' => 'South Korea', - 'value' => 'KR', - ), - 213 => - array ( - 'key' => 'South Sudan', - 'value' => 'SS', - ), - 214 => - array ( - 'key' => 'Spain', - 'value' => 'ES', - ), - 215 => - array ( - 'key' => 'Sri Lanka', - 'value' => 'LK', - ), - 216 => - array ( - 'key' => 'St. Vincent & Grenadines', - 'value' => 'VC', - ), - 217 => - array ( - 'key' => 'Sudan', - 'value' => 'SD', - ), - 218 => - array ( - 'key' => 'Suriname', - 'value' => 'SR', - ), - 219 => - array ( - 'key' => 'Svalbard and Jan Mayen', - 'value' => 'SJ', - ), - 220 => - array ( - 'key' => 'Swaziland', - 'value' => 'SZ', - ), - 221 => - array ( - 'key' => 'Sweden', - 'value' => 'SE', - ), - 222 => - array ( - 'key' => 'Switzerland', - 'value' => 'CH', - ), - 223 => - array ( - 'key' => 'Syria', - 'value' => 'SY', - ), - 224 => - array ( - 'key' => 'São Tomé and Príncipe', - 'value' => 'ST', - ), - 225 => - array ( - 'key' => 'Taiwan', - 'value' => 'TW', - ), - 226 => - array ( - 'key' => 'Tajikistan', - 'value' => 'TJ', - ), - 227 => - array ( - 'key' => 'Tanzania', - 'value' => 'TZ', - ), - 228 => - array ( - 'key' => 'Thailand', - 'value' => 'TH', - ), - 229 => - array ( - 'key' => 'Timor-Leste', - 'value' => 'TL', - ), - 230 => - array ( - 'key' => 'Togo', - 'value' => 'TG', - ), - 231 => - array ( - 'key' => 'Tokelau', - 'value' => 'TK', - ), - 232 => - array ( - 'key' => 'Tonga', - 'value' => 'TO', - ), - 233 => - array ( - 'key' => 'Trinidad and Tobago', - 'value' => 'TT', - ), - 234 => - array ( - 'key' => 'Tristan da Cunha', - 'value' => 'TA', - ), - 235 => - array ( - 'key' => 'Tunisia', - 'value' => 'TN', - ), - 236 => - array ( - 'key' => 'Turkey', - 'value' => 'TR', - ), - 237 => - array ( - 'key' => 'Turkmenistan', - 'value' => 'TM', - ), - 238 => - array ( - 'key' => 'Turks and Caicos Islands', - 'value' => 'TC', - ), - 239 => - array ( - 'key' => 'Tuvalu', - 'value' => 'TV', - ), - 240 => - array ( - 'key' => 'U.S. Outlying Islands', - 'value' => 'UM', - ), - 241 => - array ( - 'key' => 'U.S. Virgin Islands', - 'value' => 'VI', - ), - 242 => - array ( - 'key' => 'Uganda', - 'value' => 'UG', - ), - 243 => - array ( - 'key' => 'Ukraine', - 'value' => 'UA', - ), - 244 => - array ( - 'key' => 'United Arab Emirates', - 'value' => 'AE', - ), - 245 => - array ( - 'key' => 'United Kingdom', - 'value' => 'GB', - ), - 246 => - array ( - 'key' => 'United States', - 'value' => 'US', - ), - 247 => - array ( - 'key' => 'Unknown Region', - 'value' => 'ZZ', - ), - 248 => - array ( - 'key' => 'Uruguay', - 'value' => 'UY', - ), - 249 => - array ( - 'key' => 'Uzbekistan', - 'value' => 'UZ', - ), - 250 => - array ( - 'key' => 'Vanuatu', - 'value' => 'VU', - ), - 251 => - array ( - 'key' => 'Vatican City', - 'value' => 'VA', - ), - 252 => - array ( - 'key' => 'Venezuela', - 'value' => 'VE', - ), - 253 => - array ( - 'key' => 'Vietnam', - 'value' => 'VN', - ), - 254 => - array ( - 'key' => 'Wallis and Futuna', - 'value' => 'WF', - ), - 255 => - array ( - 'key' => 'Western Sahara', - 'value' => 'EH', - ), - 256 => - array ( - 'key' => 'Yemen', - 'value' => 'YE', - ), - 257 => - array ( - 'key' => 'Zambia', - 'value' => 'ZM', - ), - 258 => - array ( - 'key' => 'Zimbabwe', - 'value' => 'ZW', - ), - 259 => - array ( - 'key' => 'Åland Islands', - 'value' => 'AX', - ), ), + 'defaultValueGenerator' => '', + )), + 2 => + Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( + 'fieldtype' => 'input', + 'width' => 400, + 'defaultValue' => NULL, + 'columnLength' => 255, + 'regex' => '', + 'unique' => NULL, + 'showCharCount' => NULL, + 'name' => 'deliveryCompany', + 'title' => 'Company', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => true, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => false, + 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), + 'defaultValueGenerator' => '', + )), + 3 => + Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( + 'fieldtype' => 'input', + 'width' => 400, + 'defaultValue' => NULL, + 'columnLength' => 255, + 'regex' => '', + 'unique' => NULL, + 'showCharCount' => NULL, + 'name' => 'deliveryStreet', + 'title' => 'Street', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => true, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => false, + 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), + 'defaultValueGenerator' => '', + )), + 4 => + Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( + 'fieldtype' => 'input', + 'width' => 400, + 'defaultValue' => NULL, + 'columnLength' => 255, + 'regex' => '', + 'unique' => NULL, + 'showCharCount' => NULL, + 'name' => 'deliveryZip', + 'title' => 'Zip', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => true, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => false, + 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), + 'defaultValueGenerator' => '', + )), + 5 => + Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( + 'fieldtype' => 'input', + 'width' => 400, + 'defaultValue' => NULL, + 'columnLength' => 255, + 'regex' => '', + 'unique' => NULL, + 'showCharCount' => NULL, + 'name' => 'deliveryCity', + 'title' => 'City', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => true, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => false, + 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), + 'defaultValueGenerator' => '', + )), + 6 => + Pimcore\Model\DataObject\ClassDefinition\Data\Country::__set_state(array( + 'fieldtype' => 'country', + 'width' => '', + 'restrictTo' => '', 'defaultValue' => NULL, 'optionsProviderClass' => NULL, 'optionsProviderData' => NULL, @@ -3946,21 +2932,69 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), 'icon' => NULL, 'labelWidth' => 100, 'labelAlign' => 'left', )), - 3 => + 3 => Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( 'fieldtype' => 'panel', 'layout' => '', @@ -3976,9 +3010,9 @@ 'bodyStyle' => '', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Layout\Text::__set_state(array( 'fieldtype' => 'text', 'html' => 'Payment Information with
- Payment Provider: returned data of payment provider after actual transaction.
- Payment Information: information about every payment try of customer. 
', @@ -3996,20 +3030,20 @@ 'bodyStyle' => 'padding: 10px; background-color: #d9edf7; border-color: #bce8f1 !important; color: #31708f;', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), )), - 1 => + 1 => Pimcore\Model\DataObject\ClassDefinition\Data\Objectbricks::__set_state(array( 'fieldtype' => 'objectbricks', - 'allowedTypes' => + 'allowedTypes' => array ( - 0 => 'PaymentProviderUnzer', + 0 => 'PaymentProviderPayPal', ), 'maxItems' => '', 'border' => false, @@ -4027,14 +3061,62 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), )), - 2 => + 2 => Pimcore\Model\DataObject\ClassDefinition\Data\Fieldcollections::__set_state(array( 'fieldtype' => 'fieldcollections', - 'allowedTypes' => + 'allowedTypes' => array ( 0 => 'PaymentInfo', ), @@ -4059,11 +3141,59 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), )), - 3 => + 3 => Pimcore\Model\DataObject\ClassDefinition\Layout\Fieldset::__set_state(array( 'fieldtype' => 'fieldset', 'name' => 'invoice', @@ -4077,9 +3207,9 @@ 'bodyStyle' => '', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 400, @@ -4102,14 +3232,62 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), 'defaultValueGenerator' => '', )), ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), 'labelWidth' => 100, @@ -4117,14 +3295,14 @@ )), ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), 'icon' => NULL, 'labelWidth' => 100, 'labelAlign' => 'left', )), - 4 => + 4 => Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( 'fieldtype' => 'panel', 'layout' => NULL, @@ -4140,9 +3318,9 @@ 'bodyStyle' => '', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Layout\Text::__set_state(array( 'fieldtype' => 'text', 'html' => 'Customized gives you the possibility to add object bricks with additional data to your orders.', @@ -4160,18 +3338,18 @@ 'bodyStyle' => 'padding: 10px; background-color: #d9edf7; border-color: #bce8f1 !important; color: #31708f;', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), )), - 1 => + 1 => Pimcore\Model\DataObject\ClassDefinition\Data\Objectbricks::__set_state(array( 'fieldtype' => 'objectbricks', - 'allowedTypes' => + 'allowedTypes' => array ( ), 'maxItems' => '', @@ -4190,13 +3368,61 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'blockedVarsForExport' => + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => array ( ), )), ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), 'icon' => NULL, @@ -4205,13 +3431,13 @@ )), ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), )), ), 'locked' => false, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), 'icon' => NULL, @@ -4223,14 +3449,15 @@ 'group' => 'E-Commerce', 'showAppLoggerTab' => false, 'linkGeneratorReference' => '', - 'compositeIndices' => + 'previewGeneratorReference' => NULL, + 'compositeIndices' => array ( ), 'generateTypeDeclarations' => true, 'showFieldLookup' => false, - 'propertyVisibility' => + 'propertyVisibility' => array ( - 'grid' => + 'grid' => array ( 'id' => true, 'key' => false, @@ -4239,7 +3466,7 @@ 'modificationDate' => false, 'creationDate' => true, ), - 'search' => + 'search' => array ( 'id' => true, 'key' => false, @@ -4251,7 +3478,7 @@ ), 'enableGridLocking' => false, 'dao' => NULL, - 'blockedVarsForExport' => + 'blockedVarsForExport' => array ( ), )); diff --git a/var/classes/fieldcollections/PaymentInfo.php b/var/classes/fieldcollections/PaymentInfo.php index 9289e5b9..a9ddfbe9 100644 --- a/var/classes/fieldcollections/PaymentInfo.php +++ b/var/classes/fieldcollections/PaymentInfo.php @@ -2,15 +2,15 @@ /** Fields Summary: - - paymentStart [datetime] - - paymentFinish [datetime] - - paymentReference [input] - - paymentState [select] - - internalPaymentId [input] - - message [textarea] - - providerData [textarea] - - provider_unzer_amount [input] - - provider_unzer_PaymentType [textarea] +- paymentStart [datetime] +- paymentFinish [datetime] +- paymentReference [input] +- paymentState [select] +- internalPaymentId [input] +- message [textarea] +- providerData [textarea] +- provider_paypal_amount [input] +- provider_paypal_PaymentType [input] */ @@ -21,7 +21,7 @@ 'implementsInterfaces' => '', 'title' => '', 'group' => 'Order Details', - 'layoutDefinitions' => + 'layoutDefinitions' => Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( 'fieldtype' => 'panel', 'layout' => NULL, @@ -37,9 +37,9 @@ 'bodyStyle' => NULL, 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( 'fieldtype' => 'panel', 'layout' => NULL, @@ -48,16 +48,16 @@ 'type' => NULL, 'region' => NULL, 'title' => '', - 'width' => NULL, - 'height' => NULL, + 'width' => '', + 'height' => '', 'collapsible' => false, 'collapsed' => false, 'bodyStyle' => '', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Data\Datetime::__set_state(array( 'fieldtype' => 'datetime', 'queryColumnType' => 'bigint(20)', @@ -78,9 +78,60 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), 'defaultValueGenerator' => '', )), - 1 => + 1 => Pimcore\Model\DataObject\ClassDefinition\Data\Datetime::__set_state(array( 'fieldtype' => 'datetime', 'queryColumnType' => 'bigint(20)', @@ -101,15 +152,64 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), 'defaultValueGenerator' => '', )), - 2 => + 2 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 500, 'defaultValue' => NULL, - 'queryColumnType' => 'varchar', - 'columnType' => 'varchar', 'columnLength' => 255, 'regex' => '', 'unique' => NULL, @@ -128,44 +228,95 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), 'defaultValueGenerator' => '', )), - 3 => + 3 => Pimcore\Model\DataObject\ClassDefinition\Data\Select::__set_state(array( 'fieldtype' => 'select', - 'options' => + 'options' => array ( - 0 => + 0 => array ( 'key' => 'Committed', 'value' => 'committed', ), - 1 => + 1 => array ( 'key' => 'Cancelled', 'value' => 'cancelled', ), - 2 => + 2 => array ( 'key' => 'Payment Init', 'value' => 'paymentInit', ), - 3 => + 3 => array ( 'key' => 'Payment Pending', 'value' => 'paymentPending', ), - 4 => + 4 => array ( 'key' => 'Payment Authorized', 'value' => 'paymentAuthorized', ), - 5 => + 5 => array ( 'key' => 'Aborted', 'value' => 'aborted', ), - 6 => + 6 => array ( 'key' => 'Aborted but Response Received', 'value' => 'abortedButResponseReceived', @@ -175,8 +326,6 @@ 'defaultValue' => '', 'optionsProviderClass' => NULL, 'optionsProviderData' => NULL, - 'queryColumnType' => 'varchar(255)', - 'columnType' => 'varchar(255)', 'columnLength' => 190, 'dynamicOptions' => false, 'name' => 'paymentState', @@ -193,15 +342,64 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), 'defaultValueGenerator' => '', )), - 4 => + 4 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 500, 'defaultValue' => NULL, - 'queryColumnType' => 'varchar', - 'columnType' => 'varchar', 'columnLength' => 255, 'regex' => '', 'unique' => NULL, @@ -220,9 +418,60 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), 'defaultValueGenerator' => '', )), - 5 => + 5 => Pimcore\Model\DataObject\ClassDefinition\Data\Textarea::__set_state(array( 'fieldtype' => 'textarea', 'width' => 500, @@ -230,8 +479,6 @@ 'maxLength' => NULL, 'showCharCount' => NULL, 'excludeFromSearchIndex' => false, - 'queryColumnType' => 'longtext', - 'columnType' => 'longtext', 'name' => 'message', 'title' => 'Message', 'tooltip' => '', @@ -246,8 +493,59 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), )), - 6 => + 6 => Pimcore\Model\DataObject\ClassDefinition\Data\Textarea::__set_state(array( 'fieldtype' => 'textarea', 'width' => 500, @@ -255,8 +553,6 @@ 'maxLength' => NULL, 'showCharCount' => NULL, 'excludeFromSearchIndex' => false, - 'queryColumnType' => 'longtext', - 'columnType' => 'longtext', 'name' => 'providerData', 'title' => 'Provider Data', 'tooltip' => 'JSON', @@ -271,41 +567,90 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), )), - 7 => + 7 => Pimcore\Model\DataObject\ClassDefinition\Layout\Fieldset::__set_state(array( 'fieldtype' => 'fieldset', - 'name' => 'additionalDataUnzer', + 'name' => 'additionalDataPayPal', 'type' => NULL, - 'region' => '', - 'title' => 'Additional Unzer Data', - 'width' => NULL, - 'height' => NULL, + 'region' => NULL, + 'title' => 'Additional PayPal Data', + 'width' => '', + 'height' => '', 'collapsible' => true, 'collapsed' => true, 'bodyStyle' => '', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', - 'width' => NULL, + 'width' => '', 'defaultValue' => NULL, - 'queryColumnType' => 'varchar', - 'columnType' => 'varchar', 'columnLength' => 255, 'regex' => '', - 'unique' => NULL, - 'showCharCount' => NULL, - 'name' => 'provider_unzer_amount', + 'unique' => false, + 'showCharCount' => false, + 'name' => 'provider_paypal_amount', 'title' => 'Amount', 'tooltip' => '', 'mandatory' => false, 'noteditable' => true, 'index' => false, - 'locked' => false, + 'locked' => NULL, 'style' => '', 'permissions' => NULL, 'datatype' => 'data', @@ -313,26 +658,75 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), 'defaultValueGenerator' => '', )), - 1 => + 1 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 500, 'defaultValue' => NULL, - 'queryColumnType' => 'varchar', - 'columnType' => 'varchar', 'columnLength' => 255, 'regex' => '', - 'unique' => NULL, - 'showCharCount' => NULL, - 'name' => 'provider_unzer_PaymentType', + 'unique' => false, + 'showCharCount' => false, + 'name' => 'provider_paypal_PaymentType', 'title' => 'Payment Type', 'tooltip' => '', 'mandatory' => false, 'noteditable' => true, 'index' => false, - 'locked' => false, + 'locked' => NULL, 'style' => '', 'permissions' => NULL, 'datatype' => 'data', @@ -340,24 +734,87 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), 'defaultValueGenerator' => '', )), ), 'locked' => false, - 'labelWidth' => 150, + 'blockedVarsForExport' => + array ( + ), + 'labelWidth' => 0, 'labelAlign' => 'left', )), ), 'locked' => false, - 'icon' => NULL, + 'blockedVarsForExport' => + array ( + ), + 'icon' => '', 'labelWidth' => 150, 'labelAlign' => 'left', )), ), 'locked' => false, + 'blockedVarsForExport' => + array ( + ), 'icon' => NULL, 'labelWidth' => 100, 'labelAlign' => 'left', )), 'generateTypeDeclarations' => true, + 'blockedVarsForExport' => + array ( + ), )); diff --git a/var/classes/objectbricks/PaymentProviderUnzer.php b/var/classes/objectbricks/PaymentProviderUnzer.php deleted file mode 100644 index d42ef033..00000000 --- a/var/classes/objectbricks/PaymentProviderUnzer.php +++ /dev/null @@ -1,296 +0,0 @@ - - array ( - 0 => - array ( - 'classname' => 'OnlineShopOrder', - 'fieldname' => 'paymentProvider', - ), - ), - 'dao' => NULL, - 'key' => 'PaymentProviderUnzer', - 'parentClass' => '', - 'implementsInterfaces' => NULL, - 'title' => '', - 'group' => 'PaymentProvider', - 'layoutDefinitions' => - Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( - 'fieldtype' => 'panel', - 'layout' => NULL, - 'border' => false, - 'name' => NULL, - 'type' => NULL, - 'region' => NULL, - 'title' => NULL, - 'width' => NULL, - 'height' => NULL, - 'collapsible' => false, - 'collapsed' => false, - 'bodyStyle' => NULL, - 'datatype' => 'layout', - 'permissions' => NULL, - 'childs' => - array ( - 0 => - Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( - 'fieldtype' => 'panel', - 'layout' => NULL, - 'border' => false, - 'name' => 'Layout', - 'type' => NULL, - 'region' => NULL, - 'title' => '', - 'width' => NULL, - 'height' => NULL, - 'collapsible' => false, - 'collapsed' => false, - 'bodyStyle' => '', - 'datatype' => 'layout', - 'permissions' => NULL, - 'childs' => - array ( - 0 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 500, - 'defaultValue' => NULL, - 'queryColumnType' => 'varchar', - 'columnType' => 'varchar', - 'columnLength' => 190, - 'regex' => '', - 'unique' => false, - 'showCharCount' => false, - 'name' => 'auth_paymentMethod', - 'title' => 'Payment Method', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'defaultValueGenerator' => '', - )), - 1 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 500, - 'defaultValue' => NULL, - 'queryColumnType' => 'varchar', - 'columnType' => 'varchar', - 'columnLength' => 190, - 'regex' => '', - 'unique' => false, - 'showCharCount' => false, - 'name' => 'auth_amount', - 'title' => 'Amount', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'defaultValueGenerator' => '', - )), - 2 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 500, - 'defaultValue' => NULL, - 'queryColumnType' => 'varchar', - 'columnType' => 'varchar', - 'columnLength' => 190, - 'regex' => '', - 'unique' => false, - 'showCharCount' => false, - 'name' => 'auth_currency', - 'title' => 'Currency', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'defaultValueGenerator' => '', - )), - 3 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 800, - 'defaultValue' => NULL, - 'queryColumnType' => 'varchar', - 'columnType' => 'varchar', - 'columnLength' => 190, - 'regex' => '', - 'unique' => false, - 'showCharCount' => false, - 'name' => 'auth_paymentType', - 'title' => 'Payment Type', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'defaultValueGenerator' => '', - )), - 4 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 500, - 'defaultValue' => NULL, - 'queryColumnType' => 'varchar', - 'columnType' => 'varchar', - 'columnLength' => 190, - 'regex' => '', - 'unique' => false, - 'showCharCount' => false, - 'name' => 'auth_paymentReference', - 'title' => 'Payment Reference', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'defaultValueGenerator' => '', - )), - 5 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 500, - 'defaultValue' => NULL, - 'queryColumnType' => 'varchar', - 'columnType' => 'varchar', - 'columnLength' => 190, - 'regex' => '', - 'unique' => false, - 'showCharCount' => false, - 'name' => 'auth_clientMessage', - 'title' => 'Client Message', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'defaultValueGenerator' => '', - )), - 6 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => 500, - 'defaultValue' => NULL, - 'queryColumnType' => 'varchar', - 'columnType' => 'varchar', - 'columnLength' => 190, - 'regex' => '', - 'unique' => false, - 'showCharCount' => false, - 'name' => 'auth_merchantMessage', - 'title' => 'Merchant Message', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => true, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'defaultValueGenerator' => '', - )), - 7 => - Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( - 'fieldtype' => 'input', - 'width' => NULL, - 'defaultValue' => NULL, - 'queryColumnType' => 'varchar', - 'columnType' => 'varchar', - 'columnLength' => 190, - 'regex' => '', - 'unique' => false, - 'showCharCount' => false, - 'name' => 'auth_chargeId', - 'title' => 'Charge ID', - 'tooltip' => '', - 'mandatory' => false, - 'noteditable' => false, - 'index' => false, - 'locked' => false, - 'style' => '', - 'permissions' => NULL, - 'datatype' => 'data', - 'relationType' => false, - 'invisible' => false, - 'visibleGridView' => false, - 'visibleSearch' => false, - 'defaultValueGenerator' => '', - )), - ), - 'locked' => false, - 'icon' => '', - 'labelWidth' => 150, - 'labelAlign' => 'left', - )), - ), - 'locked' => false, - 'icon' => NULL, - 'labelWidth' => 100, - 'labelAlign' => 'left', - )), - 'generateTypeDeclarations' => false, -)); From 5382f89771fbf65eb8d9eca1cf22b34e4add009e Mon Sep 17 00:00:00 2001 From: Jia Jia Ji Date: Mon, 24 Jan 2022 12:14:12 +0100 Subject: [PATCH 2/8] minor tweaks and changed the error message to a generic one, as paypal SDK do not provide any message --- public/static/js/payment.js | 1 - src/Controller/PaymentController.php | 10 +++------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/public/static/js/payment.js b/public/static/js/payment.js index 7c2e7c5f..f87ed889 100644 --- a/public/static/js/payment.js +++ b/public/static/js/payment.js @@ -20,7 +20,6 @@ paypal.Buttons({ }); }, onApprove: function(data) { - console.log(data); // make sure you deliver orderID, payerID and paymentID to your // handle response controller action, e.g. by creating a form and // posting the data diff --git a/src/Controller/PaymentController.php b/src/Controller/PaymentController.php index 1d8657ff..0d4aead5 100644 --- a/src/Controller/PaymentController.php +++ b/src/Controller/PaymentController.php @@ -86,7 +86,7 @@ public function startPaymentAction(Request $request, Factory $factory, LoggerInt $config = [ 'return_url' => '', - 'cancel_url' => '' . 'http://localhost/payment?error=cancel', + 'cancel_url' => '' . 'https://demo.pimcore.fun/payment-error', 'OrderDescription' => 'My Order ' . $order->getOrdernumber() . ' at pimcore.org', 'InternalPaymentId' => $paymentInformation->getInternalPaymentId() ]; @@ -102,11 +102,7 @@ public function startPaymentAction(Request $request, Factory $factory, LoggerInt */ public function paymentErrorAction(Request $request, LoggerInterface $logger) { - $logger->error('payment error: ' . $request->get('merchantMessage')); - - if ($clientMessage = $request->get('clientMessage')) { - $this->addFlash('danger', $clientMessage); - } + $this->addFlash('danger', 'Payment error'); return $this->redirectToRoute('shop-checkout-payment'); } @@ -138,7 +134,7 @@ public function commitOrderAction(Request $request, Factory $factory, LoggerInte $session->start(); } - $session->set("last_order_id", $order->getId()); + $session->set('last_order_id', $order->getId()); return $this->redirectToRoute('shop-checkout-completed'); } From a543a765713ddae67e17891fc1a468dac44201bb Mon Sep 17 00:00:00 2001 From: JiaJia Date: Mon, 24 Jan 2022 12:30:17 +0100 Subject: [PATCH 3/8] fixes typo Co-authored-by: Jacob Dreesen --- src/Controller/PaymentController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/PaymentController.php b/src/Controller/PaymentController.php index 0d4aead5..fab7d407 100644 --- a/src/Controller/PaymentController.php +++ b/src/Controller/PaymentController.php @@ -86,7 +86,7 @@ public function startPaymentAction(Request $request, Factory $factory, LoggerInt $config = [ 'return_url' => '', - 'cancel_url' => '' . 'https://demo.pimcore.fun/payment-error', + 'cancel_url' => 'https://demo.pimcore.fun/payment-error', 'OrderDescription' => 'My Order ' . $order->getOrdernumber() . ' at pimcore.org', 'InternalPaymentId' => $paymentInformation->getInternalPaymentId() ]; From 71d56b4fd8b8d92a70a964d596390ce230115993 Mon Sep 17 00:00:00 2001 From: JiaJia Date: Mon, 24 Jan 2022 16:38:10 +0100 Subject: [PATCH 4/8] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f8e8b6e6..790e5319 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "pimcore/pimcore": "^10.0", "pimcore/web2print-tools-bundle": "^4.0", "pimcore/data-hub": "^1.0", - "pimcore/payment-provider-unzer": "^1.0" + "pimcore/payment-provider-paypal-smart-payment-button"": "^1.0" }, "conflict": { "hwi/oauth-bundle": "1.4.0" From 04c0f1b0cb507fd038e84d133828d7420aeaa8e0 Mon Sep 17 00:00:00 2001 From: JiaJia Date: Mon, 24 Jan 2022 16:38:31 +0100 Subject: [PATCH 5/8] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 790e5319..86c517c4 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "pimcore/pimcore": "^10.0", "pimcore/web2print-tools-bundle": "^4.0", "pimcore/data-hub": "^1.0", - "pimcore/payment-provider-paypal-smart-payment-button"": "^1.0" + "pimcore/payment-provider-paypal-smart-payment-button": "^1.0" }, "conflict": { "hwi/oauth-bundle": "1.4.0" From 6d4596db3c7d0569a24c6d413b2d8bcca15d261b Mon Sep 17 00:00:00 2001 From: Jia Jia Ji Date: Wed, 26 Jan 2022 21:45:45 +0100 Subject: [PATCH 6/8] added extensions and object brick minor clean up added a redirection when trying to access the checkout page with an empty cart rollback unzer additional field, they are never used (eventual todo: remove the field there and in the dump) added sample login credentials for paypal sandbox (depends on the API keys) --- src/Controller/PaymentController.php | 10 +- templates/payment/checkout_payment.html.twig | 10 +- var/classes/definition_OnlineShopOrder.php | 4 +- var/classes/fieldcollections/PaymentInfo.php | 585 ++---------------- .../PaymentProviderPayPalSmartButton.php | 543 ++++++++++++++++ var/config/extensions.php | 2 +- 6 files changed, 622 insertions(+), 532 deletions(-) create mode 100644 var/classes/objectbricks/PaymentProviderPayPalSmartButton.php diff --git a/src/Controller/PaymentController.php b/src/Controller/PaymentController.php index fab7d407..8bbef8b7 100644 --- a/src/Controller/PaymentController.php +++ b/src/Controller/PaymentController.php @@ -17,14 +17,10 @@ use App\Ecommerce\CheckoutManager\Confirm; use App\Website\Navigation\BreadcrumbHelperService; -use Pimcore\Bundle\EcommerceFrameworkBundle\CheckoutManager\V7\CheckoutManagerInterface; use Pimcore\Bundle\EcommerceFrameworkBundle\Factory; -use Pimcore\Bundle\EcommerceFrameworkBundle\Model\AbstractOrder; use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\Payment\PayPalSmartPaymentButton; -use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\V7\Payment\StartPaymentResponse\UrlResponse; use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\V7\Payment\StartPaymentRequest\AbstractRequest; use Pimcore\Controller\FrontendController; -use Pimcore\Model\DataObject\OnlineShopOrder; use Pimcore\Translation\Translator; use Psr\Log\LoggerInterface; use Symfony\Component\HttpFoundation\RedirectResponse; @@ -32,7 +28,6 @@ use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Session\SessionInterface; use Symfony\Component\Routing\Annotation\Route; -use Symfony\Component\Routing\Generator\UrlGeneratorInterface; class PaymentController extends FrontendController { @@ -50,6 +45,11 @@ public function checkoutPaymentAction(Factory $factory, BreadcrumbHelperService $breadcrumbHelperService->enrichCheckoutPage(); $cart = $cartManager->getOrCreateCartByName('cart'); + + if ($cart->isEmpty()) { + return $this->redirectToRoute('shop-cart-detail'); + } + $checkoutManager = $factory->getCheckoutManager($cart); $paymentProvider = $checkoutManager->getPayment(); diff --git a/templates/payment/checkout_payment.html.twig b/templates/payment/checkout_payment.html.twig index e39f576e..168ef931 100644 --- a/templates/payment/checkout_payment.html.twig +++ b/templates/payment/checkout_payment.html.twig @@ -96,7 +96,7 @@ EPS - +
any data works, lets you decide the payment resultany data works, allows you to decide the payment result
@@ -107,8 +107,12 @@ - - + + + + + +
Test Credentialshere in the sandboxuser:sb-ibtmr12488159@personal.example.com
password: Lmt_^3A/
diff --git a/var/classes/definition_OnlineShopOrder.php b/var/classes/definition_OnlineShopOrder.php index 066a5f8f..d5d764ba 100644 --- a/var/classes/definition_OnlineShopOrder.php +++ b/var/classes/definition_OnlineShopOrder.php @@ -52,7 +52,7 @@ 'name' => 'OnlineShopOrder', 'description' => '', 'creationDate' => 0, - 'modificationDate' => 1642802394, + 'modificationDate' => 1643228785, 'userOwner' => 0, 'userModification' => 1, 'parentClass' => '\\Pimcore\\Bundle\\EcommerceFrameworkBundle\\Model\\AbstractOrder', @@ -3043,7 +3043,7 @@ 'fieldtype' => 'objectbricks', 'allowedTypes' => array ( - 0 => 'PaymentProviderPayPal', + 0 => 'PaymentProviderPayPalSmartButton', ), 'maxItems' => '', 'border' => false, diff --git a/var/classes/fieldcollections/PaymentInfo.php b/var/classes/fieldcollections/PaymentInfo.php index a9ddfbe9..9289e5b9 100644 --- a/var/classes/fieldcollections/PaymentInfo.php +++ b/var/classes/fieldcollections/PaymentInfo.php @@ -2,15 +2,15 @@ /** Fields Summary: -- paymentStart [datetime] -- paymentFinish [datetime] -- paymentReference [input] -- paymentState [select] -- internalPaymentId [input] -- message [textarea] -- providerData [textarea] -- provider_paypal_amount [input] -- provider_paypal_PaymentType [input] + - paymentStart [datetime] + - paymentFinish [datetime] + - paymentReference [input] + - paymentState [select] + - internalPaymentId [input] + - message [textarea] + - providerData [textarea] + - provider_unzer_amount [input] + - provider_unzer_PaymentType [textarea] */ @@ -21,7 +21,7 @@ 'implementsInterfaces' => '', 'title' => '', 'group' => 'Order Details', - 'layoutDefinitions' => + 'layoutDefinitions' => Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( 'fieldtype' => 'panel', 'layout' => NULL, @@ -37,9 +37,9 @@ 'bodyStyle' => NULL, 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( 'fieldtype' => 'panel', 'layout' => NULL, @@ -48,16 +48,16 @@ 'type' => NULL, 'region' => NULL, 'title' => '', - 'width' => '', - 'height' => '', + 'width' => NULL, + 'height' => NULL, 'collapsible' => false, 'collapsed' => false, 'bodyStyle' => '', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Data\Datetime::__set_state(array( 'fieldtype' => 'datetime', 'queryColumnType' => 'bigint(20)', @@ -78,60 +78,9 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'forbiddenNames' => - array ( - 0 => 'id', - 1 => 'key', - 2 => 'path', - 3 => 'type', - 4 => 'index', - 5 => 'classname', - 6 => 'creationdate', - 7 => 'userowner', - 8 => 'value', - 9 => 'class', - 10 => 'list', - 11 => 'fullpath', - 12 => 'childs', - 13 => 'values', - 14 => 'cachetag', - 15 => 'cachetags', - 16 => 'parent', - 17 => 'published', - 18 => 'valuefromparent', - 19 => 'userpermissions', - 20 => 'dependencies', - 21 => 'modificationdate', - 22 => 'usermodification', - 23 => 'byid', - 24 => 'bypath', - 25 => 'data', - 26 => 'versions', - 27 => 'properties', - 28 => 'permissions', - 29 => 'permissionsforuser', - 30 => 'childamount', - 31 => 'apipluginbroker', - 32 => 'resource', - 33 => 'parentClass', - 34 => 'definition', - 35 => 'locked', - 36 => 'language', - 37 => 'omitmandatorycheck', - 38 => 'idpath', - 39 => 'object', - 40 => 'fieldname', - 41 => 'property', - 42 => 'parentid', - 43 => 'children', - 44 => 'scheduledtasks', - ), - 'blockedVarsForExport' => - array ( - ), 'defaultValueGenerator' => '', )), - 1 => + 1 => Pimcore\Model\DataObject\ClassDefinition\Data\Datetime::__set_state(array( 'fieldtype' => 'datetime', 'queryColumnType' => 'bigint(20)', @@ -152,64 +101,15 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'forbiddenNames' => - array ( - 0 => 'id', - 1 => 'key', - 2 => 'path', - 3 => 'type', - 4 => 'index', - 5 => 'classname', - 6 => 'creationdate', - 7 => 'userowner', - 8 => 'value', - 9 => 'class', - 10 => 'list', - 11 => 'fullpath', - 12 => 'childs', - 13 => 'values', - 14 => 'cachetag', - 15 => 'cachetags', - 16 => 'parent', - 17 => 'published', - 18 => 'valuefromparent', - 19 => 'userpermissions', - 20 => 'dependencies', - 21 => 'modificationdate', - 22 => 'usermodification', - 23 => 'byid', - 24 => 'bypath', - 25 => 'data', - 26 => 'versions', - 27 => 'properties', - 28 => 'permissions', - 29 => 'permissionsforuser', - 30 => 'childamount', - 31 => 'apipluginbroker', - 32 => 'resource', - 33 => 'parentClass', - 34 => 'definition', - 35 => 'locked', - 36 => 'language', - 37 => 'omitmandatorycheck', - 38 => 'idpath', - 39 => 'object', - 40 => 'fieldname', - 41 => 'property', - 42 => 'parentid', - 43 => 'children', - 44 => 'scheduledtasks', - ), - 'blockedVarsForExport' => - array ( - ), 'defaultValueGenerator' => '', )), - 2 => + 2 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 500, 'defaultValue' => NULL, + 'queryColumnType' => 'varchar', + 'columnType' => 'varchar', 'columnLength' => 255, 'regex' => '', 'unique' => NULL, @@ -228,95 +128,44 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'forbiddenNames' => - array ( - 0 => 'id', - 1 => 'key', - 2 => 'path', - 3 => 'type', - 4 => 'index', - 5 => 'classname', - 6 => 'creationdate', - 7 => 'userowner', - 8 => 'value', - 9 => 'class', - 10 => 'list', - 11 => 'fullpath', - 12 => 'childs', - 13 => 'values', - 14 => 'cachetag', - 15 => 'cachetags', - 16 => 'parent', - 17 => 'published', - 18 => 'valuefromparent', - 19 => 'userpermissions', - 20 => 'dependencies', - 21 => 'modificationdate', - 22 => 'usermodification', - 23 => 'byid', - 24 => 'bypath', - 25 => 'data', - 26 => 'versions', - 27 => 'properties', - 28 => 'permissions', - 29 => 'permissionsforuser', - 30 => 'childamount', - 31 => 'apipluginbroker', - 32 => 'resource', - 33 => 'parentClass', - 34 => 'definition', - 35 => 'locked', - 36 => 'language', - 37 => 'omitmandatorycheck', - 38 => 'idpath', - 39 => 'object', - 40 => 'fieldname', - 41 => 'property', - 42 => 'parentid', - 43 => 'children', - 44 => 'scheduledtasks', - ), - 'blockedVarsForExport' => - array ( - ), 'defaultValueGenerator' => '', )), - 3 => + 3 => Pimcore\Model\DataObject\ClassDefinition\Data\Select::__set_state(array( 'fieldtype' => 'select', - 'options' => + 'options' => array ( - 0 => + 0 => array ( 'key' => 'Committed', 'value' => 'committed', ), - 1 => + 1 => array ( 'key' => 'Cancelled', 'value' => 'cancelled', ), - 2 => + 2 => array ( 'key' => 'Payment Init', 'value' => 'paymentInit', ), - 3 => + 3 => array ( 'key' => 'Payment Pending', 'value' => 'paymentPending', ), - 4 => + 4 => array ( 'key' => 'Payment Authorized', 'value' => 'paymentAuthorized', ), - 5 => + 5 => array ( 'key' => 'Aborted', 'value' => 'aborted', ), - 6 => + 6 => array ( 'key' => 'Aborted but Response Received', 'value' => 'abortedButResponseReceived', @@ -326,6 +175,8 @@ 'defaultValue' => '', 'optionsProviderClass' => NULL, 'optionsProviderData' => NULL, + 'queryColumnType' => 'varchar(255)', + 'columnType' => 'varchar(255)', 'columnLength' => 190, 'dynamicOptions' => false, 'name' => 'paymentState', @@ -342,64 +193,15 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'forbiddenNames' => - array ( - 0 => 'id', - 1 => 'key', - 2 => 'path', - 3 => 'type', - 4 => 'index', - 5 => 'classname', - 6 => 'creationdate', - 7 => 'userowner', - 8 => 'value', - 9 => 'class', - 10 => 'list', - 11 => 'fullpath', - 12 => 'childs', - 13 => 'values', - 14 => 'cachetag', - 15 => 'cachetags', - 16 => 'parent', - 17 => 'published', - 18 => 'valuefromparent', - 19 => 'userpermissions', - 20 => 'dependencies', - 21 => 'modificationdate', - 22 => 'usermodification', - 23 => 'byid', - 24 => 'bypath', - 25 => 'data', - 26 => 'versions', - 27 => 'properties', - 28 => 'permissions', - 29 => 'permissionsforuser', - 30 => 'childamount', - 31 => 'apipluginbroker', - 32 => 'resource', - 33 => 'parentClass', - 34 => 'definition', - 35 => 'locked', - 36 => 'language', - 37 => 'omitmandatorycheck', - 38 => 'idpath', - 39 => 'object', - 40 => 'fieldname', - 41 => 'property', - 42 => 'parentid', - 43 => 'children', - 44 => 'scheduledtasks', - ), - 'blockedVarsForExport' => - array ( - ), 'defaultValueGenerator' => '', )), - 4 => + 4 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 500, 'defaultValue' => NULL, + 'queryColumnType' => 'varchar', + 'columnType' => 'varchar', 'columnLength' => 255, 'regex' => '', 'unique' => NULL, @@ -418,60 +220,9 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'forbiddenNames' => - array ( - 0 => 'id', - 1 => 'key', - 2 => 'path', - 3 => 'type', - 4 => 'index', - 5 => 'classname', - 6 => 'creationdate', - 7 => 'userowner', - 8 => 'value', - 9 => 'class', - 10 => 'list', - 11 => 'fullpath', - 12 => 'childs', - 13 => 'values', - 14 => 'cachetag', - 15 => 'cachetags', - 16 => 'parent', - 17 => 'published', - 18 => 'valuefromparent', - 19 => 'userpermissions', - 20 => 'dependencies', - 21 => 'modificationdate', - 22 => 'usermodification', - 23 => 'byid', - 24 => 'bypath', - 25 => 'data', - 26 => 'versions', - 27 => 'properties', - 28 => 'permissions', - 29 => 'permissionsforuser', - 30 => 'childamount', - 31 => 'apipluginbroker', - 32 => 'resource', - 33 => 'parentClass', - 34 => 'definition', - 35 => 'locked', - 36 => 'language', - 37 => 'omitmandatorycheck', - 38 => 'idpath', - 39 => 'object', - 40 => 'fieldname', - 41 => 'property', - 42 => 'parentid', - 43 => 'children', - 44 => 'scheduledtasks', - ), - 'blockedVarsForExport' => - array ( - ), 'defaultValueGenerator' => '', )), - 5 => + 5 => Pimcore\Model\DataObject\ClassDefinition\Data\Textarea::__set_state(array( 'fieldtype' => 'textarea', 'width' => 500, @@ -479,6 +230,8 @@ 'maxLength' => NULL, 'showCharCount' => NULL, 'excludeFromSearchIndex' => false, + 'queryColumnType' => 'longtext', + 'columnType' => 'longtext', 'name' => 'message', 'title' => 'Message', 'tooltip' => '', @@ -493,59 +246,8 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'forbiddenNames' => - array ( - 0 => 'id', - 1 => 'key', - 2 => 'path', - 3 => 'type', - 4 => 'index', - 5 => 'classname', - 6 => 'creationdate', - 7 => 'userowner', - 8 => 'value', - 9 => 'class', - 10 => 'list', - 11 => 'fullpath', - 12 => 'childs', - 13 => 'values', - 14 => 'cachetag', - 15 => 'cachetags', - 16 => 'parent', - 17 => 'published', - 18 => 'valuefromparent', - 19 => 'userpermissions', - 20 => 'dependencies', - 21 => 'modificationdate', - 22 => 'usermodification', - 23 => 'byid', - 24 => 'bypath', - 25 => 'data', - 26 => 'versions', - 27 => 'properties', - 28 => 'permissions', - 29 => 'permissionsforuser', - 30 => 'childamount', - 31 => 'apipluginbroker', - 32 => 'resource', - 33 => 'parentClass', - 34 => 'definition', - 35 => 'locked', - 36 => 'language', - 37 => 'omitmandatorycheck', - 38 => 'idpath', - 39 => 'object', - 40 => 'fieldname', - 41 => 'property', - 42 => 'parentid', - 43 => 'children', - 44 => 'scheduledtasks', - ), - 'blockedVarsForExport' => - array ( - ), )), - 6 => + 6 => Pimcore\Model\DataObject\ClassDefinition\Data\Textarea::__set_state(array( 'fieldtype' => 'textarea', 'width' => 500, @@ -553,6 +255,8 @@ 'maxLength' => NULL, 'showCharCount' => NULL, 'excludeFromSearchIndex' => false, + 'queryColumnType' => 'longtext', + 'columnType' => 'longtext', 'name' => 'providerData', 'title' => 'Provider Data', 'tooltip' => 'JSON', @@ -567,90 +271,41 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'forbiddenNames' => - array ( - 0 => 'id', - 1 => 'key', - 2 => 'path', - 3 => 'type', - 4 => 'index', - 5 => 'classname', - 6 => 'creationdate', - 7 => 'userowner', - 8 => 'value', - 9 => 'class', - 10 => 'list', - 11 => 'fullpath', - 12 => 'childs', - 13 => 'values', - 14 => 'cachetag', - 15 => 'cachetags', - 16 => 'parent', - 17 => 'published', - 18 => 'valuefromparent', - 19 => 'userpermissions', - 20 => 'dependencies', - 21 => 'modificationdate', - 22 => 'usermodification', - 23 => 'byid', - 24 => 'bypath', - 25 => 'data', - 26 => 'versions', - 27 => 'properties', - 28 => 'permissions', - 29 => 'permissionsforuser', - 30 => 'childamount', - 31 => 'apipluginbroker', - 32 => 'resource', - 33 => 'parentClass', - 34 => 'definition', - 35 => 'locked', - 36 => 'language', - 37 => 'omitmandatorycheck', - 38 => 'idpath', - 39 => 'object', - 40 => 'fieldname', - 41 => 'property', - 42 => 'parentid', - 43 => 'children', - 44 => 'scheduledtasks', - ), - 'blockedVarsForExport' => - array ( - ), )), - 7 => + 7 => Pimcore\Model\DataObject\ClassDefinition\Layout\Fieldset::__set_state(array( 'fieldtype' => 'fieldset', - 'name' => 'additionalDataPayPal', + 'name' => 'additionalDataUnzer', 'type' => NULL, - 'region' => NULL, - 'title' => 'Additional PayPal Data', - 'width' => '', - 'height' => '', + 'region' => '', + 'title' => 'Additional Unzer Data', + 'width' => NULL, + 'height' => NULL, 'collapsible' => true, 'collapsed' => true, 'bodyStyle' => '', 'datatype' => 'layout', 'permissions' => NULL, - 'childs' => + 'childs' => array ( - 0 => + 0 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', - 'width' => '', + 'width' => NULL, 'defaultValue' => NULL, + 'queryColumnType' => 'varchar', + 'columnType' => 'varchar', 'columnLength' => 255, 'regex' => '', - 'unique' => false, - 'showCharCount' => false, - 'name' => 'provider_paypal_amount', + 'unique' => NULL, + 'showCharCount' => NULL, + 'name' => 'provider_unzer_amount', 'title' => 'Amount', 'tooltip' => '', 'mandatory' => false, 'noteditable' => true, 'index' => false, - 'locked' => NULL, + 'locked' => false, 'style' => '', 'permissions' => NULL, 'datatype' => 'data', @@ -658,75 +313,26 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'forbiddenNames' => - array ( - 0 => 'id', - 1 => 'key', - 2 => 'path', - 3 => 'type', - 4 => 'index', - 5 => 'classname', - 6 => 'creationdate', - 7 => 'userowner', - 8 => 'value', - 9 => 'class', - 10 => 'list', - 11 => 'fullpath', - 12 => 'childs', - 13 => 'values', - 14 => 'cachetag', - 15 => 'cachetags', - 16 => 'parent', - 17 => 'published', - 18 => 'valuefromparent', - 19 => 'userpermissions', - 20 => 'dependencies', - 21 => 'modificationdate', - 22 => 'usermodification', - 23 => 'byid', - 24 => 'bypath', - 25 => 'data', - 26 => 'versions', - 27 => 'properties', - 28 => 'permissions', - 29 => 'permissionsforuser', - 30 => 'childamount', - 31 => 'apipluginbroker', - 32 => 'resource', - 33 => 'parentClass', - 34 => 'definition', - 35 => 'locked', - 36 => 'language', - 37 => 'omitmandatorycheck', - 38 => 'idpath', - 39 => 'object', - 40 => 'fieldname', - 41 => 'property', - 42 => 'parentid', - 43 => 'children', - 44 => 'scheduledtasks', - ), - 'blockedVarsForExport' => - array ( - ), 'defaultValueGenerator' => '', )), - 1 => + 1 => Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( 'fieldtype' => 'input', 'width' => 500, 'defaultValue' => NULL, + 'queryColumnType' => 'varchar', + 'columnType' => 'varchar', 'columnLength' => 255, 'regex' => '', - 'unique' => false, - 'showCharCount' => false, - 'name' => 'provider_paypal_PaymentType', + 'unique' => NULL, + 'showCharCount' => NULL, + 'name' => 'provider_unzer_PaymentType', 'title' => 'Payment Type', 'tooltip' => '', 'mandatory' => false, 'noteditable' => true, 'index' => false, - 'locked' => NULL, + 'locked' => false, 'style' => '', 'permissions' => NULL, 'datatype' => 'data', @@ -734,87 +340,24 @@ 'invisible' => false, 'visibleGridView' => false, 'visibleSearch' => false, - 'forbiddenNames' => - array ( - 0 => 'id', - 1 => 'key', - 2 => 'path', - 3 => 'type', - 4 => 'index', - 5 => 'classname', - 6 => 'creationdate', - 7 => 'userowner', - 8 => 'value', - 9 => 'class', - 10 => 'list', - 11 => 'fullpath', - 12 => 'childs', - 13 => 'values', - 14 => 'cachetag', - 15 => 'cachetags', - 16 => 'parent', - 17 => 'published', - 18 => 'valuefromparent', - 19 => 'userpermissions', - 20 => 'dependencies', - 21 => 'modificationdate', - 22 => 'usermodification', - 23 => 'byid', - 24 => 'bypath', - 25 => 'data', - 26 => 'versions', - 27 => 'properties', - 28 => 'permissions', - 29 => 'permissionsforuser', - 30 => 'childamount', - 31 => 'apipluginbroker', - 32 => 'resource', - 33 => 'parentClass', - 34 => 'definition', - 35 => 'locked', - 36 => 'language', - 37 => 'omitmandatorycheck', - 38 => 'idpath', - 39 => 'object', - 40 => 'fieldname', - 41 => 'property', - 42 => 'parentid', - 43 => 'children', - 44 => 'scheduledtasks', - ), - 'blockedVarsForExport' => - array ( - ), 'defaultValueGenerator' => '', )), ), 'locked' => false, - 'blockedVarsForExport' => - array ( - ), - 'labelWidth' => 0, + 'labelWidth' => 150, 'labelAlign' => 'left', )), ), 'locked' => false, - 'blockedVarsForExport' => - array ( - ), - 'icon' => '', + 'icon' => NULL, 'labelWidth' => 150, 'labelAlign' => 'left', )), ), 'locked' => false, - 'blockedVarsForExport' => - array ( - ), 'icon' => NULL, 'labelWidth' => 100, 'labelAlign' => 'left', )), 'generateTypeDeclarations' => true, - 'blockedVarsForExport' => - array ( - ), )); diff --git a/var/classes/objectbricks/PaymentProviderPayPalSmartButton.php b/var/classes/objectbricks/PaymentProviderPayPalSmartButton.php new file mode 100644 index 00000000..7469438c --- /dev/null +++ b/var/classes/objectbricks/PaymentProviderPayPalSmartButton.php @@ -0,0 +1,543 @@ + + array ( + 0 => + array ( + 'classname' => 'OnlineShopOrder', + 'fieldname' => 'paymentProvider', + ), + ), + 'dao' => NULL, + 'key' => 'PaymentProviderPayPalSmartButton', + 'parentClass' => '', + 'implementsInterfaces' => NULL, + 'title' => '', + 'group' => 'PaymentProvider', + 'layoutDefinitions' => + Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( + 'fieldtype' => 'panel', + 'layout' => NULL, + 'border' => false, + 'name' => NULL, + 'type' => NULL, + 'region' => NULL, + 'title' => NULL, + 'width' => NULL, + 'height' => NULL, + 'collapsible' => false, + 'collapsed' => false, + 'bodyStyle' => NULL, + 'datatype' => 'layout', + 'permissions' => NULL, + 'childs' => + array ( + 0 => + Pimcore\Model\DataObject\ClassDefinition\Layout\Panel::__set_state(array( + 'fieldtype' => 'panel', + 'layout' => NULL, + 'border' => false, + 'name' => 'Layout', + 'type' => NULL, + 'region' => NULL, + 'title' => '', + 'width' => NULL, + 'height' => NULL, + 'collapsible' => false, + 'collapsed' => false, + 'bodyStyle' => '', + 'datatype' => 'layout', + 'permissions' => NULL, + 'childs' => + array ( + 0 => + Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( + 'fieldtype' => 'input', + 'width' => NULL, + 'defaultValue' => NULL, + 'columnLength' => 190, + 'regex' => '', + 'unique' => false, + 'showCharCount' => false, + 'name' => 'configurationKey', + 'title' => 'Configuration Key', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => false, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => false, + 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), + 'defaultValueGenerator' => '', + )), + 1 => + Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( + 'fieldtype' => 'input', + 'width' => 400, + 'defaultValue' => NULL, + 'columnLength' => 255, + 'regex' => '', + 'unique' => false, + 'showCharCount' => false, + 'name' => 'auth_orderID', + 'title' => 'OrderID', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => true, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => false, + 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), + 'defaultValueGenerator' => '', + )), + 2 => + Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( + 'fieldtype' => 'input', + 'width' => 400, + 'defaultValue' => NULL, + 'columnLength' => 255, + 'regex' => '', + 'unique' => false, + 'showCharCount' => false, + 'name' => 'auth_payerID', + 'title' => 'PayerID', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => true, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => false, + 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), + 'defaultValueGenerator' => '', + )), + 3 => + Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( + 'fieldtype' => 'input', + 'width' => 400, + 'defaultValue' => NULL, + 'columnLength' => 255, + 'regex' => '', + 'unique' => false, + 'showCharCount' => false, + 'name' => 'auth_email_address', + 'title' => 'Email Address', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => true, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => false, + 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), + 'defaultValueGenerator' => '', + )), + 4 => + Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( + 'fieldtype' => 'input', + 'width' => 400, + 'defaultValue' => NULL, + 'columnLength' => 255, + 'regex' => '', + 'unique' => false, + 'showCharCount' => false, + 'name' => 'auth_given_name', + 'title' => 'Given Name', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => true, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => false, + 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), + 'defaultValueGenerator' => '', + )), + 5 => + Pimcore\Model\DataObject\ClassDefinition\Data\Input::__set_state(array( + 'fieldtype' => 'input', + 'width' => 400, + 'defaultValue' => NULL, + 'columnLength' => 255, + 'regex' => '', + 'unique' => false, + 'showCharCount' => false, + 'name' => 'auth_surname', + 'title' => 'Surname', + 'tooltip' => '', + 'mandatory' => false, + 'noteditable' => true, + 'index' => false, + 'locked' => false, + 'style' => '', + 'permissions' => NULL, + 'datatype' => 'data', + 'relationType' => false, + 'invisible' => false, + 'visibleGridView' => false, + 'visibleSearch' => false, + 'forbiddenNames' => + array ( + 0 => 'id', + 1 => 'key', + 2 => 'path', + 3 => 'type', + 4 => 'index', + 5 => 'classname', + 6 => 'creationdate', + 7 => 'userowner', + 8 => 'value', + 9 => 'class', + 10 => 'list', + 11 => 'fullpath', + 12 => 'childs', + 13 => 'values', + 14 => 'cachetag', + 15 => 'cachetags', + 16 => 'parent', + 17 => 'published', + 18 => 'valuefromparent', + 19 => 'userpermissions', + 20 => 'dependencies', + 21 => 'modificationdate', + 22 => 'usermodification', + 23 => 'byid', + 24 => 'bypath', + 25 => 'data', + 26 => 'versions', + 27 => 'properties', + 28 => 'permissions', + 29 => 'permissionsforuser', + 30 => 'childamount', + 31 => 'apipluginbroker', + 32 => 'resource', + 33 => 'parentClass', + 34 => 'definition', + 35 => 'locked', + 36 => 'language', + 37 => 'omitmandatorycheck', + 38 => 'idpath', + 39 => 'object', + 40 => 'fieldname', + 41 => 'property', + 42 => 'parentid', + 43 => 'children', + 44 => 'scheduledtasks', + ), + 'blockedVarsForExport' => + array ( + ), + 'defaultValueGenerator' => '', + )), + ), + 'locked' => false, + 'blockedVarsForExport' => + array ( + ), + 'icon' => NULL, + 'labelWidth' => 150, + 'labelAlign' => 'left', + )), + ), + 'locked' => false, + 'blockedVarsForExport' => + array ( + ), + 'icon' => NULL, + 'labelWidth' => 100, + 'labelAlign' => 'left', + )), + 'generateTypeDeclarations' => false, + 'blockedVarsForExport' => + array ( + ), +)); diff --git a/var/config/extensions.php b/var/config/extensions.php index 3f3d32dd..edf3bfd4 100644 --- a/var/config/extensions.php +++ b/var/config/extensions.php @@ -8,6 +8,6 @@ "Web2PrintToolsBundle\\Web2PrintToolsBundle" => TRUE, "Pimcore\\Bundle\\DataHubBundle\\PimcoreDataHubBundle" => TRUE, "Pimcore\\Bundle\\ObjectMergerBundle\\ObjectMergerBundle" => TRUE, - "Pimcore\\Bundle\\EcommerceFrameworkBundle\\PimcorePaymentProviderUnzerBundle" => TRUE + "Pimcore\\Bundle\\EcommerceFrameworkBundle\\PimcorePaymentProviderPayPalSmartPaymentButtonBundle" => TRUE ] ]; From c109c54f5b308487a2d26902023a08154a8cf42b Mon Sep 17 00:00:00 2001 From: dpahuja Date: Thu, 27 Jan 2022 16:10:39 +0100 Subject: [PATCH 7/8] [PaypalSmartButton] Integrate payment provider - data dump --- dump/data-0-bootstrap.sql | 54 +- dump/data-1-dependencies.sql | 113 +- ...aymentProviderPayPalSmartButton_EF_OSO.sql | 14 + ...rick_query_PaymentProviderUnzer_EF_OSO.sql | 17 - ...aymentProviderPayPalSmartButton_EF_OSO.sql | 14 + ...ick_store_PaymentProviderPayPal_EF_OSO.sql | 3 - ...rick_store_PaymentProviderUnzer_EF_OSO.sql | 16 - ...lection_OrderPriceModifications_EF_OSO.sql | 37 +- ...1-object_collection_PaymentInfo_EF_OSO.sql | 30 +- ...-object_collection_PricingRule_EF_OSOI.sql | 4 +- ...llection_PricingRule_localized_EF_OSOI.sql | 14 +- dump/data-1-object_query_EF_OSO.sql | 25 +- dump/data-1-object_query_EF_OSOI.sql | 43 +- dump/data-1-object_relations_EF_OSO.sql | 70 +- dump/data-1-object_relations_EF_OSOI.sql | 43 +- dump/data-1-object_store_EF_OSO.sql | 25 +- dump/data-1-object_store_EF_OSOI.sql | 43 +- dump/data-1-objects.sql | 1479 ++++++++--------- dump/data-1-search_backend_data.sql | 82 +- dump/data-1-translations_admin.sql | 64 +- 20 files changed, 1037 insertions(+), 1153 deletions(-) create mode 100644 dump/data-1-object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO.sql delete mode 100644 dump/data-1-object_brick_query_PaymentProviderUnzer_EF_OSO.sql create mode 100644 dump/data-1-object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO.sql delete mode 100644 dump/data-1-object_brick_store_PaymentProviderPayPal_EF_OSO.sql diff --git a/dump/data-0-bootstrap.sql b/dump/data-0-bootstrap.sql index f889019f..492fb3c3 100644 --- a/dump/data-0-bootstrap.sql +++ b/dump/data-0-bootstrap.sql @@ -201,21 +201,20 @@ CREATE TABLE `object_brick_query_OAuth2Token_3` ( -DROP TABLE IF EXISTS `object_brick_query_PaymentProviderUnzer_EF_OSO`; -CREATE TABLE `object_brick_query_PaymentProviderUnzer_EF_OSO` ( - `o_id` int(11) NOT NULL DEFAULT '0', +DROP TABLE IF EXISTS `object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO`; +CREATE TABLE `object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO` ( + `o_id` int(11) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', - `auth_paymentMethod` varchar(190) DEFAULT NULL, - `auth_amount` varchar(190) DEFAULT NULL, - `auth_currency` varchar(190) DEFAULT NULL, - `auth_paymentType` varchar(190) DEFAULT NULL, - `auth_paymentReference` varchar(190) DEFAULT NULL, - `auth_clientMessage` varchar(190) DEFAULT NULL, - `auth_merchantMessage` varchar(190) DEFAULT NULL, - `auth_chargeId` varchar(190) DEFAULT NULL, + `configurationKey` varchar(190) DEFAULT NULL, + `auth_orderID` varchar(255) DEFAULT NULL, + `auth_payerID` varchar(255) DEFAULT NULL, + `auth_email_address` varchar(255) DEFAULT NULL, + `auth_given_name` varchar(255) DEFAULT NULL, + `auth_surname` varchar(255) DEFAULT NULL, PRIMARY KEY (`o_id`,`fieldname`), KEY `o_id` (`o_id`), - KEY `fieldname` (`fieldname`) + KEY `fieldname` (`fieldname`), + CONSTRAINT `fk_object_brick_query_PaymentProviderPayPalSmartButton__fae6504e` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -346,21 +345,20 @@ CREATE TABLE `object_brick_store_OAuth2Token_3` ( -DROP TABLE IF EXISTS `object_brick_store_PaymentProviderUnzer_EF_OSO`; -CREATE TABLE `object_brick_store_PaymentProviderUnzer_EF_OSO` ( - `o_id` int(11) NOT NULL DEFAULT '0', +DROP TABLE IF EXISTS `object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO`; +CREATE TABLE `object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO` ( + `o_id` int(11) unsigned NOT NULL DEFAULT 0, `fieldname` varchar(190) NOT NULL DEFAULT '', - `auth_paymentMethod` varchar(190) DEFAULT NULL, - `auth_amount` varchar(190) DEFAULT NULL, - `auth_currency` varchar(190) DEFAULT NULL, - `auth_paymentType` varchar(190) DEFAULT NULL, - `auth_paymentReference` varchar(190) DEFAULT NULL, - `auth_clientMessage` varchar(190) DEFAULT NULL, - `auth_merchantMessage` varchar(190) DEFAULT NULL, - `auth_chargeId` varchar(190) DEFAULT NULL, + `configurationKey` varchar(190) DEFAULT NULL, + `auth_orderID` varchar(255) DEFAULT NULL, + `auth_payerID` varchar(255) DEFAULT NULL, + `auth_email_address` varchar(255) DEFAULT NULL, + `auth_given_name` varchar(255) DEFAULT NULL, + `auth_surname` varchar(255) DEFAULT NULL, PRIMARY KEY (`o_id`,`fieldname`), KEY `o_id` (`o_id`), - KEY `fieldname` (`fieldname`) + KEY `fieldname` (`fieldname`), + CONSTRAINT `fk_object_brick_store_PaymentProviderPayPalSmartButton__d52c4917` FOREIGN KEY (`o_id`) REFERENCES `objects` (`o_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -886,10 +884,10 @@ CREATE TABLE `object_collection_PaymentInfo_EF_OSO` ( `paymentReference` varchar(255) DEFAULT NULL, `paymentState` varchar(190) DEFAULT NULL, `internalPaymentId` varchar(255) DEFAULT NULL, - `message` longtext, - `providerData` longtext, - `provider_unzer_amount` varchar(255) DEFAULT NULL, - `provider_unzer_PaymentType` varchar(255) DEFAULT NULL, + `message` longtext DEFAULT NULL, + `providerData` longtext DEFAULT NULL, + `provider_paypal_amount` varchar(255) DEFAULT NULL, + `provider_paypal_PaymentType` varchar(255) DEFAULT NULL, PRIMARY KEY (`o_id`,`index`,`fieldname`), KEY `index` (`index`), KEY `fieldname` (`fieldname`) diff --git a/dump/data-1-dependencies.sql b/dump/data-1-dependencies.sql index 23abac67..678dc4ff 100644 --- a/dump/data-1-dependencies.sql +++ b/dump/data-1-dependencies.sql @@ -2335,63 +2335,11 @@ INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2332','object','1027','object','832'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2333','object','1031','object','832'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2334','object','1036','object','832'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2335','object','1040','object','1020'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2336','object','1040','object','1041'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2337','object','1040','object','1042'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2338','object','1041','object','38'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2339','object','1042','object','405'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2340','object','1043','object','1020'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2341','object','1043','object','1044'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2342','object','1044','object','280'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2343','object','1045','object','834'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2344','object','1048','object','834'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2345','object','1048','object','1031'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2346','object','1051','object','1021'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2347','object','1051','object','1052'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2348','object','1051','object','1053'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2349','object','1051','object','1054'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2350','object','1052','object','70'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2351','object','1053','object','406'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2352','object','1054','object','384'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2353','object','1055','object','1022'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2354','object','1055','object','1056'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2355','object','1055','object','1057'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2356','object','1055','object','1058'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2357','object','1055','object','1059'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2358','object','1055','object','1060'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2359','object','1055','object','1061'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2360','object','1055','object','1062'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2361','object','1055','object','1063'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2362','object','1056','object','263'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2363','object','1057','object','388'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2364','object','1058','object','124'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2365','object','1059','object','378'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2366','object','1060','object','377'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2367','object','1061','object','311'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2368','object','1062','object','104'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2369','object','1063','object','259'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2370','object','1065','object','1022'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2371','object','1065','object','1066'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2372','object','1066','object','415'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2373','object','1067','object','1022'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2374','object','1067','object','1068'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2375','object','1067','object','1069'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2376','object','1068','object','24'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2377','object','1069','object','477'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2378','object','1070','object','1020'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2379','object','1070','object','1071'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2380','object','1071','object','20'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2381','object','1084','object','1017'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2382','object','1084','object','1085'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2383','object','1085','object','124'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2384','object','1088','object','171'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2385','object','1088','object','206'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2386','object','1089','object','1017'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2387','object','1089','object','1090'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2388','object','1089','object','1091'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2389','object','1089','object','1092'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2390','object','1090','object','235'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2391','object','1091','object','12'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2392','object','1092','object','864'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2393','object','1093','object','6'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2394','object','1093','object','80'); @@ -2399,23 +2347,7 @@ INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2396','object','1094','object','240'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2397','object','1095','object','42'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2398','object','1095','object','158'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2399','object','1103','object','1017'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2400','object','1103','object','1104'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2401','object','1104','object','115'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2402','object','1107','object','1017'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2403','object','1107','object','1092'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2404','object','1107','object','1108'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2405','object','1108','object','97'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2406','object','1109','object','1017'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2407','object','1109','object','1110'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2408','object','1109','object','1111'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2409','object','1110','object','235'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2410','object','1111','object','865'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2411','object','1112','object','1113'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2412','object','1113','object','381'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2413','object','1117','object','1017'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2414','object','1117','object','1118'); -INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2415','object','1118','object','105'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2423','object','1120','asset','401'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2416','object','1120','object','192'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2417','object','1120','object','205'); @@ -2479,3 +2411,48 @@ INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2475','object','1127','object','245'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2476','object','1127','object','266'); INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2477','object','1127','object','294'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2556','object','1161','object','1018'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2559','object','1161','object','1162'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2560','object','1161','object','1163'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2557','object','1162','object','74'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2558','object','1163','object','438'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2561','object','1164','object','1018'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2564','object','1164','object','1165'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2565','object','1164','object','1166'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2562','object','1165','object','262'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2563','object','1166','object','377'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2566','object','1167','object','1017'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2568','object','1167','object','1168'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2567','object','1168','object','105'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2569','object','1169','object','1017'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2571','object','1169','object','1170'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2570','object','1170','object','125'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2572','object','1171','object','1017'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2575','object','1171','object','1172'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2576','object','1171','object','1173'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2573','object','1172','object','235'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2574','object','1173','object','12'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2577','object','1174','object','1016'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2580','object','1174','object','1175'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2581','object','1174','object','1176'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2578','object','1175','object','316'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2579','object','1176','object','54'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2582','object','1177','object','1015'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2584','object','1177','object','1178'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2583','object','1178','object','58'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2585','object','1179','object','1015'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2588','object','1179','object','1180'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2589','object','1179','object','1181'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2586','object','1180','object','420'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2587','object','1181','object','452'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2590','object','1182','object','1015'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2592','object','1182','object','1183'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2591','object','1183','object','70'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2593','object','1184','object','1015'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2595','object','1184','object','1185'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2594','object','1185','object','161'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2596','object','1186','object','1015'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2599','object','1186','object','1187'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2600','object','1186','object','1188'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2597','object','1187','object','139'); +INSERT INTO dependencies (`id`,`sourcetype`,`sourceid`,`targettype`,`targetid`) VALUES ('2598','object','1188','object','116'); diff --git a/dump/data-1-object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO.sql b/dump/data-1-object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO.sql new file mode 100644 index 00000000..ab27be41 --- /dev/null +++ b/dump/data-1-object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO.sql @@ -0,0 +1,14 @@ + +SET NAMES utf8mb4; + +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1161','paymentProvider','paypal','9CT34444M22539158','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1164','paymentProvider','paypal','6P219778U2879173E','8K7SZCFPV9FNN','dino.flintstone@stone.age','Dino','Flintstone'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1167','paymentProvider','paypal','6JJ73082Y6212093P','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1169','paymentProvider','paypal','2EM467546N444340L','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1171','paymentProvider','paypal','25G06452DD907934U','E5MVCRWZCLVGC','pebbles.flintstone@stone.age','Pebbles','Flintstone'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1174','paymentProvider','paypal','0PW47704US056523W','KM74HEUDXRKW8','wilma.flintstone@stone.age','Wilma','Flintstone'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1177','paymentProvider','paypal','2WD483862M3756428','9JD48T3MNQAHE','fred.flintstone@stone.age','Fred','Flintstone'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1179','paymentProvider','paypal','47K11814GM581932X','CQKZHP8X94AXG','fred.flintstone@stone.age','Fred','Flintstone'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1182','paymentProvider','paypal','6R3238856S495354E','XQADWG5K37MDG','fred.flintstone@stone.age','Fred','Flintstone'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1184','paymentProvider','paypal','8KG85242WB406050N','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_query_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1186','paymentProvider','paypal','6B458608LD1779402','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); diff --git a/dump/data-1-object_brick_query_PaymentProviderUnzer_EF_OSO.sql b/dump/data-1-object_brick_query_PaymentProviderUnzer_EF_OSO.sql deleted file mode 100644 index 7d9ee73d..00000000 --- a/dump/data-1-object_brick_query_PaymentProviderUnzer_EF_OSO.sql +++ /dev/null @@ -1,17 +0,0 @@ - -SET NAMES utf8mb4; - -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1040','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','3297.8','EUR','{\"cvc\":\"***\",\"expiryDate\":\"12/2021\",\"holder\":\"\",\"id\":\"s-crd-rpb3nfywev0y\",\"number\":\"471110******0000\"}','s-pay-258050','','','s-chg-1'); -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1043','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','42681.97','EUR','{\"cvc\":\"***\",\"expiryDate\":\"12/2021\",\"holder\":\"\",\"id\":\"s-crd-h6lwoa24zea2\",\"number\":\"545301******9543\"}','s-pay-258057','','','s-chg-1'); -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1051','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','84481.11','EUR','{\"cvc\":\"***\",\"expiryDate\":\"03/2020\",\"holder\":\"\",\"id\":\"s-crd-lk061jguw0jg\",\"number\":\"471110******0000\"}','s-pay-258312','','','s-chg-1'); -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1055','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Sofort','61963.83','EUR','{\"id\":\"s-sft-ikpeyojcqdfa\"}','s-pay-258315','','','s-chg-1'); -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1065','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Paypal','801.85','EUR','{\"id\":\"s-ppl-nqlk41s0uhbg\"}','s-pay-258317','','','s-chg-1'); -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1067','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','7097.8','EUR','{\"cvc\":\"***\",\"expiryDate\":\"03/2030\",\"holder\":\"\",\"id\":\"s-crd-duogqc6m4kns\",\"number\":\"545301******9543\"}','s-pay-258318','','','s-chg-1'); -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1070','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','5195.95','EUR','{\"cvc\":\"***\",\"expiryDate\":\"03/2030\",\"holder\":\"\",\"id\":\"s-crd-dk2ppqeipqv2\",\"number\":\"471110******0000\"}','s-pay-258332','','','s-chg-1'); -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1084','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Paypal','13495.95','EUR','{\"id\":\"s-ppl-098xvvpsqxpe\"}','s-pay-259933','','','s-chg-1'); -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1089','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','88662.14','EUR','{\"cvc\":\"***\",\"expiryDate\":\"03/2033\",\"holder\":\"\",\"id\":\"s-crd-uxtweibtv9zw\",\"number\":\"471110******0000\"}','s-pay-259950','','','s-chg-1'); -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1103','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Paypal','5595.95','EUR','{\"email\":\"p*************r@h**********e\",\"id\":\"s-ppl-5lxdjx7sxobc\"}','s-pay-260327','','','s-chg-1'); -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1107','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Paypal','8995.95','EUR','{\"email\":\"p*************r@h**********e\",\"id\":\"s-ppl-7rosnqhn9amu\"}','s-pay-260875','','','s-chg-1'); -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1109','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Paypal','22173.99','EUR','{\"email\":\"p*************r@h**********e\",\"id\":\"s-ppl-kot6mjewxigq\"}','s-pay-260906','','','s-chg-1'); -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1112','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','1366.55','EUR','{\"cvc\":\"***\",\"expiryDate\":\"02/2021\",\"holder\":\"\",\"id\":\"s-crd-1uywhyadzz8w\",\"number\":\"545301******9543\"}','s-pay-260976','','','s-chg-1'); -INSERT INTO object_brick_query_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1117','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Paypal','31915.07','EUR','{\"email\":\"p*************r@h**********e\",\"id\":\"s-ppl-ys3pt5mp30ga\"}','s-pay-261019','','','s-chg-1'); diff --git a/dump/data-1-object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO.sql b/dump/data-1-object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO.sql new file mode 100644 index 00000000..8c231265 --- /dev/null +++ b/dump/data-1-object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO.sql @@ -0,0 +1,14 @@ + +SET NAMES utf8mb4; + +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1161','paymentProvider','paypal','9CT34444M22539158','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1164','paymentProvider','paypal','6P219778U2879173E','8K7SZCFPV9FNN','dino.flintstone@stone.age','Dino','Flintstone'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1167','paymentProvider','paypal','6JJ73082Y6212093P','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1169','paymentProvider','paypal','2EM467546N444340L','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1171','paymentProvider','paypal','25G06452DD907934U','E5MVCRWZCLVGC','pebbles.flintstone@stone.age','Pebbles','Flintstone'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1174','paymentProvider','paypal','0PW47704US056523W','KM74HEUDXRKW8','wilma.flintstone@stone.age','Wilma','Flintstone'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1177','paymentProvider','paypal','2WD483862M3756428','9JD48T3MNQAHE','fred.flintstone@stone.age','Fred','Flintstone'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1179','paymentProvider','paypal','47K11814GM581932X','CQKZHP8X94AXG','fred.flintstone@stone.age','Fred','Flintstone'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1182','paymentProvider','paypal','6R3238856S495354E','XQADWG5K37MDG','fred.flintstone@stone.age','Fred','Flintstone'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1184','paymentProvider','paypal','8KG85242WB406050N','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); +INSERT INTO object_brick_store_PaymentProviderPayPalSmartButton_EF_OSO (`o_id`,`fieldname`,`configurationKey`,`auth_orderID`,`auth_payerID`,`auth_email_address`,`auth_given_name`,`auth_surname`) VALUES ('1186','paymentProvider','paypal','6B458608LD1779402','ZPHG5HTTA7KM2','sb-n9hfj12488071@personal.example.com','John','Doe'); diff --git a/dump/data-1-object_brick_store_PaymentProviderPayPal_EF_OSO.sql b/dump/data-1-object_brick_store_PaymentProviderPayPal_EF_OSO.sql deleted file mode 100644 index a3c9d421..00000000 --- a/dump/data-1-object_brick_store_PaymentProviderPayPal_EF_OSO.sql +++ /dev/null @@ -1,3 +0,0 @@ - -SET NAMES utf8mb4; - diff --git a/dump/data-1-object_brick_store_PaymentProviderUnzer_EF_OSO.sql b/dump/data-1-object_brick_store_PaymentProviderUnzer_EF_OSO.sql index e4f23db0..e3e2ca0a 100644 --- a/dump/data-1-object_brick_store_PaymentProviderUnzer_EF_OSO.sql +++ b/dump/data-1-object_brick_store_PaymentProviderUnzer_EF_OSO.sql @@ -1,17 +1 @@ - SET NAMES utf8mb4; - -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1040','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','3297.8','EUR','{\"cvc\":\"***\",\"expiryDate\":\"12/2021\",\"holder\":\"\",\"id\":\"s-crd-rpb3nfywev0y\",\"number\":\"471110******0000\"}','s-pay-258050','','','s-chg-1'); -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1043','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','42681.97','EUR','{\"cvc\":\"***\",\"expiryDate\":\"12/2021\",\"holder\":\"\",\"id\":\"s-crd-h6lwoa24zea2\",\"number\":\"545301******9543\"}','s-pay-258057','','','s-chg-1'); -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1051','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','84481.11','EUR','{\"cvc\":\"***\",\"expiryDate\":\"03/2020\",\"holder\":\"\",\"id\":\"s-crd-lk061jguw0jg\",\"number\":\"471110******0000\"}','s-pay-258312','','','s-chg-1'); -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1055','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Sofort','61963.83','EUR','{\"id\":\"s-sft-ikpeyojcqdfa\"}','s-pay-258315','','','s-chg-1'); -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1065','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Paypal','801.85','EUR','{\"id\":\"s-ppl-nqlk41s0uhbg\"}','s-pay-258317','','','s-chg-1'); -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1067','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','7097.8','EUR','{\"cvc\":\"***\",\"expiryDate\":\"03/2030\",\"holder\":\"\",\"id\":\"s-crd-duogqc6m4kns\",\"number\":\"545301******9543\"}','s-pay-258318','','','s-chg-1'); -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1070','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','5195.95','EUR','{\"cvc\":\"***\",\"expiryDate\":\"03/2030\",\"holder\":\"\",\"id\":\"s-crd-dk2ppqeipqv2\",\"number\":\"471110******0000\"}','s-pay-258332','','','s-chg-1'); -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1084','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Paypal','13495.95','EUR','{\"id\":\"s-ppl-098xvvpsqxpe\"}','s-pay-259933','','','s-chg-1'); -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1089','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','88662.14','EUR','{\"cvc\":\"***\",\"expiryDate\":\"03/2033\",\"holder\":\"\",\"id\":\"s-crd-uxtweibtv9zw\",\"number\":\"471110******0000\"}','s-pay-259950','','','s-chg-1'); -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1103','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Paypal','5595.95','EUR','{\"email\":\"p*************r@h**********e\",\"id\":\"s-ppl-5lxdjx7sxobc\"}','s-pay-260327','','','s-chg-1'); -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1107','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Paypal','8995.95','EUR','{\"email\":\"p*************r@h**********e\",\"id\":\"s-ppl-7rosnqhn9amu\"}','s-pay-260875','','','s-chg-1'); -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1109','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Paypal','22173.99','EUR','{\"email\":\"p*************r@h**********e\",\"id\":\"s-ppl-kot6mjewxigq\"}','s-pay-260906','','','s-chg-1'); -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1112','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Card','1366.55','EUR','{\"cvc\":\"***\",\"expiryDate\":\"02/2021\",\"holder\":\"\",\"id\":\"s-crd-1uywhyadzz8w\",\"number\":\"545301******9543\"}','s-pay-260976','','','s-chg-1'); -INSERT INTO object_brick_store_PaymentProviderUnzer_EF_OSO (`o_id`,`fieldname`,`auth_paymentMethod`,`auth_amount`,`auth_currency`,`auth_paymentType`,`auth_paymentReference`,`auth_clientMessage`,`auth_merchantMessage`,`auth_chargeId`) VALUES ('1117','paymentProvider','UnzerSDK\\Resources\\PaymentTypes\\Paypal','31915.07','EUR','{\"email\":\"p*************r@h**********e\",\"id\":\"s-ppl-ys3pt5mp30ga\"}','s-pay-261019','','','s-chg-1'); diff --git a/dump/data-1-object_collection_OrderPriceModifications_EF_OSO.sql b/dump/data-1-object_collection_OrderPriceModifications_EF_OSO.sql index 6d21aace..744ca306 100644 --- a/dump/data-1-object_collection_OrderPriceModifications_EF_OSO.sql +++ b/dump/data-1-object_collection_OrderPriceModifications_EF_OSO.sql @@ -1,23 +1,20 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1040','0','priceModifications','shipping','5.0427','5.9000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1043','0','priceModifications','shipping','5.0427','5.9000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1043','1','priceModifications','Cart Discount','-1128.1013','-1319.8785',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1051','0','priceModifications','shipping','5.0427','5.9000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1051','1','priceModifications','Cart Discount','-2233.0218','-2612.6355',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1055','0','priceModifications','shipping','5.0427','5.9000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1055','1','priceModifications','Cart Discount','-1637.7989','-1916.2247',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1065','0','priceModifications','shipping','5.0427','5.9000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1067','0','priceModifications','shipping','5.0427','5.9000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1070','0','priceModifications','Shipping','170.9402','200.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1084','0','priceModifications','Shipping','170.9402','200.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1089','0','priceModifications','Shipping','341.8803','400.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1089','1','priceModifications','Cart Discount','-2333.1256','-2729.7570',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1103','0','priceModifications','Shipping','170.9402','200.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1107','0','priceModifications','Shipping','0.0000','0.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1109','0','priceModifications','Shipping','170.9402','200.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1109','1','priceModifications','Voucher Discount Commercial Cars','-189.7090','-221.9595',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1112','0','priceModifications','Shipping','8.5470','10.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1117','0','priceModifications','Shipping','170.9402','200.0000',NULL); -INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1117','1','priceModifications','Cart Discount','-838.3577','-980.8785',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1161','0','priceModifications','Shipping','170.9402','200.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1164','0','priceModifications','Shipping','179.4872','210.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1167','0','priceModifications','Shipping','170.9402','200.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1167','1','priceModifications','Cart Discount','-838.3590','-980.8800','6'); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1169','0','priceModifications','Shipping','170.9402','200.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1171','0','priceModifications','Shipping','341.8803','400.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1171','1','priceModifications','Cart Discount','-2333.1282','-2729.7600','6'); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1174','0','priceModifications','Shipping','341.8803','400.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1174','1','priceModifications','Cart Discount','-928.0000','-1085.7600','6'); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1177','0','priceModifications','Shipping','170.9402','200.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1179','0','priceModifications','Shipping','8.5470','10.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1182','0','priceModifications','Shipping','170.9402','200.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1182','1','priceModifications','Cart Discount','-2192.2051','-2564.8800','6'); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1184','0','priceModifications','Shipping','170.9402','200.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1184','1','priceModifications','Cart Discount','-1656.3077','-1937.8800','6'); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1186','0','priceModifications','Shipping','341.8803','400.0000',NULL); +INSERT INTO object_collection_OrderPriceModifications_EF_OSO (`o_id`,`index`,`fieldname`,`name`,`netAmount`,`amount`,`pricingRuleId`) VALUES ('1186','1','priceModifications','Cart Discount','-3158.7692','-3695.7600','6'); diff --git a/dump/data-1-object_collection_PaymentInfo_EF_OSO.sql b/dump/data-1-object_collection_PaymentInfo_EF_OSO.sql index 411a7bb9..1193db96 100644 --- a/dump/data-1-object_collection_PaymentInfo_EF_OSO.sql +++ b/dump/data-1-object_collection_PaymentInfo_EF_OSO.sql @@ -1,21 +1,15 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1040','0','paymentInfo','1566903449','1566903462','s-pay-258050','paymentAuthorized','payment_3097299132-1~1040',' ','{\"unzer_amount\":3297.8000000000002,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"cvc\\\":\\\"***\\\",\\\"expiryDate\\\":\\\"12\\/2021\\\",\\\"holder\\\":\\\"\\\",\\\"id\\\":\\\"s-crd-rpb3nfywev0y\\\",\\\"number\\\":\\\"471110******0000\\\"}\",\"unzer_paymentReference\":\"s-pay-258050\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1043','0','paymentInfo','1566903600','1566903614','s-pay-258057','paymentAuthorized','payment_2474748246-1~1043',' ','{\"unzer_amount\":42681.970000000001,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"cvc\\\":\\\"***\\\",\\\"expiryDate\\\":\\\"12\\/2021\\\",\\\"holder\\\":\\\"\\\",\\\"id\\\":\\\"s-crd-h6lwoa24zea2\\\",\\\"number\\\":\\\"545301******9543\\\"}\",\"unzer_paymentReference\":\"s-pay-258057\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1051','0','paymentInfo','1566908263','1566908277','s-pay-258312','paymentAuthorized','payment_3231807339-1~1051',' ','{\"unzer_amount\":84481.110000000001,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"cvc\\\":\\\"***\\\",\\\"expiryDate\\\":\\\"03\\/2020\\\",\\\"holder\\\":\\\"\\\",\\\"id\\\":\\\"s-crd-lk061jguw0jg\\\",\\\"number\\\":\\\"471110******0000\\\"}\",\"unzer_paymentReference\":\"s-pay-258312\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1055','0','paymentInfo','1566908905','1566908998','s-pay-258315','paymentAuthorized','payment_143996510-1~1055',' ','{\"unzer_amount\":61963.830000000002,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"id\\\":\\\"s-sft-ikpeyojcqdfa\\\"}\",\"unzer_paymentReference\":\"s-pay-258315\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Sofort\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1065','0','paymentInfo','1566909049','1566909087','s-pay-258317','paymentAuthorized','payment_2418972515-1~1065',' ','{\"unzer_amount\":801.85000000000002,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"id\\\":\\\"s-ppl-nqlk41s0uhbg\\\"}\",\"unzer_paymentReference\":\"s-pay-258317\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Paypal\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1067','0','paymentInfo','1566909166','1566909181','s-pay-258318','paymentAuthorized','payment_830246481-1~1067',' ','{\"unzer_amount\":7097.8000000000002,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"cvc\\\":\\\"***\\\",\\\"expiryDate\\\":\\\"03\\/2030\\\",\\\"holder\\\":\\\"\\\",\\\"id\\\":\\\"s-crd-duogqc6m4kns\\\",\\\"number\\\":\\\"545301******9543\\\"}\",\"unzer_paymentReference\":\"s-pay-258318\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1070','0','paymentInfo','1566912074','1566912089','s-pay-258332','paymentAuthorized','payment_2223932252-1~1070',' ','{\"unzer_amount\":5195.9499999999998,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"cvc\\\":\\\"***\\\",\\\"expiryDate\\\":\\\"03\\/2030\\\",\\\"holder\\\":\\\"\\\",\\\"id\\\":\\\"s-crd-dk2ppqeipqv2\\\",\\\"number\\\":\\\"471110******0000\\\"}\",\"unzer_paymentReference\":\"s-pay-258332\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1084','0','paymentInfo','1566992803','1566992805','s-pay-259929','cancelled','payment_510745625-1~1084','Payment cancelled by \'cancelStartedOrderPayment\'','{\"unzer_amount\":0,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"id\\\":\\\"s-sft-y60ps6zdymje\\\"}\",\"unzer_paymentReference\":\"s-sft-y60ps6zdymje\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1084','1','paymentInfo','1566992843','1566992845','s-pay-259931','cancelled','payment_510745625-2~1084','Payment cancelled by \'cancelStartedOrderPayment\'','{\"unzer_amount\":0,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"id\\\":\\\"s-sft-cozw3ydhepgg\\\"}\",\"unzer_paymentReference\":\"s-sft-cozw3ydhepgg\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1084','2','paymentInfo','1566992887','1566992890','s-pay-259932','cancelled','payment_510745625-3~1084','Payment cancelled by \'cancelStartedOrderPayment\'','{\"unzer_amount\":0,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"id\\\":\\\"s-ppl-ytmmcck0pak2\\\"}\",\"unzer_paymentReference\":\"s-ppl-ytmmcck0pak2\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1084','3','paymentInfo','1566992926','1566992982','s-pay-259933','paymentAuthorized','payment_510745625-4~1084',' ','{\"unzer_amount\":13495.950000000001,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"id\\\":\\\"s-ppl-098xvvpsqxpe\\\"}\",\"unzer_paymentReference\":\"s-pay-259933\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Paypal\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1089','0','paymentInfo','1566995338','1566995350','s-pay-259950','paymentAuthorized','payment_891573860-1~1089',' ','{\"unzer_amount\":88662.139999999999,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"cvc\\\":\\\"***\\\",\\\"expiryDate\\\":\\\"03\\/2033\\\",\\\"holder\\\":\\\"\\\",\\\"id\\\":\\\"s-crd-uxtweibtv9zw\\\",\\\"number\\\":\\\"471110******0000\\\"}\",\"unzer_paymentReference\":\"s-pay-259950\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1103','0','paymentInfo','1567085059','1567085107','s-pay-260327','paymentAuthorized','payment_3515759803-1~1103',' ','{\"unzer_amount\":5595.9499999999998,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"email\\\":\\\"p*************r@h**********e\\\",\\\"id\\\":\\\"s-ppl-5lxdjx7sxobc\\\"}\",\"unzer_paymentReference\":\"s-pay-260327\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Paypal\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1107','0','paymentInfo','1567155537','1567155596','s-pay-260875','paymentAuthorized','payment_1016219286-1~1107',' ','{\"unzer_amount\":8995.9500000000007,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"email\\\":\\\"p*************r@h**********e\\\",\\\"id\\\":\\\"s-ppl-7rosnqhn9amu\\\"}\",\"unzer_paymentReference\":\"s-pay-260875\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Paypal\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1109','0','paymentInfo','1567157539','1567157542','s-pay-260895','cancelled','payment_465809047-1~1109','Payment cancelled by \'cancelStartedOrderPayment\'','{\"unzer_amount\":0,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"id\\\":\\\"s-ppl-ccdwzfwqkgha\\\"}\",\"unzer_paymentReference\":\"s-ppl-ccdwzfwqkgha\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1109','1','paymentInfo','1567158818','1567158998','s-pay-260906','paymentAuthorized','payment_465809047-2~1109',' ','{\"unzer_amount\":22173.990000000002,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"email\\\":\\\"p*************r@h**********e\\\",\\\"id\\\":\\\"s-ppl-kot6mjewxigq\\\"}\",\"unzer_paymentReference\":\"s-pay-260906\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Paypal\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1112','0','paymentInfo','1567165901','1567165916','s-pay-260976','paymentAuthorized','payment_2591044087-1~1112',' ','{\"unzer_amount\":1366.55,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"cvc\\\":\\\"***\\\",\\\"expiryDate\\\":\\\"02\\/2021\\\",\\\"holder\\\":\\\"\\\",\\\"id\\\":\\\"s-crd-1uywhyadzz8w\\\",\\\"number\\\":\\\"545301******9543\\\"}\",\"unzer_paymentReference\":\"s-pay-260976\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card\"}',NULL,NULL); -INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_unzer_amount`,`provider_unzer_PaymentType`) VALUES ('1117','0','paymentInfo','1567169510','1567169580','s-pay-261019','paymentAuthorized','payment_764241336-1~1117',' ','{\"unzer_amount\":31915.07,\"unzer_currency\":\"EUR\",\"unzer_paymentType\":\"{\\\"email\\\":\\\"p*************r@h**********e\\\",\\\"id\\\":\\\"s-ppl-ys3pt5mp30ga\\\"}\",\"unzer_paymentReference\":\"s-pay-261019\",\"unzer_paymentMethod\":\"UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Paypal\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES ('1161','0','paymentInfo','1643290010','1643290051','9CT34444M22539158','committed','payment_4003786380-1~1161',' ','{\"transactionId\":\"6FH331797B7658923\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES ('1164','0','paymentInfo','1643290226','1643290327','6P219778U2879173E','committed','payment_2570671871-1~1164',' ','{\"transactionId\":\"7T4647780G5719056\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES ('1167','0','paymentInfo','1643290493','1643290511','6JJ73082Y6212093P','committed','payment_4207962121-1~1167',' ','{\"transactionId\":\"5EJ606792W119123U\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES ('1169','0','paymentInfo','1643291036','1643291119','2EM467546N444340L','committed','payment_689139465-1~1169',' ','{\"transactionId\":\"2UR98580U0727211W\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES ('1171','0','paymentInfo','1643291281',NULL,NULL,'cancelled','payment_157424135-1~1171','Payment cancelled by \'cancelStartedOrderPayment\'',NULL,NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES ('1171','1','paymentInfo','1643291324','1643291376','25G06452DD907934U','committed','payment_157424135-2~1171',' ','{\"transactionId\":\"7NE073394U978643D\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES ('1174','0','paymentInfo','1643291617','1643291837','0PW47704US056523W','committed','payment_2097775836-1~1174',' ','{\"transactionId\":\"5EN41106U0891135X\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES ('1177','0','paymentInfo','1643292030','1643292080','2WD483862M3756428','committed','payment_1272845173-1~1177',' ','{\"transactionId\":\"36602535NW5366458\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES ('1179','0','paymentInfo','1643292213','1643292265','47K11814GM581932X','committed','payment_2441237792-1~1179',' ','{\"transactionId\":\"9HK67422MN1070549\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES ('1182','0','paymentInfo','1643292291','1643292329','6R3238856S495354E','committed','payment_3597057789-1~1182',' ','{\"transactionId\":\"29M94837MJ593863J\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES ('1184','0','paymentInfo','1643292381','1643292481','8KG85242WB406050N','committed','payment_1887415702-1~1184',' ','{\"transactionId\":\"76754657A50461941\"}',NULL,NULL); +INSERT INTO object_collection_PaymentInfo_EF_OSO (`o_id`,`index`,`fieldname`,`paymentStart`,`paymentFinish`,`paymentReference`,`paymentState`,`internalPaymentId`,`message`,`providerData`,`provider_paypal_amount`,`provider_paypal_PaymentType`) VALUES ('1186','0','paymentInfo','1643292624','1643292639','6B458608LD1779402','committed','payment_2447578645-1~1186',' ','{\"transactionId\":\"6AS25639NB322905M\"}',NULL,NULL); diff --git a/dump/data-1-object_collection_PricingRule_EF_OSOI.sql b/dump/data-1-object_collection_PricingRule_EF_OSOI.sql index c2d4efcf..be5c7d56 100644 --- a/dump/data-1-object_collection_PricingRule_EF_OSOI.sql +++ b/dump/data-1-object_collection_PricingRule_EF_OSOI.sql @@ -1,5 +1,5 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_PricingRule_EF_OSOI (`o_id`,`index`,`fieldname`,`ruleId`) VALUES ('1056','0','pricingRules','7'); -INSERT INTO object_collection_PricingRule_EF_OSOI (`o_id`,`index`,`fieldname`,`ruleId`) VALUES ('1113','0','pricingRules','7'); +INSERT INTO object_collection_PricingRule_EF_OSOI (`o_id`,`index`,`fieldname`,`ruleId`) VALUES ('1165','0','pricingRules','7'); +INSERT INTO object_collection_PricingRule_EF_OSOI (`o_id`,`index`,`fieldname`,`ruleId`) VALUES ('1180','0','pricingRules','7'); diff --git a/dump/data-1-object_collection_PricingRule_localized_EF_OSOI.sql b/dump/data-1-object_collection_PricingRule_localized_EF_OSOI.sql index 0761ec49..3840694d 100644 --- a/dump/data-1-object_collection_PricingRule_localized_EF_OSOI.sql +++ b/dump/data-1-object_collection_PricingRule_localized_EF_OSOI.sql @@ -1,9 +1,11 @@ SET NAMES utf8mb4; -INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1056','0','pricingRules','de','15% product discount'); -INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1056','0','pricingRules','en','15% product discount'); -INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1056','0','pricingRules','fr','15% product discount'); -INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1113','0','pricingRules','de','15% product discount'); -INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1113','0','pricingRules','en','15% product discount'); -INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1113','0','pricingRules','fr','15% product discount'); +INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1165','0','pricingRules','de',NULL); +INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1165','0','pricingRules','en','15% product discount'); +INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1165','0','pricingRules','fr',NULL); +INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1165','0','pricingRules','hi_IN',NULL); +INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1180','0','pricingRules','de',NULL); +INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1180','0','pricingRules','en','15% product discount'); +INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1180','0','pricingRules','fr',NULL); +INSERT INTO object_collection_PricingRule_localized_EF_OSOI (`ooo_id`,`index`,`fieldname`,`language`,`name`) VALUES ('1180','0','pricingRules','hi_IN',NULL); diff --git a/dump/data-1-object_query_EF_OSO.sql b/dump/data-1-object_query_EF_OSO.sql index 75983237..2fa1c9d1 100644 --- a/dump/data-1-object_query_EF_OSO.sql +++ b/dump/data-1-object_query_EF_OSO.sql @@ -1,17 +1,14 @@ SET NAMES utf8mb4; -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1040','EF_OSO','OnlineShopOrder','ord_5d650c98c2b40','committed','1566903448',',1041,1042,',NULL,NULL,NULL,NULL,'2813.5897','3291.9000','2818.6324','3297.8000','15% VAT|15%|422.7949\n2% Pimcore Tax|2%|56.3727','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_16','1020','object','Betty','Rubble',NULL,'Rudolstädter Straße 21','63741','Aschaffenburg','DE','betty.rubble@modern.age','Betty','Rubble',NULL,'Rudolstaedter Strasse 21','63741','Aschaffenburg','DE',NULL,NULL,NULL,'2022989143'); -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1043','EF_OSO','OnlineShopOrder','ord_5d650d2ff14fb','committed','1566903600',',1044,',NULL,NULL,NULL,NULL,'37603.3761','43995.9500','36480.3175','42681.9715','15% VAT|15%|5472.0476\n2% Pimcore Tax|2%|729.6064','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_17','1020','object','Betty','Rubble',NULL,'Rudolstaedter Strasse 21','63741','Aschaffenburg','DE','betty.rubble@modern.age','Betty','Rubble',NULL,'Rudolstaedter Strasse 21','63741','Aschaffenburg','DE',NULL,NULL,NULL,'3841357902'); -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1051','EF_OSO','OnlineShopOrder','ord_5d651f669cde7','committed','1566908262',',1052,1053,1054,',NULL,NULL,NULL,NULL,'74434.0598','87087.8500','72206.0807','84481.1145','15% VAT|15%|10830.9121\n2% Pimcore Tax|2%|1444.1217','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_18','1021','object','Bamm-Bamm','Rubble',NULL,'Rudolstädter Straße 21','63741','Aschaffenburg','DE','bamm@modern.age','Bamm-Bamm','Rubble',NULL,'Rudolstädter Straße 21','63741','Aschaffenburg','DE',NULL,NULL,NULL,'3589884274'); -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1055','EF_OSO','OnlineShopOrder','ord_5d6521e8206d5','committed','1566908904',',1056,1057,1058,1059,1060,1061,1062,1063,',NULL,NULL,NULL,NULL,'54593.2968','63874.1575','52960.5406','61963.8328','15% VAT|15%|7944.0812\n2% Pimcore Tax|2%|1059.2110','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_19','1022','object','Joe','Rockhead',NULL,'1502 Pratt Avenue','98109','Seattle','AT','joe.rockhead@middle.age','Joe','Rockhead',NULL,'1502 Pratt Avenue','98109','Seattle','AT',NULL,NULL,NULL,'534227246'); -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1065','EF_OSO','OnlineShopOrder','ord_5d652278a41a5','committed','1566909048',',1066,',NULL,NULL,NULL,NULL,'680.2991','795.9500','685.3418','801.8500','15% VAT|15%|102.8013\n2% Pimcore Tax|2%|13.7069','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_20','1022','object','Joe','Rockhead',NULL,'1502 Pratt Avenue','98109','Seattle','AT','joe.rockhead@middle.age','Joe','Rockhead',NULL,'1502 Pratt Avenue','98109','Seattle','AT',NULL,NULL,NULL,'527939789'); -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1067','EF_OSO','OnlineShopOrder','ord_5d6522ee11854','committed','1566909166',',1068,1069,',NULL,NULL,NULL,NULL,'6061.4529','7091.9000','6066.4956','7097.8000','15% VAT|15%|909.9744\n2% Pimcore Tax|2%|121.3300','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_21','1022','object','Joe','Rockhead',NULL,'1502 Pratt Avenue','98109','Seattle','AT','joe.rockhead@middle.age','Joe','Rockhead',NULL,'1502 Pratt Avenue','98109','Seattle','AT',NULL,NULL,NULL,'603906025'); -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1070','EF_OSO','OnlineShopOrder','ord_5d652e4a3c6a0','committed','1566912074',',1071,',NULL,NULL,NULL,NULL,'4270.0427','4995.9500','4440.9829','5195.9500','15% VAT|15%|666.1474\n2% Pimcore Tax|2%|88.8197','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_22','1020','object','Betty','Rubble',NULL,'Rudolstädter Straße 21','63741','Aschaffenburg','DE','betty.rubble@modern.age','Betty','Rubble',NULL,'Rudolstädter Straße 21','63741','Aschaffenburg','DE',NULL,NULL,NULL,'4285317549'); -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1084','EF_OSO','OnlineShopOrder','ord_5d6669a20f76c','committed','1566992802',',1085,',NULL,NULL,NULL,NULL,'11364.0598','13295.9500','11535.0000','13495.9500','15% VAT|15%|1730.2500\n2% Pimcore Tax|2%|230.7000','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_24','1017','object','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'3477634120'); -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1089','EF_OSO','OnlineShopOrder','ord_5d6673898d7b0','committed','1566995337',',1090,1091,',NULL,NULL,',1092,',NULL,'77770.8547','90991.9000','75779.6094','88662.1430','15% VAT|15%|11366.9415\n2% Pimcore Tax|2%|1515.5921','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_25','1017','object','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'3841826486'); -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1103','EF_OSO','OnlineShopOrder','ord_5d67d202490ea','committed','1567085058',',1104,',NULL,NULL,NULL,NULL,'4611.9231','5395.9500','4782.8633','5595.9500','15% VAT|15%|717.4295\n2% Pimcore Tax|2%|95.6573','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_26','1017','object','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'1337307695'); -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1107','EF_OSO','OnlineShopOrder','ord_5d68e54f7945f','committed','1567155535',',1108,',NULL,NULL,',1092,',NULL,'7688.8462','8995.9500','7688.8462','8995.9500','15% VAT|15%|1153.3269\n2% Pimcore Tax|2%|153.7769','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_27','1017','object','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'3132511100'); -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1109','EF_OSO','OnlineShopOrder','ord_5d68ed2127f75','committed','1567157537',',1110,',NULL,NULL,',1111,',NULL,'18970.8974','22195.9500','18952.1286','22173.9905','15% VAT|15%|2842.8193\n2% Pimcore Tax|2%|379.0425','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_28','1017','object','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'4052156262'); -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1112','EF_OSO','OnlineShopOrder','ord_5d690dccf28a3','committed','1567165901',',1113,',NULL,NULL,NULL,NULL,'1159.4509','1356.5575','1167.9979','1366.5575','15% VAT|15%|175.1997\n2% Pimcore Tax|2%|23.3599','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\SessionCart_sesscart_5d690d9c874a0',NULL,NULL,'Wilma','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','wilma.flintstone@stone.age','Wilma','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'786326029'); -INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1117','EF_OSO','OnlineShopOrder','ord_5d691be60e116','committed','1567169510',',1118,',NULL,NULL,NULL,NULL,'27945.2564','32695.9500','27277.8389','31915.0715','15% VAT|15%|4091.6758\n2% Pimcore Tax|2%|545.5567','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_29','1017','object','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'1233282869'); +INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1161','EF_OSO','OnlineShopOrder','ord_61f29d99992e7','committed','1643290009',',1162,',NULL,NULL,NULL,',1163,','13073.4615','15295.9500','13244.4017','15495.9500','15% VAT|15%|1986.6602\n2% Pimcore Tax|2%|264.8880','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_34','1018','object','Dino','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','dino@stone.age','Dino','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'1467148606'); +INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1164','EF_OSO','OnlineShopOrder','ord_61f29e71db3cc','committed','1643290225',',1165,1166,',NULL,NULL,NULL,NULL,'5072.9552','5935.3575','5252.4424','6145.3575','15% VAT|15%|787.8664\n2% Pimcore Tax|2%|105.0488','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_35','1018','object','Dino','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','dino@stone.age','Dino','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'984125660'); +INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1167','EF_OSO','OnlineShopOrder','ord_61f29f7cd4a36','committed','1643290492',',1168,',NULL,NULL,NULL,NULL,'27945.2564','32695.9500','27277.8376','31915.0700','15% VAT|15%|4091.6757\n2% Pimcore Tax|2%|545.5567','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_30','1017','object','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'1128054455'); +INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1169','EF_OSO','OnlineShopOrder','ord_61f2a19c2cc23','committed','1643291036',',1170,',NULL,NULL,NULL,NULL,'3671.7521','4295.9500','3842.6923','4495.9500','15% VAT|15%|576.4038\n2% Pimcore Tax|2%|76.8538','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_36','1017','object','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'362684800'); +INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1171','EF_OSO','OnlineShopOrder','ord_61f2a290b8f47','committed','1643291280',',1172,1173,',NULL,NULL,NULL,NULL,'77770.8547','90991.9000','75779.6068','88662.1400','15% VAT|15%|11366.9411\n2% Pimcore Tax|2%|1515.5920','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_37','1017','object','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'630271347'); +INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1174','EF_OSO','OnlineShopOrder','ord_61f2a3e0a8fe3','committed','1643291616',',1175,1176,',NULL,NULL,NULL,NULL,'30933.2478','36191.9000','30347.1281','35506.1400','15% VAT|15%|4552.0693\n2% Pimcore Tax|2%|606.9426','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_38','1016','object','Wilma','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','wilma.flintstone@stone.age','Wilma','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'2514998388'); +INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1177','EF_OSO','OnlineShopOrder','ord_61f2a57dddfb5','committed','1643292029',',1178,',NULL,NULL,NULL,NULL,'2902.5214','3395.9500','3073.4616','3595.9500','15% VAT|15%|461.0192\n2% Pimcore Tax|2%|61.4692','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_39','1015','object','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','fred.flintstone@stone.age','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'2693273551'); +INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1179','EF_OSO','OnlineShopOrder','ord_61f2a6358659e','committed','1643292213',',1180,1181,',NULL,NULL,NULL,NULL,'2807.7051','3285.0150','2816.2521','3295.0150','15% VAT|15%|422.4378\n2% Pimcore Tax|2%|56.3250','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_40','1015','object','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','fred.flintstone@stone.age','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'812368101'); +INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1182','EF_OSO','OnlineShopOrder','ord_61f2a6832b14a','committed','1643292291',',1183,',NULL,NULL,NULL,NULL,'73073.4615','85495.9500','71052.1966','83131.0700','15% VAT|15%|10657.8294\n2% Pimcore Tax|2%|1421.0439','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_41','1015','object','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','fred.flintstone@stone.age','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'2870280191'); +INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1184','EF_OSO','OnlineShopOrder','ord_61f2a6dd66b56','committed','1643292381',',1185,',NULL,NULL,NULL,NULL,'55210.2137','64595.9500','53724.8462','62858.0700','15% VAT|15%|8058.7269\n2% Pimcore Tax|2%|1074.4969','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_42','1015','object','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','fred.flintstone@stone.age','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'279398329'); +INSERT INTO object_query_EF_OSO (`oo_id`,`oo_classId`,`oo_className`,`ordernumber`,`orderState`,`orderdate`,`items`,`comment`,`customerOrderData`,`voucherTokens`,`giftItems`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customer__id`,`customer__type`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`successorOrder__id`,`successorOrder__type`,`cartHash`) VALUES ('1186','EF_OSO','OnlineShopOrder','ord_61f2a7cfd8682','committed','1643292623',',1187,1188,',NULL,NULL,NULL,NULL,'105292.2222','123191.9000','102475.3333','119896.1400','15% VAT|15%|15371.3001\n2% Pimcore Tax|2%|2049.5066','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_43','1015','object','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','fred.flintstone@stone.age','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,NULL,NULL,'791073012'); diff --git a/dump/data-1-object_query_EF_OSOI.sql b/dump/data-1-object_query_EF_OSOI.sql index 1637b7a0..38fe6e00 100644 --- a/dump/data-1-object_query_EF_OSOI.sql +++ b/dump/data-1-object_query_EF_OSOI.sql @@ -1,29 +1,20 @@ SET NAMES utf8mb4; -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1041','EF_OSOI','OnlineShopOrderItem',NULL,'38','object','38','Austin-Healey 3000 Mk II','1','2646.1111','3095.95','15% VAT|15%|396.9167\n2% Pimcore Tax|2%|52.9222',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1042','EF_OSOI','OnlineShopOrderItem',NULL,'405','object','1440114318','Austin-Healey 3000 Mk II Head lamps ','1','167.4786','195.95','15% VAT|15%|25.1218\n2% Pimcore Tax|2%|3.3496',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1044','EF_OSOI','OnlineShopOrderItem',NULL,'280','object','280','Austin-Healey 3000 Mk II','1','37603.3761','43995.95','15% VAT|15%|5640.5064\n2% Pimcore Tax|2%|752.0675',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1052','EF_OSOI','OnlineShopOrderItem',NULL,'70','object','70','Chevrolet Corvette','1','73073.4615','85495.95','15% VAT|15%|10961.0192\n2% Pimcore Tax|2%|1461.4692',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1053','EF_OSOI','OnlineShopOrderItem',NULL,'406','object','3437180724','Austin-Healey 3000 Mk II Windscreens ','1','765.7692','895.95','15% VAT|15%|114.8654\n2% Pimcore Tax|2%|15.3154',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1054','EF_OSOI','OnlineShopOrderItem',NULL,'384','object','4014459541','Alfa Romeo Spider Tail Lights ','1','594.8291','695.95','15% VAT|15%|89.2244\n2% Pimcore Tax|2%|11.8966',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1056','EF_OSOI','OnlineShopOrderItem',NULL,'263','object','263','Alfa Romeo 1900','1','4791.9295','5606.5575','15% VAT|15%|718.7894\n2% Pimcore Tax|2%|95.8386',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1057','EF_OSOI','OnlineShopOrderItem',NULL,'388','object','3874588350','Alfa Romeo 1900 Head lamps ','2','2215.2991','2591.9','15% VAT|15%|332.2949\n2% Pimcore Tax|2%|44.3060',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1058','EF_OSOI','OnlineShopOrderItem',NULL,'124','object','124','Lamborghini Miura','1','11364.0598','13295.95','15% VAT|15%|1704.6090\n2% Pimcore Tax|2%|227.2812',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1059','EF_OSOI','OnlineShopOrderItem',NULL,'378','object','1634310769','Alfa Romeo 1900 Rims Simple','1','82.0085','95.95','15% VAT|15%|12.3013\n2% Pimcore Tax|2%|1.6402',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1060','EF_OSOI','OnlineShopOrderItem',NULL,'377','object','4057368544','Alfa Romeo 1900 Rims Spoked Wheel','1','851.2393','995.95','15% VAT|15%|127.6859\n2% Pimcore Tax|2%|17.0248',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1061','EF_OSOI','OnlineShopOrderItem',NULL,'311','object','311','BMW 507','1','5039.2735','5895.95','15% VAT|15%|755.8910\n2% Pimcore Tax|2%|100.7855',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1062','EF_OSOI','OnlineShopOrderItem',NULL,'104','object','104','Fiat 500','1','24782.8632','28995.95','15% VAT|15%|3717.4295\n2% Pimcore Tax|2%|495.6573',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1063','EF_OSOI','OnlineShopOrderItem',NULL,'259','object','259','Chevrolet Impala','1','5466.6239','6395.95','15% VAT|15%|819.9936\n2% Pimcore Tax|2%|109.3325',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1066','EF_OSOI','OnlineShopOrderItem',NULL,'415','object','1288525775','BMW 507 Rims ','1','680.2991','795.95','15% VAT|15%|102.0449\n2% Pimcore Tax|2%|13.6060',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1068','EF_OSOI','OnlineShopOrderItem',NULL,'24','object','24','Jaguar XK140','1','4782.8632','5595.95','15% VAT|15%|717.4295\n2% Pimcore Tax|2%|95.6573',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1069','EF_OSOI','OnlineShopOrderItem',NULL,'477','object','4103704933','Jaguar XK140 Rims ','1','1278.5897','1495.95','15% VAT|15%|191.7885\n2% Pimcore Tax|2%|25.5718',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1071','EF_OSOI','OnlineShopOrderItem',NULL,'20','object','20','Jaguar MK2','1','4270.0427','4995.95','15% VAT|15%|640.5064\n2% Pimcore Tax|2%|85.4009',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1085','EF_OSOI','OnlineShopOrderItem','committed','124','object','124','Lamborghini Miura','1','11364.0598','13295.95','15% VAT|15%|1704.6090\n2% Pimcore Tax|2%|227.2812',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1090','EF_OSOI','OnlineShopOrderItem',NULL,'235','object','235','VW Type 2','1','18970.8974','22195.95','15% VAT|15%|2845.6346\n2% Pimcore Tax|2%|379.4179',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1091','EF_OSOI','OnlineShopOrderItem',NULL,'12','object','12','Jaguar E-Type','1','58799.9573','68795.95','15% VAT|15%|8819.9936\n2% Pimcore Tax|2%|1175.9991',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1104','EF_OSOI','OnlineShopOrderItem',NULL,'115','object','115','Ford Mustang','1','4611.9231','5395.95','15% VAT|15%|691.7885\n2% Pimcore Tax|2%|92.2385',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1108','EF_OSOI','OnlineShopOrderItem',NULL,'97','object','97','Ferrari Testarossa','1','7688.8462','8995.95','15% VAT|15%|1153.3269\n2% Pimcore Tax|2%|153.7769',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1110','EF_OSOI','OnlineShopOrderItem',NULL,'235','object','235','VW Type 2','1','18970.8974','22195.95','15% VAT|15%|2845.6346\n2% Pimcore Tax|2%|379.4179',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1113','EF_OSOI','OnlineShopOrderItem',NULL,'381','object','2670542362','Alfa Romeo Giulietta Steering Wheels ','1','1159.4509','1356.5575','15% VAT|15%|173.9176\n2% Pimcore Tax|2%|23.1890',NULL,NULL); -INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1118','EF_OSOI','OnlineShopOrderItem',NULL,'105','object','105','Fiat 500','1','27945.2564','32695.95','15% VAT|15%|4191.7885\n2% Pimcore Tax|2%|558.9051',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1162','EF_OSOI','OnlineShopOrderItem','','74','object','74','Citroen 2CV','1','13073.4615','15295.95000','15% VAT|15%|1961.0192\n2% Pimcore Tax|2%|261.4692',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1163','EF_OSOI','OnlineShopOrderItem','','438','object','4868592','Citroen 2CV Head lamps ','1','0.0000','0.00000','15% VAT|15%|25.1218\n2% Pimcore Tax|2%|3.3496','',NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1165','EF_OSOI','OnlineShopOrderItem','','262','object','262','Alfa Romeo 1900','1','1667.9979','1951.55750','15% VAT|15%|250.1997\n2% Pimcore Tax|2%|33.3600',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1166','EF_OSOI','OnlineShopOrderItem','','377','object','4057368544','Alfa Romeo 1900 Rims Spoked Wheel','4','3404.9573','3983.80000','15% VAT|15%|510.7436\n2% Pimcore Tax|2%|68.0991',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1168','EF_OSOI','OnlineShopOrderItem','','105','object','105','Fiat 500','1','27945.2564','32695.95000','15% VAT|15%|4191.7885\n2% Pimcore Tax|2%|558.9051',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1170','EF_OSOI','OnlineShopOrderItem','','125','object','125','Lamborghini Miura','1','3671.7521','4295.95000','15% VAT|15%|550.7628\n2% Pimcore Tax|2%|73.4350',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1172','EF_OSOI','OnlineShopOrderItem','','235','object','235','VW Type 2','1','18970.8974','22195.95000','15% VAT|15%|2845.6346\n2% Pimcore Tax|2%|379.4179',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1173','EF_OSOI','OnlineShopOrderItem','','12','object','12','Jaguar E-Type','1','58799.9573','68795.95000','15% VAT|15%|8819.9936\n2% Pimcore Tax|2%|1175.9991',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1175','EF_OSOI','OnlineShopOrderItem','','316','object','316','BMW 335','1','20765.7692','24295.95000','15% VAT|15%|3114.8654\n2% Pimcore Tax|2%|415.3154',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1176','EF_OSOI','OnlineShopOrderItem','','54','object','54','Cadillac Coupe De Ville','1','10167.4786','11895.95000','15% VAT|15%|1525.1218\n2% Pimcore Tax|2%|203.3496',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1178','EF_OSOI','OnlineShopOrderItem','','58','object','58','Cadillac Eldorado','1','2902.5214','3395.95000','15% VAT|15%|435.3782\n2% Pimcore Tax|2%|58.0504',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1180','EF_OSOI','OnlineShopOrderItem','','420','object','394981507','Buick Special Steering Wheels ','2','1447.1068','1693.11500','15% VAT|15%|217.0660\n2% Pimcore Tax|2%|28.9421',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1181','EF_OSOI','OnlineShopOrderItem','','452','object','3066365800','Fiat 500 Windscreens ','2','1360.5983','1591.90000','15% VAT|15%|204.0897\n2% Pimcore Tax|2%|27.2120',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1183','EF_OSOI','OnlineShopOrderItem','','70','object','70','Chevrolet Corvette','1','73073.4615','85495.95000','15% VAT|15%|10961.0192\n2% Pimcore Tax|2%|1461.4692',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1185','EF_OSOI','OnlineShopOrderItem','','161','object','161','Peugeot 403','1','55210.2137','64595.95000','15% VAT|15%|8281.5321\n2% Pimcore Tax|2%|1104.2043',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1187','EF_OSOI','OnlineShopOrderItem','','139','object','139','Mercedes-Benz 190 SL','1','68714.4872','80395.95000','15% VAT|15%|10307.1731\n2% Pimcore Tax|2%|1374.2897',NULL,NULL); +INSERT INTO object_query_EF_OSOI (`oo_id`,`oo_classId`,`oo_className`,`orderState`,`product__id`,`product__type`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`,`subItems`) VALUES ('1188','EF_OSOI','OnlineShopOrderItem','','116','object','116','Ford Mustang','1','36577.7350','42795.95000','15% VAT|15%|5486.6603\n2% Pimcore Tax|2%|731.5547',NULL,NULL); diff --git a/dump/data-1-object_relations_EF_OSO.sql b/dump/data-1-object_relations_EF_OSO.sql index 8dd16b73..aede9783 100644 --- a/dump/data-1-object_relations_EF_OSO.sql +++ b/dump/data-1-object_relations_EF_OSO.sql @@ -1,45 +1,31 @@ SET NAMES utf8mb4; -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1040','1020','object','customer','0','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1040','1041','object','items','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1040','1042','object','items','2','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1043','1020','object','customer','0','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1043','1044','object','items','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1051','1021','object','customer','0','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1051','1052','object','items','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1051','1053','object','items','2','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1051','1054','object','items','3','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1055','1022','object','customer','0','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1055','1056','object','items','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1055','1057','object','items','2','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1055','1058','object','items','3','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1055','1059','object','items','4','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1055','1060','object','items','5','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1055','1061','object','items','6','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1055','1062','object','items','7','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1055','1063','object','items','8','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1065','1022','object','customer','0','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1065','1066','object','items','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1067','1022','object','customer','0','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1067','1068','object','items','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1067','1069','object','items','2','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1070','1020','object','customer','0','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1070','1071','object','items','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1084','1017','object','customer','0','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1084','1085','object','items','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1089','1017','object','customer','0','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1089','1090','object','items','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1089','1091','object','items','2','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1089','1092','object','voucherTokens','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1103','1017','object','customer','0','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1103','1104','object','items','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1107','1017','object','customer','0','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1107','1092','object','voucherTokens','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1107','1108','object','items','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1109','1017','object','customer','0','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1109','1110','object','items','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1109','1111','object','voucherTokens','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1112','1113','object','items','1','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1117','1017','object','customer','0','object','','0'); -INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1117','1118','object','items','1','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1161','1018','object','customer','0','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1161','1162','object','items','1','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1161','1163','object','giftItems','1','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1164','1018','object','customer','0','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1164','1165','object','items','1','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1164','1166','object','items','2','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1167','1017','object','customer','0','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1167','1168','object','items','1','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1169','1017','object','customer','0','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1169','1170','object','items','1','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1171','1017','object','customer','0','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1171','1172','object','items','1','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1171','1173','object','items','2','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1174','1016','object','customer','0','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1174','1175','object','items','1','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1174','1176','object','items','2','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1177','1015','object','customer','0','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1177','1178','object','items','1','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1179','1015','object','customer','0','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1179','1180','object','items','1','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1179','1181','object','items','2','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1182','1015','object','customer','0','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1182','1183','object','items','1','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1184','1015','object','customer','0','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1184','1185','object','items','1','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1186','1015','object','customer','0','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1186','1187','object','items','1','object','','0'); +INSERT INTO object_relations_EF_OSO (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1186','1188','object','items','2','object','','0'); diff --git a/dump/data-1-object_relations_EF_OSOI.sql b/dump/data-1-object_relations_EF_OSOI.sql index 7ecf5b90..c90bba4e 100644 --- a/dump/data-1-object_relations_EF_OSOI.sql +++ b/dump/data-1-object_relations_EF_OSOI.sql @@ -1,29 +1,20 @@ SET NAMES utf8mb4; -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1041','38','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1042','405','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1044','280','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1052','70','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1053','406','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1054','384','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1056','263','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1057','388','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1058','124','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1059','378','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1060','377','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1061','311','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1062','104','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1063','259','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1066','415','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1068','24','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1069','477','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1071','20','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1085','124','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1090','235','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1091','12','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1104','115','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1108','97','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1110','235','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1113','381','object','product','0','object','','0'); -INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1118','105','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1162','74','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1163','438','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1165','262','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1166','377','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1168','105','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1170','125','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1172','235','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1173','12','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1175','316','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1176','54','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1178','58','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1180','420','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1181','452','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1183','70','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1185','161','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1187','139','object','product','0','object','','0'); +INSERT INTO object_relations_EF_OSOI (`src_id`,`dest_id`,`type`,`fieldname`,`index`,`ownertype`,`ownername`,`position`) VALUES ('1188','116','object','product','0','object','','0'); diff --git a/dump/data-1-object_store_EF_OSO.sql b/dump/data-1-object_store_EF_OSO.sql index 9ba4510f..fb19e0b5 100644 --- a/dump/data-1-object_store_EF_OSO.sql +++ b/dump/data-1-object_store_EF_OSO.sql @@ -1,17 +1,14 @@ SET NAMES utf8mb4; -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1040','ord_5d650c98c2b40','committed','1566903448',NULL,NULL,'2813.5897','3291.9000','2818.6324','3297.8000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"422.7949\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"56.3727\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_16','Betty','Rubble',NULL,'Rudolstädter Straße 21','63741','Aschaffenburg','DE','betty.rubble@modern.age','Betty','Rubble',NULL,'Rudolstaedter Strasse 21','63741','Aschaffenburg','DE',NULL,'2022989143'); -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1043','ord_5d650d2ff14fb','committed','1566903600',NULL,NULL,'37603.3761','43995.9500','36480.3175','42681.9715','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"5472.0476\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"729.6064\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_17','Betty','Rubble',NULL,'Rudolstaedter Strasse 21','63741','Aschaffenburg','DE','betty.rubble@modern.age','Betty','Rubble',NULL,'Rudolstaedter Strasse 21','63741','Aschaffenburg','DE',NULL,'3841357902'); -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1051','ord_5d651f669cde7','committed','1566908262',NULL,NULL,'74434.0598','87087.8500','72206.0807','84481.1145','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:10:\"10830.9121\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:9:\"1444.1217\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_18','Bamm-Bamm','Rubble',NULL,'Rudolstädter Straße 21','63741','Aschaffenburg','DE','bamm@modern.age','Bamm-Bamm','Rubble',NULL,'Rudolstädter Straße 21','63741','Aschaffenburg','DE',NULL,'3589884274'); -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1055','ord_5d6521e8206d5','committed','1566908904',NULL,NULL,'54593.2968','63874.1575','52960.5406','61963.8328','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"7944.0812\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:9:\"1059.2110\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_19','Joe','Rockhead',NULL,'1502 Pratt Avenue','98109','Seattle','AT','joe.rockhead@middle.age','Joe','Rockhead',NULL,'1502 Pratt Avenue','98109','Seattle','AT',NULL,'534227246'); -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1065','ord_5d652278a41a5','committed','1566909048',NULL,NULL,'680.2991','795.9500','685.3418','801.8500','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"102.8013\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"13.7069\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_20','Joe','Rockhead',NULL,'1502 Pratt Avenue','98109','Seattle','AT','joe.rockhead@middle.age','Joe','Rockhead',NULL,'1502 Pratt Avenue','98109','Seattle','AT',NULL,'527939789'); -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1067','ord_5d6522ee11854','committed','1566909166',NULL,NULL,'6061.4529','7091.9000','6066.4956','7097.8000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"909.9744\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"121.3300\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_21','Joe','Rockhead',NULL,'1502 Pratt Avenue','98109','Seattle','AT','joe.rockhead@middle.age','Joe','Rockhead',NULL,'1502 Pratt Avenue','98109','Seattle','AT',NULL,'603906025'); -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1070','ord_5d652e4a3c6a0','committed','1566912074',NULL,NULL,'4270.0427','4995.9500','4440.9829','5195.9500','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"666.1474\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"88.8197\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_22','Betty','Rubble',NULL,'Rudolstädter Straße 21','63741','Aschaffenburg','DE','betty.rubble@modern.age','Betty','Rubble',NULL,'Rudolstädter Straße 21','63741','Aschaffenburg','DE',NULL,'4285317549'); -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1084','ord_5d6669a20f76c','committed','1566992802',NULL,NULL,'11364.0598','13295.9500','11535.0000','13495.9500','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"1730.2500\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"230.7000\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_24','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'3477634120'); -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1089','ord_5d6673898d7b0','committed','1566995337',NULL,NULL,'77770.8547','90991.9000','75779.6094','88662.1430','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:10:\"11366.9415\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:9:\"1515.5921\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_25','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'3841826486'); -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1103','ord_5d67d202490ea','committed','1567085058',NULL,NULL,'4611.9231','5395.9500','4782.8633','5595.9500','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"717.4295\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"95.6573\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_26','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'1337307695'); -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1107','ord_5d68e54f7945f','committed','1567155535',NULL,NULL,'7688.8462','8995.9500','7688.8462','8995.9500','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"1153.3269\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"153.7769\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_27','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'3132511100'); -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1109','ord_5d68ed2127f75','committed','1567157537',NULL,NULL,'18970.8974','22195.9500','18952.1286','22173.9905','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"2842.8193\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"379.0425\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_28','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'4052156262'); -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1112','ord_5d690dccf28a3','committed','1567165901',NULL,NULL,'1159.4509','1356.5575','1167.9979','1366.5575','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"175.1997\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"23.3599\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\SessionCart_sesscart_5d690d9c874a0','Wilma','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','wilma.flintstone@stone.age','Wilma','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'786326029'); -INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1117','ord_5d691be60e116','committed','1567169510',NULL,NULL,'27945.2564','32695.9500','27277.8389','31915.0715','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"4091.6758\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"545.5567\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_29','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'1233282869'); +INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1161','ord_61f29d99992e7','committed','1643290009',NULL,NULL,'13073.4615','15295.9500','13244.4017','15495.9500','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"1986.6602\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"264.8880\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_34','Dino','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','dino@stone.age','Dino','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'1467148606'); +INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1164','ord_61f29e71db3cc','committed','1643290225',NULL,NULL,'5072.9552','5935.3575','5252.4424','6145.3575','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"787.8664\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"105.0488\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_35','Dino','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','dino@stone.age','Dino','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'984125660'); +INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1167','ord_61f29f7cd4a36','committed','1643290492',NULL,NULL,'27945.2564','32695.9500','27277.8376','31915.0700','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"4091.6757\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"545.5567\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_30','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'1128054455'); +INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1169','ord_61f2a19c2cc23','committed','1643291036',NULL,NULL,'3671.7521','4295.9500','3842.6923','4495.9500','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"576.4038\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"76.8538\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_36','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'362684800'); +INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1171','ord_61f2a290b8f47','committed','1643291280',NULL,NULL,'77770.8547','90991.9000','75779.6068','88662.1400','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:10:\"11366.9411\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:9:\"1515.5920\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_37','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','pebbles.flintstone@stone.age','Pebbles','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'630271347'); +INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1174','ord_61f2a3e0a8fe3','committed','1643291616',NULL,NULL,'30933.2478','36191.9000','30347.1281','35506.1400','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"4552.0693\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"606.9426\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_38','Wilma','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','wilma.flintstone@stone.age','Wilma','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'2514998388'); +INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1177','ord_61f2a57dddfb5','committed','1643292029',NULL,NULL,'2902.5214','3395.9500','3073.4616','3595.9500','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"461.0192\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"61.4692\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_39','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','fred.flintstone@stone.age','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'2693273551'); +INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1179','ord_61f2a6358659e','committed','1643292213',NULL,NULL,'2807.7051','3285.0150','2816.2521','3295.0150','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"422.4378\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"56.3250\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_40','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','fred.flintstone@stone.age','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'812368101'); +INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1182','ord_61f2a6832b14a','committed','1643292291',NULL,NULL,'73073.4615','85495.9500','71052.1966','83131.0700','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:10:\"10657.8294\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:9:\"1421.0439\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_41','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','fred.flintstone@stone.age','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'2870280191'); +INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1184','ord_61f2a6dd66b56','committed','1643292381',NULL,NULL,'55210.2137','64595.9500','53724.8462','62858.0700','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"8058.7269\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:9:\"1074.4969\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_42','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','fred.flintstone@stone.age','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'279398329'); +INSERT INTO object_store_EF_OSO (`oo_id`,`ordernumber`,`orderState`,`orderdate`,`comment`,`customerOrderData`,`subTotalNetPrice`,`subTotalPrice`,`totalNetPrice`,`totalPrice`,`taxInfo`,`currency`,`cartId`,`customerFirstname`,`customerLastname`,`customerCompany`,`customerStreet`,`customerZip`,`customerCity`,`customerCountry`,`customerEmail`,`deliveryFirstname`,`deliveryLastname`,`deliveryCompany`,`deliveryStreet`,`deliveryZip`,`deliveryCity`,`deliveryCountry`,`paymentReference`,`cartHash`) VALUES ('1186','ord_61f2a7cfd8682','committed','1643292623',NULL,NULL,'105292.2222','123191.9000','102475.3333','119896.1400','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:10:\"15371.3001\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:9:\"2049.5066\";}}','EUR','Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_43','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT','fred.flintstone@stone.age','Fred','Flintstone',NULL,'Floridusgasse 18','1020','Vienna','AT',NULL,'791073012'); diff --git a/dump/data-1-object_store_EF_OSOI.sql b/dump/data-1-object_store_EF_OSOI.sql index adc76de6..03628895 100644 --- a/dump/data-1-object_store_EF_OSOI.sql +++ b/dump/data-1-object_store_EF_OSOI.sql @@ -1,29 +1,20 @@ SET NAMES utf8mb4; -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1041',NULL,'38','Austin-Healey 3000 Mk II','1','2646.1111','3095.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"396.9167\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"52.9222\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1042',NULL,'1440114318','Austin-Healey 3000 Mk II Head lamps ','1','167.4786','195.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:7:\"25.1218\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:6:\"3.3496\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1044',NULL,'280','Austin-Healey 3000 Mk II','1','37603.3761','43995.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"5640.5064\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"752.0675\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1052',NULL,'70','Chevrolet Corvette','1','73073.4615','85495.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:10:\"10961.0192\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:9:\"1461.4692\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1053',NULL,'3437180724','Austin-Healey 3000 Mk II Windscreens ','1','765.7692','895.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"114.8654\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"15.3154\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1054',NULL,'4014459541','Alfa Romeo Spider Tail Lights ','1','594.8291','695.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:7:\"89.2244\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"11.8966\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1056',NULL,'263','Alfa Romeo 1900','1','4791.9295','5606.5575','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"718.7894\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"95.8386\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1057',NULL,'3874588350','Alfa Romeo 1900 Head lamps ','2','2215.2991','2591.9','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"332.2949\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"44.3060\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1058',NULL,'124','Lamborghini Miura','1','11364.0598','13295.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"1704.6090\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"227.2812\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1059',NULL,'1634310769','Alfa Romeo 1900 Rims Simple','1','82.0085','95.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:7:\"12.3013\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:6:\"1.6402\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1060',NULL,'4057368544','Alfa Romeo 1900 Rims Spoked Wheel','1','851.2393','995.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"127.6859\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"17.0248\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1061',NULL,'311','BMW 507','1','5039.2735','5895.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"755.8910\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"100.7855\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1062',NULL,'104','Fiat 500','1','24782.8632','28995.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"3717.4295\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"495.6573\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1063',NULL,'259','Chevrolet Impala','1','5466.6239','6395.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"819.9936\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"109.3325\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1066',NULL,'1288525775','BMW 507 Rims ','1','680.2991','795.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"102.0449\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"13.6060\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1068',NULL,'24','Jaguar XK140','1','4782.8632','5595.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"717.4295\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"95.6573\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1069',NULL,'4103704933','Jaguar XK140 Rims ','1','1278.5897','1495.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"191.7885\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"25.5718\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1071',NULL,'20','Jaguar MK2','1','4270.0427','4995.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"640.5064\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"85.4009\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1085','committed','124','Lamborghini Miura','1','11364.0598','13295.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"1704.6090\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"227.2812\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1090',NULL,'235','VW Type 2','1','18970.8974','22195.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"2845.6346\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"379.4179\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1091',NULL,'12','Jaguar E-Type','1','58799.9573','68795.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"8819.9936\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:9:\"1175.9991\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1104',NULL,'115','Ford Mustang','1','4611.9231','5395.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"691.7885\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"92.2385\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1108',NULL,'97','Ferrari Testarossa','1','7688.8462','8995.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"1153.3269\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"153.7769\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1110',NULL,'235','VW Type 2','1','18970.8974','22195.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"2845.6346\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"379.4179\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1113',NULL,'2670542362','Alfa Romeo Giulietta Steering Wheels ','1','1159.4509','1356.5575','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"173.9176\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"23.1890\";}}',NULL); -INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1118',NULL,'105','Fiat 500','1','27945.2564','32695.95','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"4191.7885\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"558.9051\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1162','','74','Citroen 2CV','1','13073.4615','15295.95000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"1961.0192\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"261.4692\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1163','','4868592','Citroen 2CV Head lamps ','1','0.0000','0.00000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:7:\"25.1218\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:6:\"3.3496\";}}',''); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1165','','262','Alfa Romeo 1900','1','1667.9979','1951.55750','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"250.1997\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"33.3600\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1166','','4057368544','Alfa Romeo 1900 Rims Spoked Wheel','4','3404.9573','3983.80000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"510.7436\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"68.0991\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1168','','105','Fiat 500','1','27945.2564','32695.95000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"4191.7885\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"558.9051\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1170','','125','Lamborghini Miura','1','3671.7521','4295.95000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"550.7628\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"73.4350\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1172','','235','VW Type 2','1','18970.8974','22195.95000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"2845.6346\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"379.4179\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1173','','12','Jaguar E-Type','1','58799.9573','68795.95000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"8819.9936\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:9:\"1175.9991\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1175','','316','BMW 335','1','20765.7692','24295.95000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"3114.8654\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"415.3154\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1176','','54','Cadillac Coupe De Ville','1','10167.4786','11895.95000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"1525.1218\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"203.3496\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1178','','58','Cadillac Eldorado','1','2902.5214','3395.95000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"435.3782\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"58.0504\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1180','','394981507','Buick Special Steering Wheels ','2','1447.1068','1693.11500','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"217.0660\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"28.9421\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1181','','3066365800','Fiat 500 Windscreens ','2','1360.5983','1591.90000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:8:\"204.0897\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:7:\"27.2120\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1183','','70','Chevrolet Corvette','1','73073.4615','85495.95000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:10:\"10961.0192\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:9:\"1461.4692\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1185','','161','Peugeot 403','1','55210.2137','64595.95000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"8281.5321\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:9:\"1104.2043\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1187','','139','Mercedes-Benz 190 SL','1','68714.4872','80395.95000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:10:\"10307.1731\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:9:\"1374.2897\";}}',NULL); +INSERT INTO object_store_EF_OSOI (`oo_id`,`orderState`,`productNumber`,`productName`,`amount`,`totalNetPrice`,`totalPrice`,`taxInfo`,`comment`) VALUES ('1188','','116','Ford Mustang','1','36577.7350','42795.95000','a:2:{i:0;a:3:{i:0;s:7:\"15% VAT\";i:1;s:3:\"15%\";i:2;s:9:\"5486.6603\";}i:1;a:3:{i:0;s:14:\"2% Pimcore Tax\";i:1;s:2:\"2%\";i:2;s:8:\"731.5547\";}}',NULL); diff --git a/dump/data-1-objects.sql b/dump/data-1-objects.sql index b12c5062..158ce7da 100644 --- a/dump/data-1-objects.sql +++ b/dump/data-1-objects.sql @@ -1,750 +1,735 @@ SET NAMES utf8mb4; -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1','0','folder','','/','999999','1','1557393622','1557393622','1','1',NULL,NULL,NULL,'0'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('2','744','folder','Cars','/Product Data/','2','1','1557394646','1565783301','2','2',NULL,NULL,NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('3','744','folder','Manufacturer','/Product Data/','0','1','1557394650','1565783319','2','2',NULL,NULL,NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('4','3','object','Jaguar','/Product Data/Manufacturer/','0','1','1557394656','1559903309','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('5','744','folder','Body-Styles','/Product Data/','3','1','1557394666','1565783290','2','2',NULL,NULL,NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('6','5','object','2-door roadster','/Product Data/Body-Styles/','0','1','1557394675','1565623766','2','2','BS','BodyStyle',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('7','5','object','2-door coupé','/Product Data/Body-Styles/','0','1','1557394684','1565623773','2','2','BS','BodyStyle',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('8','2','folder','jaguar','/Product Data/Cars/','0','1','1557394698','1557394698','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('9','8','object','E-Type','/Product Data/Cars/jaguar/','0','1','1557394706','1579775893','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('10','9','object','coupé','/Product Data/Cars/jaguar/E-Type/','0','1','1557394772','1579775893','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('11','9','object','cabrio','/Product Data/Cars/jaguar/E-Type/','0','1','1557394777','1579775894','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('12','11','object','red','/Product Data/Cars/jaguar/E-Type/cabrio/','0','1','1557395100','1579775894','2','0','CAR','Car',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('13','11','object','white','/Product Data/Cars/jaguar/E-Type/cabrio/','0','1','1557395131','1579775894','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('14','11','object','green','/Product Data/Cars/jaguar/E-Type/cabrio/','0','1','1557395244','1579775894','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('15','10','object','blue','/Product Data/Cars/jaguar/E-Type/coupé/','0','1','1557395274','1579775894','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('16','10','object','red','/Product Data/Cars/jaguar/E-Type/coupé/','0','1','1557395374','1593600004','2','1','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('17','8','object','MK2','/Product Data/Cars/jaguar/','0','1','1557395764','1579775894','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('19','17','object','white','/Product Data/Cars/jaguar/MK2/','0','1','1557396098','1579775894','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('20','17','object','black','/Product Data/Cars/jaguar/MK2/','0','1','1557396325','1579775894','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('21','8','object','XK140','/Product Data/Cars/jaguar/','0','1','1557396376','1579775894','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('22','21','object','cabrio','/Product Data/Cars/jaguar/XK140/','0','1','1557396524','1579775894','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('23','21','object','coupé','/Product Data/Cars/jaguar/XK140/','0','1','1557396529','1579775894','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('24','22','object','black','/Product Data/Cars/jaguar/XK140/cabrio/','0','1','1557396563','1579775895','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('25','22','object','white','/Product Data/Cars/jaguar/XK140/cabrio/','0','1','1557396590','1579775895','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('26','23','object','red','/Product Data/Cars/jaguar/XK140/coupé/','0','1','1557396666','1579775895','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('27','2','folder','alfa romeo','/Product Data/Cars/','16','1','1557397000','1557397000','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('28','3','object','Alfa Romeo','/Product Data/Manufacturer/','0','1','1557397007','1559902397','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('29','27','object','Giulietta','/Product Data/Cars/alfa romeo/','0','1','1557397054','1579775895','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('30','29','object','red','/Product Data/Cars/alfa romeo/Giulietta/','0','1','1557397218','1593599299','2','1','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('31','29','object','white','/Product Data/Cars/alfa romeo/Giulietta/','0','1','1557397253','1579775895','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('32','27','object','Spider','/Product Data/Cars/alfa romeo/','0','1','1557397433','1579775895','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('33','32','object','red','/Product Data/Cars/alfa romeo/Spider/','0','1','1557397544','1579775895','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('34','32','object','blue','/Product Data/Cars/alfa romeo/Spider/','0','1','1557397688','1579775895','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('35','3','object','Austin-Healey','/Product Data/Manufacturer/','0','1','1557397938','1559902731','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('36','2','folder','austin-healey','/Product Data/Cars/','17','1','1557397949','1557397949','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('37','36','object','3000','/Product Data/Cars/austin-healey/','0','1','1557397953','1579775895','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('38','37','object','red','/Product Data/Cars/austin-healey/3000/','0','1','1557398056','1579775895','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('39','3','object','Buick','/Product Data/Manufacturer/','0','1','1557429322','1559902868','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('40','2','folder','buick','/Product Data/Cars/','18','1','1557429333','1557429333','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('41','40','object','Special','/Product Data/Cars/buick/','0','1','1557429345','1579775895','2','0','CAR','Car',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('42','5','object','4-door sedan','/Product Data/Body-Styles/','0','1','1557429466','1565623909','2','2','BS','BodyStyle',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('43','41','object','blue','/Product Data/Cars/buick/Special/','0','1','1557429742','1579775896','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('44','41','object','red','/Product Data/Cars/buick/Special/','0','1','1557429796','1579775896','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('45','3','object','Cadillac','/Product Data/Manufacturer/','0','1','1557429859','1559902917','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('46','2','folder','cadillac','/Product Data/Cars/','19','1','1557429871','1557429871','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('47','46','object','Coupe De Ville','/Product Data/Cars/cadillac/','0','1','1557429907','1579775896','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('48','47','object','4-door','/Product Data/Cars/cadillac/Coupe De Ville/','0','1','1557430181','1579775896','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('49','5','object','4-door 4-window hardtop','/Product Data/Body-Styles/','0','1','1557430202','1565623966','2','2','BS','BodyStyle',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('50','5','object','2-door hardtop','/Product Data/Body-Styles/','0','1','1557430229','1565623992','2','2','BS','BodyStyle',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('51','48','object','blue','/Product Data/Cars/cadillac/Coupe De Ville/4-door/','0','1','1557430271','1579775896','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('52','47','object','2-door','/Product Data/Cars/cadillac/Coupe De Ville/','0','1','1557430429','1579775896','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('53','52','object','blue','/Product Data/Cars/cadillac/Coupe De Ville/2-door/','0','1','1557430458','1579775896','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('54','52','object','black','/Product Data/Cars/cadillac/Coupe De Ville/2-door/','0','1','1557430517','1579775896','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('55','46','object','Eldorado','/Product Data/Cars/cadillac/','0','1','1557430682','1579775896','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('56','5','object','2-door convertible','/Product Data/Body-Styles/','0','1','1557430763','1565623724','2','2','BS','BodyStyle',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('57','55','object','green','/Product Data/Cars/cadillac/Eldorado/','0','1','1557430969','1579775896','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('58','55','object','red','/Product Data/Cars/cadillac/Eldorado/','0','1','1557431197','1579775896','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('59','3','object','Chevrolet','/Product Data/Manufacturer/','0','1','1557431290','1559902971','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('60','2','folder','chevrolet','/Product Data/Cars/','20','1','1557431307','1557431307','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('61','60','object','Bel Air','/Product Data/Cars/chevrolet/','0','1','1557431318','1579775897','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('62','61','object','2-door','/Product Data/Cars/chevrolet/Bel Air/','0','1','1557432568','1579775897','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('63','62','object','red','/Product Data/Cars/chevrolet/Bel Air/2-door/','0','1','1557432701','1579775897','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('64','61','object','4-door','/Product Data/Cars/chevrolet/Bel Air/','0','1','1557432893','1579775897','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('66','64','object','blue','/Product Data/Cars/chevrolet/Bel Air/4-door/','0','1','1557432970','1579775897','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('67','64','object','red','/Product Data/Cars/chevrolet/Bel Air/4-door/','0','1','1557433080','1593599974','2','1','CAR','Car',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('68','60','object','Corvette','/Product Data/Cars/chevrolet/','0','1','1557433198','1579775897','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('69','68','object','red','/Product Data/Cars/chevrolet/Corvette/','0','1','1557433554','1579775897','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('70','68','object','black','/Product Data/Cars/chevrolet/Corvette/','0','1','1557433607','1579775897','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('71','3','object','Citroen','/Product Data/Manufacturer/','0','1','1557433728','1559903034','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('72','2','folder','citroen','/Product Data/Cars/','21','1','1557433744','1557433744','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('73','72','object','2CV','/Product Data/Cars/citroen/','0','1','1557433753','1579775897','2','0','CAR','Car',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('74','73','object','yellow','/Product Data/Cars/citroen/2CV/','0','1','1557434023','1579775897','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('75','73','object','red','/Product Data/Cars/citroen/2CV/','0','1','1557434107','1579775897','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('76','72','object','DS','/Product Data/Cars/citroen/','0','1','1557434260','1579775898','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('77','76','object','green','/Product Data/Cars/citroen/DS/','0','1','1557434640','1579775898','2','0','CAR','Car',NULL,'16'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('78','76','object','black','/Product Data/Cars/citroen/DS/','0','1','1557434847','1579775898','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('79','2','folder','ac cars','/Product Data/Cars/','22','1','1558033965','1558033965','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('80','3','object','AC Cars','/Product Data/Manufacturer/','0','1','1558033974','1559902327','2','2','MA','Manufacturer',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('81','79','object','Cobra 427','/Product Data/Cars/ac cars/','0','1','1558033991','1579775898','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('82','81','object','blue','/Product Data/Cars/ac cars/Cobra 427/','0','1','1558034185','1579775898','2','0','CAR','Car',NULL,'19'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('83','3','object','Dodge','/Product Data/Manufacturer/','0','1','1558034326','1559903122','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('84','2','folder','dodge','/Product Data/Cars/','23','1','1558034336','1558034336','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('85','84','object','Charger','/Product Data/Cars/dodge/','0','1','1558034344','1579775898','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('86','85','object','second generation','/Product Data/Cars/dodge/Charger/','0','1','1558035613','1579775898','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('87','86','object','red','/Product Data/Cars/dodge/Charger/second generation/','0','1','1558035642','1579775898','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('88','86','object','orange','/Product Data/Cars/dodge/Charger/second generation/','0','1','1558035679','1579775898','2','0','CAR','Car',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('89','85','object','third generation','/Product Data/Cars/dodge/Charger/','0','1','1558035764','1579775898','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('90','89','object','yellow','/Product Data/Cars/dodge/Charger/third generation/','0','1','1558035795','1579775898','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('91','89','object','black','/Product Data/Cars/dodge/Charger/third generation/','0','1','1558035855','1579775898','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('92','86','object','black','/Product Data/Cars/dodge/Charger/second generation/','0','1','1558036182','1579775899','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('93','3','object','Ferrari','/Product Data/Manufacturer/','0','1','1558037078','1559903175','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('94','2','folder','ferrari','/Product Data/Cars/','24','1','1558037091','1558037091','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('95','94','object','Testarossa','/Product Data/Cars/ferrari/','0','1','1558037246','1579775899','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('96','5','object','2-door berlinetta','/Product Data/Body-Styles/','0','1','1558037327','1565623699','2','2','BS','BodyStyle',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('97','95','object','red','/Product Data/Cars/ferrari/Testarossa/','0','1','1558037422','1579775899','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('98','95','object','yellow','/Product Data/Cars/ferrari/Testarossa/','0','1','1558037630','1579775899','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('99','2','folder','fiat','/Product Data/Cars/','25','1','1558037905','1558037905','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('100','3','object','Fiat','/Product Data/Manufacturer/','0','1','1558037911','1559903225','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('101','99','object','500','/Product Data/Cars/fiat/','0','1','1558037919','1579775899','2','0','CAR','Car',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('102','101','object','black','/Product Data/Cars/fiat/500/','0','1','1558038102','1579775899','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('103','101','object','red','/Product Data/Cars/fiat/500/','0','1','1558038139','1579775899','2','0','CAR','Car',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('104','101','object','orange','/Product Data/Cars/fiat/500/','0','1','1558038215','1579775899','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('105','101','object','yellow','/Product Data/Cars/fiat/500/','0','1','1558038252','1579775899','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('106','3','object','Ford','/Product Data/Manufacturer/','0','1','1558038331','1559903261','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('107','2','folder','ford','/Product Data/Cars/','26','1','1558038339','1558038339','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('108','107','object','Mustang','/Product Data/Cars/ford/','0','1','1558038344','1579775899','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('109','108','object','convertible','/Product Data/Cars/ford/Mustang/','0','1','1558038715','1579775899','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('110','109','object','red','/Product Data/Cars/ford/Mustang/convertible/','0','1','1558038763','1579775899','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('111','109','object','black','/Product Data/Cars/ford/Mustang/convertible/','0','1','1558038820','1579775900','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('112','109','object','blue','/Product Data/Cars/ford/Mustang/convertible/','0','1','1558038850','1579775900','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('113','108','object','coupe','/Product Data/Cars/ford/Mustang/','0','1','1558038878','1579775900','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('114','113','object','red','/Product Data/Cars/ford/Mustang/coupe/','0','1','1558038899','1579775900','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('115','113','object','yellow','/Product Data/Cars/ford/Mustang/coupe/','0','1','1558038964','1579775900','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('116','113','object','brown','/Product Data/Cars/ford/Mustang/coupe/','0','1','1558038997','1579775900','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('117','107','object','Thunderbird','/Product Data/Cars/ford/','0','1','1558039054','1579775900','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('118','117','object','black','/Product Data/Cars/ford/Thunderbird/','0','1','1558039342','1579775900','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('119','117','object','red','/Product Data/Cars/ford/Thunderbird/','0','1','1558039380','1579775900','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('120','117','object','blue','/Product Data/Cars/ford/Thunderbird/','0','1','1558039413','1579775900','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('121','3','object','Lamborghini','/Product Data/Manufacturer/','0','1','1558039570','1559903351','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('122','2','folder','lamborghini','/Product Data/Cars/','15','1','1558039578','1558039578','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('123','122','object','Miura','/Product Data/Cars/lamborghini/','0','1','1558039590','1579775900','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('124','123','object','yellow','/Product Data/Cars/lamborghini/Miura/','0','1','1558039830','1579775900','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('125','123','object','blue','/Product Data/Cars/lamborghini/Miura/','0','1','1558040213','1579775900','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('126','123','object','green','/Product Data/Cars/lamborghini/Miura/','0','1','1558040242','1579775901','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('127','3','object','Lincoln','/Product Data/Manufacturer/','0','1','1558466658','1559903410','2','2','MA','Manufacturer',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('128','2','folder','lincoln','/Product Data/Cars/','14','1','1558466680','1558466680','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('129','128','object','Continental','/Product Data/Cars/lincoln/','0','1','1558466693','1579775901','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('130','129','object','convertible','/Product Data/Cars/lincoln/Continental/','0','1','1558467093','1579775901','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('131','130','object','red','/Product Data/Cars/lincoln/Continental/convertible/','0','1','1558467134','1579775901','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('132','129','object','sedan','/Product Data/Cars/lincoln/Continental/','0','1','1558467269','1579775901','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('133','132','object','white','/Product Data/Cars/lincoln/Continental/sedan/','0','1','1558467292','1579775901','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('134','3','object','Mercedes','/Product Data/Manufacturer/','0','1','1558467366','1559903464','2','2','MA','Manufacturer',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('135','2','folder','mercedes','/Product Data/Cars/','13','1','1558467381','1558467381','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('136','135','object','190sl','/Product Data/Cars/mercedes/','0','1','1558467423','1579775901','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('137','5','object','roadster','/Product Data/Body-Styles/','0','1','1558467581','1565624046','2','2','BS','BodyStyle',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('138','136','object','black','/Product Data/Cars/mercedes/190sl/','0','1','1558467657','1579775901','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('139','136','object','silver','/Product Data/Cars/mercedes/190sl/','0','1','1558467841','1579775901','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('140','135','object','300sl','/Product Data/Cars/mercedes/','0','1','1558468232','1579775901','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('141','140','object','roadster','/Product Data/Cars/mercedes/300sl/','0','1','1558468425','1579775901','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('142','140','object','coupe','/Product Data/Cars/mercedes/300sl/','0','1','1558468522','1579775901','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('143','142','object','silver','/Product Data/Cars/mercedes/300sl/coupe/','0','1','1558468538','1579775902','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('144','141','object','black','/Product Data/Cars/mercedes/300sl/roadster/','0','1','1558468731','1579775902','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('145','3','object','Mercury','/Product Data/Manufacturer/','0','1','1558469356','1559903549','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('146','2','folder','mercury','/Product Data/Cars/','1','1','1558469369','1558469369','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('147','146','object','Comet','/Product Data/Cars/mercury/','0','1','1558469388','1579775902','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('148','147','object','2-door','/Product Data/Cars/mercury/Comet/','0','1','1558469590','1579775902','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('149','148','object','beige','/Product Data/Cars/mercury/Comet/2-door/','0','1','1558469607','1579775902','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('150','148','object','black','/Product Data/Cars/mercury/Comet/2-door/','0','1','1558469710','1579775902','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('151','147','object','4-door-sedan','/Product Data/Cars/mercury/Comet/','0','1','1558469836','1579775902','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('152','151','object','black','/Product Data/Cars/mercury/Comet/4-door-sedan/','0','1','1558469848','1579775902','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('153','3','object','MG','/Product Data/Manufacturer/','0','1','1558469982','1559903616','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('154','2','folder','mg','/Product Data/Cars/','2','1','1558470030','1558470030','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('155','154','object','MGA','/Product Data/Cars/mg/','0','1','1558470035','1579775902','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('156','155','object','red','/Product Data/Cars/mg/MGA/','0','1','1558470244','1579775902','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('157','155','object','white','/Product Data/Cars/mg/MGA/','0','1','1558470288','1579775902','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('158','3','object','Peugeot','/Product Data/Manufacturer/','0','1','1558470975','1559903723','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('159','2','folder','peugeot','/Product Data/Cars/','4','1','1558470991','1558470991','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('160','159','object','403','/Product Data/Cars/peugeot/','0','1','1558471001','1579775902','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('161','160','object','green','/Product Data/Cars/peugeot/403/','0','1','1558471194','1579775903','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('162','160','object','white','/Product Data/Cars/peugeot/403/','0','1','1558471229','1579775903','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('163','3','object','Pontiac','/Product Data/Manufacturer/','0','1','1558471651','1559903749','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('164','2','folder','pontiac','/Product Data/Cars/','5','1','1558471660','1558471660','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('165','164','object','Bonneville','/Product Data/Cars/pontiac/','0','1','1558471671','1579775903','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('166','165','object','red','/Product Data/Cars/pontiac/Bonneville/','0','1','1558471782','1579775903','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('167','3','object','Porsche','/Product Data/Manufacturer/','0','1','1558704954','1559903823','2','2','MA','Manufacturer',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('168','2','folder','porsche','/Product Data/Cars/','6','1','1558704962','1558704962','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('169','168','object','911','/Product Data/Cars/porsche/','0','1','1558704967','1579775903','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('170','169','object','targa','/Product Data/Cars/porsche/911/','0','1','1558705142','1579775903','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('171','5','object','2-door targa top','/Product Data/Body-Styles/','0','1','1558705166','1565624073','2','2','BS','BodyStyle',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('172','170','object','yellow','/Product Data/Cars/porsche/911/targa/','0','1','1558705184','1579775903','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('173','169','object','coupe','/Product Data/Cars/porsche/911/','0','1','1558705223','1579775903','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('174','173','object','green','/Product Data/Cars/porsche/911/coupe/','0','1','1558705232','1579775903','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('175','173','object','red','/Product Data/Cars/porsche/911/coupe/','0','1','1558705322','1579775903','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('176','3','object','Renault','/Product Data/Manufacturer/','0','1','1558705362','1559903890','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('177','2','folder','renault','/Product Data/Cars/','7','1','1558705370','1558705370','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('178','177','object','R4','/Product Data/Cars/renault/','0','1','1558705374','1579775903','2','0','CAR','Car',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('179','5','object','5-door hatchback','/Product Data/Body-Styles/','0','1','1558705418','1565624093','2','2','BS','BodyStyle',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('180','178','object','red','/Product Data/Cars/renault/R4/','0','1','1558705515','1579775903','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('181','3','object','VEB Sachsenring','/Product Data/Manufacturer/','0','1','1558705642','1559904058','2','2','MA','Manufacturer',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('182','2','folder','trabant','/Product Data/Cars/','8','1','1558705647','1558705647','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('183','182','object','601','/Product Data/Cars/trabant/','0','1','1558705655','1579775904','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('184','183','object','beige','/Product Data/Cars/trabant/601/','0','1','1558705736','1579775904','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('185','3','object','Triumph','/Product Data/Manufacturer/','0','1','1558705789','1559904435','2','2','MA','Manufacturer',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('186','2','folder','triumph','/Product Data/Cars/','9','1','1558705798','1558705798','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('187','186','object','TR 6','/Product Data/Cars/triumph/','0','1','1558705893','1579775904','2','0','CAR','Car',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('188','187','object','green','/Product Data/Cars/triumph/TR 6/','0','1','1558706032','1579775904','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('189','187','object','red','/Product Data/Cars/triumph/TR 6/','0','1','1558706072','1579775904','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('190','186','object','TR 4','/Product Data/Cars/triumph/','0','1','1558706253','1579775904','2','0','CAR','Car',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('191','190','object','white','/Product Data/Cars/triumph/TR 4/','0','1','1558706346','1579775904','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('192','190','object','red','/Product Data/Cars/triumph/TR 4/','0','1','1558706423','1579775904','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('193','186','object','TR 3','/Product Data/Cars/triumph/','0','1','1558706481','1579775904','2','0','CAR','Car',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('194','193','object','white','/Product Data/Cars/triumph/TR 3/','0','1','1558706583','1579775904','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('195','193','object','green','/Product Data/Cars/triumph/TR 3/','0','1','1558706656','1579775904','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('196','193','object','red','/Product Data/Cars/triumph/TR 3/','0','1','1558706731','1579775904','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('197','168','object','356','/Product Data/Cars/porsche/','0','1','1558706843','1579775904','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('198','204','object','red','/Product Data/Cars/porsche/356/356 C/','0','1','1558706963','1579775905','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('199','197','object','365','/Product Data/Cars/porsche/356/','0','1','1558707043','1579775905','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('200','199','object','beige','/Product Data/Cars/porsche/356/365/','0','1','1558707051','1579775905','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('201','197','object','356 B','/Product Data/Cars/porsche/356/','0','1','1558707138','1579775905','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('202','199','object','green','/Product Data/Cars/porsche/356/365/','0','1','1558707165','1579775905','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('203','201','object','blue','/Product Data/Cars/porsche/356/356 B/','0','1','1558707377','1579775905','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('204','197','object','356 C','/Product Data/Cars/porsche/356/','0','1','1558707431','1579775905','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('205','204','object','white','/Product Data/Cars/porsche/356/356 C/','0','1','1558707568','1579775905','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('206','3','object','VW','/Product Data/Manufacturer/','0','1','1559049045','1559049048','2','2','MA','Manufacturer',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('207','2','folder','vw','/Product Data/Cars/','10','1','1559049052','1559049052','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('208','207','object','Käfer','/Product Data/Cars/vw/','0','1','1559049413','1579775905','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('209','208','object','1200','/Product Data/Cars/vw/Käfer/','0','1','1559049444','1579775905','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('210','208','object','1303','/Product Data/Cars/vw/Käfer/','0','1','1559049464','1579775905','2','0','CAR','Car',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('211','208','object','1302','/Product Data/Cars/vw/Käfer/','0','1','1559049473','1579775905','2','0','CAR','Car',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('212','209','object','2-door-saloon','/Product Data/Cars/vw/Käfer/1200/','0','1','1559049774','1579775905','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('213','5','object','2-door sedan','/Product Data/Body-Styles/','0','1','1559049789','1565624106','2','2','BS','BodyStyle',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('215','212','object','beige','/Product Data/Cars/vw/Käfer/1200/2-door-saloon/','1','1','1559049850','1579775906','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('216','212','object','blue','/Product Data/Cars/vw/Käfer/1200/2-door-saloon/','0','1','1559049993','1579775906','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('217','211','object','blue','/Product Data/Cars/vw/Käfer/1302/','0','1','1559050266','1579775906','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('218','210','object','2-door-saloon','/Product Data/Cars/vw/Käfer/1303/','0','1','1559050340','1579775906','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('219','210','object','cabrio','/Product Data/Cars/vw/Käfer/1303/','0','1','1559050345','1579775906','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('220','218','object','white','/Product Data/Cars/vw/Käfer/1303/2-door-saloon/','0','1','1559050366','1579775906','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('221','219','object','blue','/Product Data/Cars/vw/Käfer/1303/cabrio/','0','1','1559050483','1579775906','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('222','219','object','green','/Product Data/Cars/vw/Käfer/1303/cabrio/','0','1','1559050532','1579775906','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('223','212','object','yellow','/Product Data/Cars/vw/Käfer/1200/2-door-saloon/','0','1','1559050685','1579775906','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('224','218','object','blue','/Product Data/Cars/vw/Käfer/1303/2-door-saloon/','0','1','1559050711','1579775906','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('225','207','object','Karmann','/Product Data/Cars/vw/','0','1','1559050975','1579775907','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('226','225','object','coupe','/Product Data/Cars/vw/Karmann/','0','1','1559051107','1579775907','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('227','226','object','beige','/Product Data/Cars/vw/Karmann/coupe/','0','1','1559051127','1579775907','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('228','226','object','yellow','/Product Data/Cars/vw/Karmann/coupe/','0','1','1559051154','1579775907','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('229','226','object','red','/Product Data/Cars/vw/Karmann/coupe/','0','1','1559051232','1579775907','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('230','225','object','cabrio','/Product Data/Cars/vw/Karmann/','0','1','1559051259','1579775907','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('231','226','object','silver','/Product Data/Cars/vw/Karmann/coupe/','0','1','1559051272','1579775907','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('232','230','object','green','/Product Data/Cars/vw/Karmann/cabrio/','0','1','1559051330','1579775907','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('233','207','object','Type 2','/Product Data/Cars/vw/','0','1','1559051495','1579775907','2','0','CAR','Car',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('234','5','object','4-5-door minibus','/Product Data/Body-Styles/','0','1','1559051523','1565624114','2','2','BS','BodyStyle',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('235','233','object','orange','/Product Data/Cars/vw/Type 2/','0','1','1559051754','1579775907','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('236','233','object','red','/Product Data/Cars/vw/Type 2/','0','1','1559051805','1579775907','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('238','233','object','blue','/Product Data/Cars/vw/Type 2/','0','1','1559051986','1579775907','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('240','3','object','Aston Martin','/Product Data/Manufacturer/','0','1','1559052282','1559902601','2','2','MA','Manufacturer',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('241','2','folder','aston martin','/Product Data/Cars/','11','1','1559052291','1559052291','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('242','241','object','DB5','/Product Data/Cars/aston martin/','0','1','1559052301','1579775908','2','0','CAR','Car',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('243','242','object','coupe','/Product Data/Cars/aston martin/DB5/','0','1','1559052486','1579775908','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('244','243','object','silver','/Product Data/Cars/aston martin/DB5/coupe/','0','1','1559052499','1593599948','2','1','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('245','243','object','green','/Product Data/Cars/aston martin/DB5/coupe/','0','1','1559052615','1579775908','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('246','242','object','convertible','/Product Data/Cars/aston martin/DB5/','0','1','1559052703','1579775908','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('247','246','object','silver','/Product Data/Cars/aston martin/DB5/convertible/','0','1','1559052713','1579775908','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('248','241','object','DB6','/Product Data/Cars/aston martin/','0','1','1559052808','1579775908','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('249','248','object','red','/Product Data/Cars/aston martin/DB6/','0','1','1559052950','1579775908','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('250','248','object','green','/Product Data/Cars/aston martin/DB6/','0','1','1559053039','1579775908','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('251','94','object','250 GT','/Product Data/Cars/ferrari/','0','1','1559053403','1579775908','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('252','251','object','red','/Product Data/Cars/ferrari/250 GT/','0','1','1559053522','1579775908','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('253','251','object','blue','/Product Data/Cars/ferrari/250 GT/','0','1','1559053528','1579775908','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('254','60','object','Impala','/Product Data/Cars/chevrolet/','0','1','1559053764','1579775908','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('256','254','object','hardtop','/Product Data/Cars/chevrolet/Impala/','0','1','1559053914','1579775909','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('257','256','object','white','/Product Data/Cars/chevrolet/Impala/hardtop/','0','1','1559053924','1579775909','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('258','254','object','convertible','/Product Data/Cars/chevrolet/Impala/','0','1','1559053931','1579775909','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('259','258','object','white','/Product Data/Cars/chevrolet/Impala/convertible/','0','1','1559053940','1579775909','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('260','27','object','1900','/Product Data/Cars/alfa romeo/','0','1','1559142237','1579775909','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('261','260','object','berlina','/Product Data/Cars/alfa romeo/1900/','0','1','1559142464','1579775909','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('262','261','object','silver','/Product Data/Cars/alfa romeo/1900/berlina/','0','1','1559142510','1579775909','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('263','261','object','black','/Product Data/Cars/alfa romeo/1900/berlina/','0','1','1559142610','1579775909','2','0','CAR','Car',NULL,'17'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('264','260','object','sprint','/Product Data/Cars/alfa romeo/1900/','0','1','1559142691','1579775909','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('265','264','object','blue','/Product Data/Cars/alfa romeo/1900/sprint/','0','1','1559142761','1579775909','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('266','264','object','silver','/Product Data/Cars/alfa romeo/1900/sprint/','0','1','1559142864','1579775909','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('267','27','object','2000','/Product Data/Cars/alfa romeo/','0','1','1559142933','1579775909','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('268','267','object','berlina','/Product Data/Cars/alfa romeo/2000/','0','1','1559143071','1579775909','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('269','268','object','blue','/Product Data/Cars/alfa romeo/2000/berlina/','0','1','1559143090','1579775909','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('270','267','object','spider','/Product Data/Cars/alfa romeo/2000/','0','1','1559143238','1579775910','2','0','CAR','Car',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('271','270','object','white','/Product Data/Cars/alfa romeo/2000/spider/','0','1','1559143246','1579775910','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('272','27','object','Gulietta Sprint Speciale','/Product Data/Cars/alfa romeo/','0','1','1559143506','1579775910','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('273','272','object','green','/Product Data/Cars/alfa romeo/Gulietta Sprint Speciale/','0','1','1559143590','1579775910','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('274','272','object','red','/Product Data/Cars/alfa romeo/Gulietta Sprint Speciale/','0','1','1559143703','1579775910','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('275','27','object','Montreal','/Product Data/Cars/alfa romeo/','0','1','1559143798','1579775910','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('276','275','object','blue','/Product Data/Cars/alfa romeo/Montreal/','0','1','1559143926','1579775910','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('277','275','object','red','/Product Data/Cars/alfa romeo/Montreal/','0','1','1559143979','1579775910','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('278','275','object','white','/Product Data/Cars/alfa romeo/Montreal/','0','1','1559144028','1579775910','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('279','37','object','white','/Product Data/Cars/austin-healey/3000/','0','1','1559144374','1579775910','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('280','37','object','blue','/Product Data/Cars/austin-healey/3000/','0','1','1559144414','1579775910','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('281','8','object','Mark IX','/Product Data/Cars/jaguar/','0','1','1559308422','1579775911','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('282','281','object','red','/Product Data/Cars/jaguar/Mark IX/','0','1','1559308623','1579775911','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('283','281','object','black','/Product Data/Cars/jaguar/Mark IX/','0','1','1559308789','1579775911','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('284','8','object','Mark X','/Product Data/Cars/jaguar/','0','1','1559308945','1579775911','2','0','CAR','Car',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('285','284','object','black','/Product Data/Cars/jaguar/Mark X/','0','1','1559309040','1579775911','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('286','284','object','blue','/Product Data/Cars/jaguar/Mark X/','0','1','1559309161','1579775911','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('287','284','object','red','/Product Data/Cars/jaguar/Mark X/','0','1','1559309214','1579775911','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('288','17','object','silver','/Product Data/Cars/jaguar/MK2/','0','1','1559309362','1579775911','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('289','8','object','XK150','/Product Data/Cars/jaguar/','0','1','1559309546','1579775911','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('290','289','object','roadster','/Product Data/Cars/jaguar/XK150/','0','1','1559309592','1579775911','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('291','289','object','coupe','/Product Data/Cars/jaguar/XK150/','0','1','1559309613','1579775911','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('292','290','object','white','/Product Data/Cars/jaguar/XK150/roadster/','0','1','1559309677','1579775911','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('293','291','object','green','/Product Data/Cars/jaguar/XK150/coupe/','0','1','1559309764','1579775911','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('294','291','object','white','/Product Data/Cars/jaguar/XK150/coupe/','0','1','1559309781','1579775912','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('295','290','object','black','/Product Data/Cars/jaguar/XK150/roadster/','0','1','1559309839','1579775912','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('296','168','object','928','/Product Data/Cars/porsche/','0','1','1559735452','1579775912','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('297','296','object','red','/Product Data/Cars/porsche/928/','0','1','1559735584','1579775912','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('298','296','object','blue','/Product Data/Cars/porsche/928/','0','1','1559735676','1579775912','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('299','296','object','grey','/Product Data/Cars/porsche/928/','0','1','1559735740','1579775912','2','0','CAR','Car',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('300','3','object','BMW','/Product Data/Manufacturer/','0','1','1559736158','1566915983','2','2','MA','Manufacturer',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('301','2','folder','bmw','/Product Data/Cars/','12','1','1559736170','1559736170','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('302','301','object','Isetta','/Product Data/Cars/bmw/','0','1','1559736176','1579775912','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('303','302','object','beige','/Product Data/Cars/bmw/Isetta/','0','1','1559736475','1579775912','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('304','302','object','blue','/Product Data/Cars/bmw/Isetta/','0','1','1559736594','1579775912','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('305','302','object','light-blue','/Product Data/Cars/bmw/Isetta/','0','1','1559736659','1579775912','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('306','302','object','blue1','/Product Data/Cars/bmw/Isetta/','0','1','1559736725','1579775912','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('307','301','object','600','/Product Data/Cars/bmw/','0','1','1559736788','1579775913','2','0','CAR','Car',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('308','307','object','red','/Product Data/Cars/bmw/600/','0','1','1559737014','1579775913','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('309','307','object','yellow','/Product Data/Cars/bmw/600/','0','1','1559737136','1579775913','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('310','301','object','507','/Product Data/Cars/bmw/','0','1','1559737223','1579775913','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('311','310','object','red','/Product Data/Cars/bmw/507/','0','1','1559737334','1579775913','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('312','310','object','white','/Product Data/Cars/bmw/507/','0','1','1559737474','1579775913','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('313','301','object','335','/Product Data/Cars/bmw/','0','1','1559737657','1579775913','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('314','313','object','cabriolet','/Product Data/Cars/bmw/335/','0','1','1559737833','1579775913','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('315','5','object','4-door cabriolet','/Product Data/Body-Styles/','0','1','1559737852','1565624123','2','2','BS','BodyStyle',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('316','314','object','grey','/Product Data/Cars/bmw/335/cabriolet/','0','1','1559737870','1579775913','2','0','CAR','Car',NULL,'16'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('317','313','object','berline','/Product Data/Cars/bmw/335/','0','1','1559738042','1579775913','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('318','317','object','black','/Product Data/Cars/bmw/335/berline/','0','1','1559738056','1579775913','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('319','135','object','W187','/Product Data/Cars/mercedes/','0','1','1559738533','1579775913','2','0','CAR','Car',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('320','319','object','limousine','/Product Data/Cars/mercedes/W187/','0','1','1559738651','1579775913','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('321','320','object','red','/Product Data/Cars/mercedes/W187/limousine/','0','1','1559738671','1579775914','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('322','319','object','cabriolet-a','/Product Data/Cars/mercedes/W187/','0','1','1559738735','1579775914','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('323','322','object','green','/Product Data/Cars/mercedes/W187/cabriolet-a/','0','1','1559738752','1579775914','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('324','319','object','cabriolet-b','/Product Data/Cars/mercedes/W187/','0','1','1559738805','1579775914','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('325','324','object','blue','/Product Data/Cars/mercedes/W187/cabriolet-b/','0','1','1559738815','1579775914','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('326','324','object','grey','/Product Data/Cars/mercedes/W187/cabriolet-b/','0','1','1559738872','1579775914','2','0','CAR','Car',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('327','135','object','W128','/Product Data/Cars/mercedes/','0','1','1559739159','1579775914','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('328','330','object','blue','/Product Data/Cars/mercedes/W128/sedan/','0','1','1559739322','1579775914','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('329','330','object','beige','/Product Data/Cars/mercedes/W128/sedan/','1','1','1559739371','1579775914','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('330','327','object','sedan','/Product Data/Cars/mercedes/W128/','0','1','1559739433','1579775914','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('331','327','object','coupe','/Product Data/Cars/mercedes/W128/','0','1','1559739454','1579775914','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('332','331','object','silver','/Product Data/Cars/mercedes/W128/coupe/','0','1','1559739467','1579775914','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('333','327','object','cabriolet','/Product Data/Cars/mercedes/W128/','0','1','1559739566','1579775915','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('334','333','object','black','/Product Data/Cars/mercedes/W128/cabriolet/','0','1','1559739579','1579775915','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('335','135','object','W111','/Product Data/Cars/mercedes/','0','1','1559739759','1579775915','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('336','335','object','sedan','/Product Data/Cars/mercedes/W111/','0','1','1559740353','1579775915','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('337','336','object','black','/Product Data/Cars/mercedes/W111/sedan/','0','1','1559740370','1579775915','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('338','336','object','grey','/Product Data/Cars/mercedes/W111/sedan/','0','1','1559740464','1579775915','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('339','336','object','beige','/Product Data/Cars/mercedes/W111/sedan/','0','1','1559740514','1579775915','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('340','335','object','coupe','/Product Data/Cars/mercedes/W111/','0','1','1559740603','1579775915','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('341','340','object','white','/Product Data/Cars/mercedes/W111/coupe/','0','1','1559740611','1579775915','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('342','340','object','red','/Product Data/Cars/mercedes/W111/coupe/','0','1','1559740663','1579775915','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('343','335','object','cabriolet','/Product Data/Cars/mercedes/W111/','0','1','1559740729','1579775915','2','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('344','343','object','white','/Product Data/Cars/mercedes/W111/cabriolet/','0','1','1559740736','1579775916','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('345','135','object','W110','/Product Data/Cars/mercedes/','0','1','1559740941','1579775916','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('346','345','object','white','/Product Data/Cars/mercedes/W110/','0','1','1559741031','1579775916','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('347','345','object','blue','/Product Data/Cars/mercedes/W110/','0','1','1559741141','1579775916','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('348','345','object','black','/Product Data/Cars/mercedes/W110/','0','1','1559741200','1579775916','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('349','135','object','W113','/Product Data/Cars/mercedes/','0','1','1559741430','1579775916','2','0','CAR','Car',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('350','349','object','red','/Product Data/Cars/mercedes/W113/','0','1','1559741586','1579775916','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('351','349','object','dark-grey','/Product Data/Cars/mercedes/W113/','0','1','1559741717','1579775916','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('352','349','object','white','/Product Data/Cars/mercedes/W113/','0','1','1559741819','1579775916','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('353','349','object','silver','/Product Data/Cars/mercedes/W113/','0','1','1559741872','1579775916','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('355','3','object','Morris','/Product Data/Manufacturer/','0','1','1559743023','1559903678','2','2','MA','Manufacturer',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('356','2','folder','morris','/Product Data/Cars/','27','1','1559743030','1559743030','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('357','356','object','Mini','/Product Data/Cars/morris/','0','1','1559743034','1579775916','2','0','CAR','Car',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('358','357','object','beige','/Product Data/Cars/morris/Mini/','0','1','1559743270','1579775916','2','0','CAR','Car',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('359','357','object','blue','/Product Data/Cars/morris/Mini/','0','1','1559743334','1579775917','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('360','357','object','lightblue','/Product Data/Cars/morris/Mini/','0','1','1559743382','1579775917','2','0','CAR','Car',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('361','744','folder','Accessories','/Product Data/','4','1','1559804883','1565783281','2','2',NULL,NULL,NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('362','361','folder','rims','/Product Data/Accessories/',NULL,'1','1559805173','1559805173','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('363','361','folder','lights','/Product Data/Accessories/',NULL,'1','1559805178','1559805178','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('364','363','folder','head lights','/Product Data/Accessories/lights/','0','1','1559805185','1559805185','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('365','363','folder','tail lights','/Product Data/Accessories/lights/','2','1','1559805201','1559805201','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('366','363','folder','indicator lights','/Product Data/Accessories/lights/','3','1','1559805227','1559805227','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('367','361','folder','windows','/Product Data/Accessories/','0','1','1559805239','1559805256','2','2',NULL,NULL,NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('368','367','folder','wind screens','/Product Data/Accessories/windows/',NULL,'1','1559805248','1559805248','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('370','361','folder','hood ornaments','/Product Data/Accessories/',NULL,'1','1559805292','1559805292','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('372','364','object','ac cars-cobra 427-head lights','/Product Data/Accessories/lights/head lights/','8','1','1559805464','1579775835','2','0','AP','AccessoryPart',NULL,'29'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('373','366','object','ac cars-cobra 427-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559805527','1579775835','2','0','AP','AccessoryPart',NULL,'27'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('377','362','object','alfa romeo-1900-rims-spoked wheel','/Product Data/Accessories/rims/','31','1','1559805925','1579775835','2','0','AP','AccessoryPart',NULL,'28'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('378','362','object','alfa romeo-1900-rims-simple','/Product Data/Accessories/rims/','30','1','1559805982','1579775835','2','0','AP','AccessoryPart',NULL,'27'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('379','364','object','alfa romeo-2000-head lights','/Product Data/Accessories/lights/head lights/','31','1','1559806037','1579775836','2','0','AP','AccessoryPart',NULL,'27'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('380','361','folder','steering wheels','/Product Data/Accessories/',NULL,'1','1559806123','1559806123','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('381','380','object','alfa romeo-giulietta-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559806138','1579775836','2','0','AP','AccessoryPart',NULL,'25'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('382','364','object','alfa romeo-giulietta-head lights','/Product Data/Accessories/lights/head lights/','32','1','1559806211','1579775836','2','0','AP','AccessoryPart',NULL,'29'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('383','366','object','alfa romeo-giulietta-indicator lights','/Product Data/Accessories/lights/indicator lights/','1','1','1559806249','1579775836','2','0','AP','AccessoryPart',NULL,'27'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('384','365','object','alfa romeo-spider-tail lights','/Product Data/Accessories/lights/tail lights/','1','1','1559806318','1579775836','2','0','AP','AccessoryPart',NULL,'25'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('385','364','object','alfa romeo-gulietta sprint speciale-head lights','/Product Data/Accessories/lights/head lights/','33','1','1559806379','1579775836','2','0','AP','AccessoryPart',NULL,'26'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('386','362','object','alfa romeo-gulietta sprint speciale-rims','/Product Data/Accessories/rims/','32','1','1559806448','1579775836','2','0','AP','AccessoryPart',NULL,'24'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('387','380','object','alfa romeo-gulietta sprint speciale-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559806505','1579775836','2','0','AP','AccessoryPart',NULL,'23'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('388','364','object','alfa romeo-1900-head lights','/Product Data/Accessories/lights/head lights/','30','1','1559806547','1579775836','2','0','AP','AccessoryPart',NULL,'25'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('389','744','folder','Categories','/Product Data/','1','1','1559806996','1565783310','2','2',NULL,NULL,NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('390','564','object','cars','/Product Data/Categories/products/','0','1','1559807034','1562571244','2','2','CA','Category',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('392','564','object','spare parts','/Product Data/Categories/products/','1','1','1559807059','1565794345','2','2','CA','Category',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('393','392','object','lights','/Product Data/Categories/products/spare parts/','0','1','1559807086','1560249814','2','2','CA','Category',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('394','393','object','head lamps','/Product Data/Categories/products/spare parts/lights/','0','1','1559807096','1560249923','2','2','CA','Category',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('395','393','object','indicator lights','/Product Data/Categories/products/spare parts/lights/','0','1','1559807111','1560249927','2','2','CA','Category',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('396','393','object','tail lights','/Product Data/Categories/products/spare parts/lights/','0','1','1559807122','1560249931','2','2','CA','Category',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('397','392','object','rims','/Product Data/Categories/products/spare parts/','0','1','1559807414','1560249937','2','2','CA','Category',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('399','392','object','steering wheels','/Product Data/Categories/products/spare parts/','0','1','1559807625','1560249947','2','2','CA','Category',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('400','365','object','aston martin-db5-tail lights','/Product Data/Accessories/lights/tail lights/','2','1','1559807783','1579775836','2','0','AP','AccessoryPart',NULL,'19'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('401','364','object','aston martin-db5-head lights','/Product Data/Accessories/lights/head lights/','10','1','1559807884','1579775836','2','0','AP','AccessoryPart',NULL,'18'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('402','366','object','aston martin-db5-indicator lights','/Product Data/Accessories/lights/indicator lights/','2','1','1559807929','1579775836','2','0','AP','AccessoryPart',NULL,'18'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('403','362','object','aston martin-db5-rims','/Product Data/Accessories/rims/','8','1','1559807999','1579775836','2','0','AP','AccessoryPart',NULL,'18'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('404','364','object','aston martin-db6-head lights','/Product Data/Accessories/lights/head lights/','11','1','1559808083','1579775836','2','0','AP','AccessoryPart',NULL,'16'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('405','364','object','austin-healey-3000 mk ii-head lights','/Product Data/Accessories/lights/head lights/','12','1','1559808203','1579775836','2','0','AP','AccessoryPart',NULL,'17'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('406','368','object','austin-healey-3000 mk ii-windscreens','/Product Data/Accessories/windows/wind screens/','0','1','1559808289','1579775836','2','0','AP','AccessoryPart',NULL,'18'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('407','392','object','windscreens','/Product Data/Categories/products/spare parts/','0','1','1559808310','1560249957','2','2','CA','Category',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('408','370','object','austin-healey-3000 mk ii-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559808430','1579775836','2','0','AP','AccessoryPart',NULL,'37'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('409','392','object','hood ornaments','/Product Data/Categories/products/spare parts/','0','1','1559808456','1560249913','2','2','CA','Category',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('410','362','object','austin-healey-3000 mk ii-rims','/Product Data/Accessories/rims/','9','1','1559808503','1579775836','2','0','AP','AccessoryPart',NULL,'16'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('411','380','object','bmw-600-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559808611','1579775836','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('412','368','object','bmw-isetta-windscreens','/Product Data/Accessories/windows/wind screens/','0','1','1559808794','1579775836','2','0','AP','AccessoryPart',NULL,'16'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('413','364','object','bmw-isetta-head lights','/Product Data/Accessories/lights/head lights/','13','1','1559808838','1579775836','2','0','AP','AccessoryPart',NULL,'16'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('414','364','object','bmw-600-head lights','/Product Data/Accessories/lights/head lights/','14','1','1559808943','1579775837','2','0','AP','AccessoryPart',NULL,'16'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('415','362','object','bmw-507-rims','/Product Data/Accessories/rims/','10','1','1559808980','1579775837','2','0','AP','AccessoryPart',NULL,'16'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('416','365','object','bmw-507-tail lights','/Product Data/Accessories/lights/tail lights/','3','1','1559809050','1579775837','2','0','AP','AccessoryPart',NULL,'16'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('418','364','object','bmw-507-head lights','/Product Data/Accessories/lights/head lights/','15','1','1559809107','1579775837','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('419','364','object','bmw-335-head lights','/Product Data/Accessories/lights/head lights/','16','1','1559809155','1579775837','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('420','380','object','buick-special-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559809246','1579775837','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('422','364','object','buick-special-head lights','/Product Data/Accessories/lights/head lights/','17','1','1559809295','1579775837','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('423','362','object','buick-special-rims','/Product Data/Accessories/rims/','11','1','1559809332','1579775837','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('424','364','object','cadillac-eldorado-head lights','/Product Data/Accessories/lights/head lights/','18','1','1559809421','1579775837','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('425','362','object','cadillac-eldorado-rims','/Product Data/Accessories/rims/','12','1','1559809470','1579775837','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('426','362','object','cadillac-coupe de ville-rims','/Product Data/Accessories/rims/','13','1','1559809519','1579775837','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('427','365','object','chevrolet-corvette-tail lights','/Product Data/Accessories/lights/tail lights/','4','1','1559809730','1579775837','2','0','AP','AccessoryPart',NULL,'16'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('428','364','object','chevrolet-bel air-head lights','/Product Data/Accessories/lights/head lights/','19','1','1559809809','1579775837','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('429','366','object','chevrolet-bel air-tail lights','/Product Data/Accessories/lights/indicator lights/','3','1','1559809865','1579775837','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('430','364','object','chevrolet-corvette-head lights','/Product Data/Accessories/lights/head lights/','20','1','1559809947','1579775837','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('431','362','object','chevrolet-corvette-rims','/Product Data/Accessories/rims/','14','1','1559810012','1579775837','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('432','380','object','chevrolet-corvette-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559810049','1579775837','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('433','365','object','chevrolet-bel air-tail lights','/Product Data/Accessories/lights/tail lights/','5','1','1559810084','1579775837','2','0','AP','AccessoryPart',NULL,'16'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('434','362','object','chevrolet-corvette-rims-black','/Product Data/Accessories/rims/','15','1','1559810127','1579775837','2','0','AP','AccessoryPart',NULL,'16'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('435','362','object','chevrolet-bel air-rims','/Product Data/Accessories/rims/','16','1','1559810171','1579775837','2','0','AP','AccessoryPart',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('436','366','object','citroen-ds-indicator lights-back','/Product Data/Accessories/lights/indicator lights/','4','1','1559810283','1579775838','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('437','362','object','citroen-2cv-rims','/Product Data/Accessories/rims/','17','1','1559810330','1579775838','2','0','AP','AccessoryPart',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('438','364','object','citroen-2cv-head lights','/Product Data/Accessories/lights/head lights/','21','1','1559810403','1579775838','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('439','366','object','citroen-2cv-indicator lights','/Product Data/Accessories/lights/indicator lights/','5','1','1559810460','1579775838','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('440','370','object','citroen-2cv-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559810492','1579775838','2','0','AP','AccessoryPart',NULL,'16'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('441','364','object','citroen-ds-head lights-back','/Product Data/Accessories/lights/head lights/','22','1','1559810532','1579775838','2','0','AP','AccessoryPart',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('442','364','object','dodge-charger-head lights','/Product Data/Accessories/lights/head lights/','23','1','1559810637','1579775838','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('443','368','object','dodge-charger-windscreens','/Product Data/Accessories/windows/wind screens/','0','1','1559810697','1579775838','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('444','362','object','dodge-charger-rims','/Product Data/Accessories/rims/','18','1','1559810738','1579775838','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('445','362','object','dodge-charger-rims-black','/Product Data/Accessories/rims/','19','1','1559810784','1579775838','2','0','AP','AccessoryPart',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('446','366','object','ferrari-testarossa-indicator lights','/Product Data/Accessories/lights/indicator lights/','6','1','1559810897','1579775838','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('447','364','object','ferrari-250 gt-head lights','/Product Data/Accessories/lights/head lights/','24','1','1559810953','1579775838','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('448','362','object','ferrari-250 gt-rims','/Product Data/Accessories/rims/','20','1','1559811002','1579775838','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('449','362','object','ferrari-testarossa-rims','/Product Data/Accessories/rims/','21','1','1559811055','1579775838','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('450','365','object','ferrari-testarossa-tail lights','/Product Data/Accessories/lights/tail lights/','6','1','1559811091','1579775838','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('451','380','object','ferrari-250 gt-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559811133','1579775838','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('452','368','object','fiat-500-windscreens','/Product Data/Accessories/windows/wind screens/','0','1','1559811217','1579775838','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('453','366','object','fiat-500-indicator lights','/Product Data/Accessories/lights/indicator lights/','7','1','1559811273','1579775838','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('454','364','object','fiat-500-head lights','/Product Data/Accessories/lights/head lights/','25','1','1559811319','1579775838','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('455','362','object','fiat-500-rims','/Product Data/Accessories/rims/','22','1','1559811350','1579775838','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('456','365','object','fiat-500-tail lights','/Product Data/Accessories/lights/tail lights/','7','1','1559811385','1579775838','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('457','362','object','ford-thunderbird-rims','/Product Data/Accessories/rims/','23','1','1559811537','1579775838','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('458','364','object','ford-thunderbird-head lights','/Product Data/Accessories/lights/head lights/','26','1','1559811580','1579775839','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('459','365','object','ford-mustang-tail lights','/Product Data/Accessories/lights/tail lights/','8','1','1559811620','1579775839','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('460','370','object','ford-mustang-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559811666','1579775839','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('461','364','object','ford-mustang-head lights','/Product Data/Accessories/lights/head lights/','27','1','1559811704','1579775839','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('462','366','object','ford-mustang-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559811738','1579775839','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('463','365','object','ford-thunderbird-tail lights','/Product Data/Accessories/lights/tail lights/','9','1','1559811764','1579775839','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('464','380','object','jaguar-mark ix-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559812062','1579775839','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('465','365','object','jaguar-xk150-tail lights','/Product Data/Accessories/lights/tail lights/','10','1','1559812136','1579775839','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('466','364','object','jaguar-xk150-head lights','/Product Data/Accessories/lights/head lights/','28','1','1559812193','1579775839','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('467','366','object','jaguar-xk150-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559812238','1579775839','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('468','370','object','jaguar-xk150-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559812279','1579775839','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('469','362','object','jaguar-mk2-rims-simple','/Product Data/Accessories/rims/','24','1','1559812317','1579775839','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('470','362','object','jaguar-mk2-rims-spoked wheel','/Product Data/Accessories/rims/','25','1','1559812370','1579775839','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('471','364','object','jaguar-e-type-head lights','/Product Data/Accessories/lights/head lights/','29','1','1559812407','1579775839','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('472','366','object','jaguar-e-type-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559812441','1579775839','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('473','365','object','jaguar-mk2-tail lights','/Product Data/Accessories/lights/tail lights/','11','1','1559812487','1579775839','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('474','370','object','jaguar-mk2-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559812532','1579775839','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('475','365','object','jaguar-e-type-tail lights','/Product Data/Accessories/lights/tail lights/','12','1','1559812558','1579775839','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('476','364','object','jaguar-xk140-head lights','/Product Data/Accessories/lights/head lights/','34','1','1559812605','1579775839','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('477','362','object','jaguar-xk140-rims','/Product Data/Accessories/rims/','26','1','1559812667','1579775839','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('478','365','object','jaguar-mark x-tail lights','/Product Data/Accessories/lights/tail lights/','13','1','1559812713','1579775839','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('479','364','object','jaguar-mark x-head lights','/Product Data/Accessories/lights/head lights/','35','1','1559812760','1579775839','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('480','362','object','jaguar-e-type-rims','/Product Data/Accessories/rims/','27','1','1559812801','1579775840','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('481','380','object','jaguar-mk2-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559812857','1579775840','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('482','362','object','lincoln motor company-continental-rims','/Product Data/Accessories/rims/','28','1','1559825468','1579775840','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('484','366','object','mercedes-benz-w110-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559825831','1579775840','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('485','365','object','mercedes-benz-w113-tail lights','/Product Data/Accessories/lights/tail lights/','14','1','1559825902','1579775840','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('486','364','object','mercedes-benz-300 sl-head lights','/Product Data/Accessories/lights/head lights/','36','1','1559825959','1579775840','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('487','365','object','mercedes-benz-300 sl-tail lights','/Product Data/Accessories/lights/tail lights/','15','1','1559826001','1579775840','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('488','365','object','mercedes-benz-190 sl-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559830590','1579775840','2','0','AP','AccessoryPart',NULL,'15'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('489','362','object','mercedes-benz-300 sl-rims','/Product Data/Accessories/rims/','29','1','1559830664','1579775840','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('490','362','object','mercedes-benz-190 sl-rims','/Product Data/Accessories/rims/','33','1','1559830697','1579775840','2','0','AP','AccessoryPart',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('492','380','object','mercedes-benz-190 sl-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559830868','1579775840','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('493','364','object','mercedes-benz-190 sl-head lights','/Product Data/Accessories/lights/head lights/','37','1','1559830909','1579775840','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('494','366','object','mercedes-benz-190 sl-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559830950','1579775840','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('495','364','object','mercedes-benz-w111-head lights','/Product Data/Accessories/lights/head lights/','38','1','1559831011','1579775840','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('496','364','object','mercedes-benz-220-head lights','/Product Data/Accessories/lights/head lights/','39','1','1559831069','1579775840','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('497','366','object','mercedes-benz-220-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559831115','1579775840','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('498','368','object','mercedes-benz-220-windscreens','/Product Data/Accessories/windows/wind screens/','0','1','1559831146','1579775840','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('499','362','object','mercedes-benz-220-rims','/Product Data/Accessories/rims/','34','1','1559831190','1579775840','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('500','362','object','mercedes-benz-220-rims-blue','/Product Data/Accessories/rims/','35','1','1559831234','1579775840','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('501','365','object','mercedes-benz-w128-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559831284','1579775840','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('502','364','object','mercedes-benz-w113-head lights','/Product Data/Accessories/lights/head lights/','40','1','1559831354','1579775841','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('503','364','object','mercedes-benz-w110-head lights','/Product Data/Accessories/lights/head lights/','41','1','1559831396','1579775841','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('504','366','object','mercedes-benz-w110-indicator lights-splitted','/Product Data/Accessories/lights/indicator lights/','0','1','1559831447','1579775841','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('505','365','object','mercedes-benz-w110-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559831482','1579775841','2','0','AP','AccessoryPart',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('506','365','object','mercedes-benz-220-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559831615','1579775841','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('507','365','object','mercedes-benz-w111-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559831686','1579775841','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('508','364','object','mercury-comet-head lights','/Product Data/Accessories/lights/head lights/','42','1','1559831980','1579775841','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('509','362','object','mercury-comet-rims','/Product Data/Accessories/rims/','36','1','1559832076','1579775841','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('510','364','object','mg cars-mga-head lights','/Product Data/Accessories/lights/head lights/','43','1','1559832145','1579775841','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('511','370','object','mg cars-mga-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559832189','1579775841','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('512','366','object','mg cars-mga-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559832215','1579775841','2','0','AP','AccessoryPart',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('513','362','object','mg cars-mga-rims','/Product Data/Accessories/rims/','1','1','1559832256','1579775841','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('514','364','object','peugeot-403-head lights','/Product Data/Accessories/lights/head lights/','0','1','1559832413','1579775841','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('515','366','object','peugeot-403-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559832534','1579775841','2','0','AP','AccessoryPart',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('516','365','object','peugeot-403-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559832573','1579775841','2','0','AP','AccessoryPart',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('517','362','object','pontiac-bonneville-rims','/Product Data/Accessories/rims/','2','1','1559832615','1579775841','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('518','365','object','porsche-911-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559832748','1579775841','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('519','362','object','porsche-911-rims','/Product Data/Accessories/rims/','3','1','1559832800','1579775841','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('520','364','object','porsche-356-head lights','/Product Data/Accessories/lights/head lights/','1','1','1559832855','1579775841','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('521','366','object','porsche-356-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559832903','1579775841','2','0','AP','AccessoryPart',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('522','364','object','renault-r4-head lights','/Product Data/Accessories/lights/head lights/','2','1','1559832949','1579775841','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('523','366','object','renault-r4-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559832991','1579775842','2','0','AP','AccessoryPart',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('524','368','object','renault-r4-windscreens','/Product Data/Accessories/windows/wind screens/','0','1','1559833040','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('525','362','object','renault-r4-rims','/Product Data/Accessories/rims/','4','1','1559833074','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('526','364','object','triumph-tr 6-head lights','/Product Data/Accessories/lights/head lights/','3','1','1559833193','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('527','365','object','triumph-tr 6-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559833232','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('528','364','object','triumph-tr 3-head lights','/Product Data/Accessories/lights/head lights/','4','1','1559833273','1579775842','2','0','AP','AccessoryPart',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('529','370','object','triumph-tr 3-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559833322','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('530','380','object','triumph-tr 6-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559833392','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('531','362','object','triumph-tr 4-rims','/Product Data/Accessories/rims/','5','1','1559833445','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('532','364','object','vw-type 2-head lights','/Product Data/Accessories/lights/head lights/','5','1','1559833617','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('533','366','object','vw-type 2-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559833658','1579775842','2','0','AP','AccessoryPart',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('534','362','object','vw-type 2-rims','/Product Data/Accessories/rims/','6','1','1559833691','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('535','365','object','vw-type 2-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559833738','1579775842','2','0','AP','AccessoryPart',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('536','370','object','vw-type 2-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559833809','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('537','364','object','vw-karmann-head lights','/Product Data/Accessories/lights/head lights/','6','1','1559833885','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('538','366','object','vw-karmann-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559833932','1579775842','2','0','AP','AccessoryPart',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('539','365','object','vw-karmann-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559833969','1579775842','2','0','AP','AccessoryPart',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('540','364','object','vw-käfer-head lights','/Product Data/Accessories/lights/head lights/','7','1','1559834033','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('541','366','object','vw-käfer-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559834106','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('542','362','object','vw-käfer-rims','/Product Data/Accessories/rims/','7','1','1559834157','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('543','365','object','vw-käfer-tail lights-1303','/Product Data/Accessories/lights/tail lights/','0','1','1559834196','1579775842','2','0','AP','AccessoryPart',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('544','365','object','vw-käfer-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559834233','1579775842','2','0','AP','AccessoryPart',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('545','390','object','sport and performance','/Product Data/Categories/products/cars/','0','1','1559834991','1565794964','2','2','CA','Category',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('546','390','object','luxury','/Product Data/Categories/products/cars/','0','1','1559835017','1565274276','2','2','CA','Category',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('547','390','object','economy','/Product Data/Categories/products/cars/','0','1','1559835061','1565274267','2','2','CA','Category',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('548','547','object','city cars','/Product Data/Categories/products/cars/economy/','0','1','1559835079','1560249676','2','2','CA','Category',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('550','546','object','executive cars','/Product Data/Categories/products/cars/luxury/','0','1','1559835111','1560249500','2','2','CA','Category',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('551','547','object','family cars','/Product Data/Categories/products/cars/economy/','0','1','1559835124','1560249758','2','2','CA','Category',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('552','546','object','full-size cars','/Product Data/Categories/products/cars/luxury/','0','1','1559835135','1560249736','2','2','CA','Category',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('553','546','object','full-size luxury cars','/Product Data/Categories/products/cars/luxury/','0','1','1559835147','1562571592','2','2','CA','Category',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('555','545','object','grand tourer','/Product Data/Categories/products/cars/sport and performance/','0','1','1559835165','1560249628','2','2','CA','Category',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('556','390','object','commercial','/Product Data/Categories/products/cars/','0','1','1559835179','1565794831','2','2','CA','Category',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('557','546','object','mid-size luxury cars','/Product Data/Categories/products/cars/luxury/','0','1','1559835195','1562571708','2','2','CA','Category',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('558','545','object','muscle cars','/Product Data/Categories/products/cars/sport and performance/','0','1','1559835223','1560249626','2','2','CA','Category',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('559','545','object','sports cars','/Product Data/Categories/products/cars/sport and performance/','0','1','1559835233','1560249623','2','2','CA','Category',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('560','546','object','personal luxury cars','/Product Data/Categories/products/cars/luxury/','0','1','1559835243','1560249668','2','2','CA','Category',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('561','547','object','economy cars','/Product Data/Categories/products/cars/economy/','0','1','1559901583','1560249733','2','2','CA','Category',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('562','1','folder','Shop','/','0','1','1562158513','1565792956','2','2',NULL,NULL,NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('563','695','object','default','/Shop/Filter-Definitions/','2','1','1562158519','1566914343','2','2','EF_FD','FilterDefinition',NULL,'28'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('564','389','object','products','/Product Data/Categories/','0','1','1562243853','1565276047','2','2','CA','Category',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('693','756','object','tax','/Shop/Tax-Definitions/','0','1','1565267314','1565793288','2','2','EF_OSTC','OnlineShopTaxClass',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('695','562','folder','Filter-Definitions','/Shop/','0','1','1565360765','1565793311','2','2',NULL,NULL,NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('696','757','object','chrevorlet','/Shop/Filter-Definitions/Landing-Pages/','3','1','1565360778','1566914448','2','2','EF_FD','FilterDefinition',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('697','757','object','ford','/Shop/Filter-Definitions/Landing-Pages/','2','1','1565361008','1566914463','2','2','EF_FD','FilterDefinition',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('698','757','object','vans','/Shop/Filter-Definitions/Landing-Pages/','0','1','1565361229','1566914499','2','2','EF_FD','FilterDefinition',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('699','757','object','volkswagen','/Shop/Filter-Definitions/Landing-Pages/','1','1','1565361411','1566914520','2','2','EF_FD','FilterDefinition',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('702','1','folder','Customer Management','/','0','1','1565686891','1565784848','2','2',NULL,NULL,NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('703','702','folder','customers','/Customer Management/',NULL,'1','1565686898','1565686898','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('707','703','folder','--','/Customer Management/customers/',NULL,'1','1565703223','1565703223','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('739','703','folder','AT','/Customer Management/customers/',NULL,'1','1565775938','1565775938','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('744','1','folder','Product Data','/',NULL,'1','1565783234','1565783234','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('748','562','folder','Orders','/Shop/','0','1','1565793181','1565793301','1','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('756','562','folder','Tax-Definitions','/Shop/','0','1','1565793277','1565793286','2','2',NULL,NULL,NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('757','695','folder','Landing-Pages','/Shop/Filter-Definitions/','0','1','1565793317','1565793317','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('758','695','folder','Categories','/Shop/Filter-Definitions/','1','1','1565793331','1565793331','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('759','562','folder','Vouchers','/Shop/',NULL,'1','1565793356','1565793356','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('760','758','object','spare-parts','/Shop/Filter-Definitions/Categories/','0','1','1565793853','1566914397','2','2','EF_FD','FilterDefinition',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('761','758','object','commercial-cars','/Shop/Filter-Definitions/Categories/','0','1','1565794643','1566914375','2','2','EF_FD','FilterDefinition',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('762','758','object','sport','/Shop/Filter-Definitions/Categories/','2','1','1565794883','1566914426','2','2','EF_FD','FilterDefinition',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('763','1','folder','News','/',NULL,'1','1565947986','1565947986','2','2',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('765','763','object','Montery Car Week Spring Edition','/News/','0','1','1565948018','1567082073','2','2','NE','News',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('766','763','object','Vintage Car Auction Detroit','/News/','0','1','1565948484','1567072392','2','2','NE','News',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('767','763','object','Driven Chevrolet Implala','/News/','0','1','1565948509','1567072184','2','2','NE','News',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('768','763','object','Historic Racing in Le Mans','/News/','0','1','1565948556','1567072218','2','2','NE','News',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('769','763','object','Announcement: Documentary Movie about Henry Ford','/News/','0','1','1565948593','1567072141','2','2','NE','News',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('770','763','object','Rare for a Reason - Ford Mustang','/News/','0','1','1565948622','1567072368','2','2','NE','News',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('771','763','object','Li Europan lingues es membres','/News/','0','1','1565948640','1567072261','2','2','NE','News',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('772','763','object','Lor separat existentie es un myth','/News/','0','1','1565948655','1567072272','2','2','NE','News',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('773','763','object','A un Angleso it va semblar un simplificat','/News/','0','1','1565948670','1567072124','2','2','NE','News',NULL,'11'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('815','703','folder','_temp','/Customer Management/customers/',NULL,'1','1566579635','1566579635','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('819','831','object','Customer-Type','/Customer Management/segments/calculated/','2','1','1566653217','1566671573','2','2','1','CustomerSegmentGroup',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('824','819','object','New-Customer','/Customer Management/segments/calculated/Customer-Type/','0','1','1566653501','1566829396','2','2','2','CustomerSegment',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('825','819','object','Regular-Customer','/Customer Management/segments/calculated/Customer-Type/','0','1','1566653518','1566829431','2','2','2','CustomerSegment',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('826','819','object','VIP-Customer','/Customer Management/segments/calculated/Customer-Type/','0','1','1566653530','1566829443','2','2','2','CustomerSegment',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('830','702','folder','segments','/Customer Management/',NULL,'1','1566671485','1566671485','1','0',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('831','830','folder','calculated','/Customer Management/segments/',NULL,'1','1566671485','1566671485','1','0',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('832','831','object','State','/Customer Management/segments/calculated/','0','1','1566671486','1566671861','0','2','1','CustomerSegmentGroup',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('833','831','object','Gender','/Customer Management/segments/calculated/','1','1','1566671486','1566671857','0','2','1','CustomerSegmentGroup',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('834','833','object','male','/Customer Management/segments/calculated/Gender/',NULL,'1','1566671486','1566671486','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('835','833','object','female','/Customer Management/segments/calculated/Gender/',NULL,'1','1566671486','1566671486','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('836','833','object','not-set','/Customer Management/segments/calculated/Gender/',NULL,'1','1566671486','1566671486','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('837','739','folder','5020','/Customer Management/customers/AT/',NULL,'1','1566671506','1566671506','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('838','832','folder','AT','/Customer Management/segments/calculated/State/',NULL,'1','1566671506','1566671506','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('839','838','object','AT - Salzburg','/Customer Management/segments/calculated/State/AT/',NULL,'1','1566671506','1566671506','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('847','838','object','AT - Oberösterreich','/Customer Management/segments/calculated/State/AT/',NULL,'1','1566671758','1566671758','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('859','831','object','VisitingCount','/Customer Management/segments/calculated/','0','1','1566672569','1566672588','2','2','1','CustomerSegmentGroup',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('860','859','object','at least once','/Customer Management/segments/calculated/VisitingCount/','0','1','1566672608','1566672621','2','2','2','CustomerSegment',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('861','859','object','3 times','/Customer Management/segments/calculated/VisitingCount/','0','1','1566672643','1566672654','2','2','2','CustomerSegment',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('862','859','object','5 times','/Customer Management/segments/calculated/VisitingCount/','0','1','1566672670','1566672681','2','2','2','CustomerSegment',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('863','859','object','10 times','/Customer Management/segments/calculated/VisitingCount/','0','1','1566672694','1566672711','2','2','2','CustomerSegment',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('864','759','object','Free-Shipping','/Shop/Vouchers/','0','1','1566741057','1566742433','2','2','EF_OSVS','OnlineShopVoucherSeries',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('865','759','object','Commercial-Discount','/Shop/Vouchers/','0','1','1566741979','1566742015','2','2','EF_OSVS','OnlineShopVoucherSeries',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('872','757','object','sale','/Shop/Filter-Definitions/Landing-Pages/','2','1','1562158519','1566914482','2','2','EF_FD','FilterDefinition',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('873','389','object','sale','/Product Data/Categories/','0','1','1566810276','1566810487','2','2','CA','Category',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('874','831','object','Interest-Target-Groups','/Customer Management/segments/calculated/','0','1','1566824695','1566824759','2','2','1','CustomerSegmentGroup',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('875','874','object','Sports-Cars-Fan','/Customer Management/segments/calculated/Interest-Target-Groups/','0','1','1566824774','1566829487','2','2','2','CustomerSegment',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('876','874','object','Economy-Cars-Fan','/Customer Management/segments/calculated/Interest-Target-Groups/','0','1','1566824799','1566829461','2','2','2','CustomerSegment',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('877','874','object','Luxury-Cars-Fan','/Customer Management/segments/calculated/Interest-Target-Groups/','0','1','1566824835','1566829472','2','2','2','CustomerSegment',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('960','831','object','Interest Manufacturer','/Customer Management/segments/calculated/',NULL,'1','1566893533','1566893533','2','2','1','CustomerSegmentGroup',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('961','960','object','Jaguar','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('962','831','object','Interest Car Class','/Customer Management/segments/calculated/',NULL,'1','1566893534','1566893534','2','2','1','CustomerSegmentGroup',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('963','962','object','sports car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('964','831','object','Interest Body Style','/Customer Management/segments/calculated/',NULL,'1','1566893534','1566893534','2','2','1','CustomerSegmentGroup',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('965','964','object','2-door roadster','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('966','960','object','Citroen','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('967','962','object','Economy car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('968','964','object','4-door sedan','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('969','960','object','AC Cars','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('970','960','object','Alfa Romeo','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('971','960','object','Austin-Healey','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('972','960','object','Dodge','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('973','964','object','2-door coupé','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893737','1566893737','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('974','962','object','Mid-size luxury','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893737','1566893737','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('975','962','object','Family car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893738','1566893738','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('976','960','object','Buick','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893739','1566893739','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('977','962','object','Full-Size','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893739','1566893739','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('978','960','object','Cadillac','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893739','1566893739','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('979','964','object','4-door 4-window hardtop','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893739','1566893739','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('980','964','object','2-door hardtop','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893739','1566893739','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('981','962','object','Personal luxury car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893740','1566893740','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('982','964','object','2-door convertible','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893740','1566893740','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('983','960','object','Chevrolet','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893740','1566893740','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('984','962','object','Executive car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893741','1566893741','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('985','960','object','Ferrari','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893742','1566893742','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('986','964','object','2-door berlinetta','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893742','1566893742','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('987','960','object','Fiat','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893742','1566893742','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('988','962','object','City Car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893742','1566893742','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('989','960','object','Ford','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893742','1566893742','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('990','962','object','Muscle Car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893742','1566893742','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('991','960','object','Lamborghini','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893743','1566893743','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('992','960','object','Lincoln','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893744','1566893744','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('993','960','object','Mercedes','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893744','1566893744','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('994','964','object','roadster','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893744','1566893744','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('995','960','object','Mercury','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893745','1566893745','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('996','960','object','MG','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893745','1566893745','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('997','960','object','Peugeot','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893745','1566893745','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('998','960','object','Pontiac','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893745','1566893745','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('999','960','object','Porsche','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893746','1566893746','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1000','964','object','2-door targa top','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893746','1566893746','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1001','960','object','Renault','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893746','1566893746','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1002','964','object','5-door hatchback','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893746','1566893746','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1003','960','object','VEB Sachsenring','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893746','1566893746','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1004','960','object','Triumph','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893746','1566893746','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1005','960','object','VW','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893747','1566893747','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1006','964','object','2-door sedan','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893748','1566893748','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1007','962','object','Light commercial vehicle','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893749','1566893749','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1008','964','object','4-5-door minibus','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893749','1566893749','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1009','960','object','Aston Martin','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893749','1566893749','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1010','962','object','Grand tourer','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893749','1566893749','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1011','962','object','Full-size luxury car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893751','1566893751','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1012','960','object','BMW','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893752','1566893752','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1013','964','object','4-door cabriolet','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893753','1566893753','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1014','960','object','Morris','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893755','1566893755','0','0','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1015','1026','object','Fred-Flintstone','/Customer Management/customers/AT/1020/','0','1','1566901883','1566903178','2','2','CU','Customer',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1016','1026','object','Wilma-Flintstone','/Customer Management/customers/AT/1020/','0','1','1566902001','1566903179','2','2','CU','Customer',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1017','1026','object','Pebbles-Flintstone','/Customer Management/customers/AT/1020/','0','1','1566902051','1567169510','2','0','CU','Customer',NULL,'13'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1018','1026','object','Dino-Flintstone','/Customer Management/customers/AT/1020/','0','1','1566902093','1566903181','2','2','CU','Customer',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1019','1029','object','Barney-Rubble','/Customer Management/customers/DE/63741/','0','1','1566902127','1566907031','2','2','CU','Customer',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1020','1029','object','Betty-Rubble','/Customer Management/customers/DE/63741/','0','1','1566902158','1566912074','2','0','CU','Customer',NULL,'24'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1021','1029','object','Bamm-Bamm-Rubble','/Customer Management/customers/DE/63741/','0','1','1566902184','1566908278','2','0','CU','Customer',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1022','1033','object','Joe-Rockhead','/Customer Management/customers/US/98109/','0','1','1566902221','1567410149','2','2','CU','Customer',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1023','1034','object','Pearl-Slaghoople','/Customer Management/customers/US/94015/','0','1','1566902259','1566903186','2','2','CU','Customer',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1024','837','object','Tex-Hardrock','/Customer Management/customers/AT/5020/','0','1','1566902297','1566903187','2','2','CU','Customer',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1025','1035','object','Sam-Slagheap','/Customer Management/customers/DE/13158/','0','1','1566902331','1566903188','2','2','CU','Customer',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1026','739','folder','1020','/Customer Management/customers/AT/',NULL,'1','1566902474','1566902474','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1027','838','object','AT - Wien','/Customer Management/segments/calculated/State/AT/',NULL,'1','1566902475','1566902475','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1028','703','folder','DE','/Customer Management/customers/',NULL,'1','1566902765','1566902765','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1029','1028','folder','63741','/Customer Management/customers/DE/',NULL,'1','1566902765','1566902765','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1030','832','folder','DE','/Customer Management/segments/calculated/State/',NULL,'1','1566902766','1566902766','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1031','1030','object','DE - Bayern','/Customer Management/segments/calculated/State/DE/',NULL,'1','1566902766','1566902766','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1032','703','folder','US','/Customer Management/customers/',NULL,'1','1566902874','1566902874','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1033','1032','folder','98109','/Customer Management/customers/US/',NULL,'1','1566902874','1566902874','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1034','1032','folder','94015','/Customer Management/customers/US/',NULL,'1','1566902925','1566902925','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1035','1028','folder','13158','/Customer Management/customers/DE/',NULL,'1','1566903031','1566903031','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1036','1030','object','DE - Berlin','/Customer Management/segments/calculated/State/DE/',NULL,'1','1566903031','1566903031','2','2','2','CustomerSegment',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1037','748','folder','2019','/Shop/Orders/',NULL,'1','1566903448','1566903448','1','0',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1038','1037','folder','08','/Shop/Orders/2019/',NULL,'1','1566903448','1566903448','1','0',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1039','1038','folder','27','/Shop/Orders/2019/08/',NULL,'1','1566903448','1566903448','1','0',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1040','1039','object','ord_5d650c98c2b40','/Shop/Orders/2019/08/27/','0','1','1566903448','1566906513','0','2','EF_OSO','OnlineShopOrder',NULL,'10'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1041','1040','object','38_38','/Shop/Orders/2019/08/27/ord_5d650c98c2b40/',NULL,'1','1566903449','1566903449','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1042','1040','object','405_405','/Shop/Orders/2019/08/27/ord_5d650c98c2b40/',NULL,'1','1566903449','1566903449','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1043','1039','object','ord_5d650d2ff14fb','/Shop/Orders/2019/08/27/','0','1','1566903599','1566903614','0','0','EF_OSO','OnlineShopOrder',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1044','1043','object','280_280','/Shop/Orders/2019/08/27/ord_5d650d2ff14fb/',NULL,'1','1566903600','1566903600','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1045','1047','object','Dino-Flinttone','/Customer Management/customers/AU/1020/','0','1','1566906643','1566908226','2','2','CU','Customer',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1046','703','folder','AU','/Customer Management/customers/',NULL,'1','1566906693','1566906693','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1047','1046','folder','1020','/Customer Management/customers/AU/',NULL,'1','1566906693','1566906693','1','2',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1048','1029','object','Barney-Rubbl','/Customer Management/customers/DE/63741/','0','1','1566906977','1566908246','2','2','CU','Customer',NULL,'6'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1051','1039','object','ord_5d651f669cde7','/Shop/Orders/2019/08/27/','0','1','1566908262','1566908277','0','0','EF_OSO','OnlineShopOrder',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1052','1051','object','70_70','/Shop/Orders/2019/08/27/ord_5d651f669cde7/',NULL,'1','1566908262','1566908262','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1053','1051','object','406_406','/Shop/Orders/2019/08/27/ord_5d651f669cde7/',NULL,'1','1566908263','1566908263','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1054','1051','object','384_384','/Shop/Orders/2019/08/27/ord_5d651f669cde7/',NULL,'1','1566908263','1566908263','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1055','1039','object','ord_5d6521e8206d5','/Shop/Orders/2019/08/27/','0','1','1566908904','1566908999','0','0','EF_OSO','OnlineShopOrder',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1056','1055','object','263_263','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/',NULL,'1','1566908904','1566908904','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1057','1055','object','388_388','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/',NULL,'1','1566908904','1566908904','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1058','1055','object','124_124','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/',NULL,'1','1566908904','1566908904','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1059','1055','object','378_378','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/',NULL,'1','1566908904','1566908904','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1060','1055','object','377_377','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/',NULL,'1','1566908904','1566908904','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1061','1055','object','311_311','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/',NULL,'1','1566908905','1566908905','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1062','1055','object','104_104','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/',NULL,'1','1566908905','1566908905','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1063','1055','object','259_259','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/',NULL,'1','1566908905','1566908905','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1065','1039','object','ord_5d652278a41a5','/Shop/Orders/2019/08/27/','0','1','1566909048','1566909088','0','0','EF_OSO','OnlineShopOrder',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1066','1065','object','415_415','/Shop/Orders/2019/08/27/ord_5d652278a41a5/',NULL,'1','1566909048','1566909048','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1067','1039','object','ord_5d6522ee11854','/Shop/Orders/2019/08/27/','0','1','1566909166','1566909181','0','0','EF_OSO','OnlineShopOrder',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1068','1067','object','24_24','/Shop/Orders/2019/08/27/ord_5d6522ee11854/',NULL,'1','1566909166','1566909166','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1069','1067','object','477_477','/Shop/Orders/2019/08/27/ord_5d6522ee11854/',NULL,'1','1566909166','1566909166','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1070','1039','object','ord_5d652e4a3c6a0','/Shop/Orders/2019/08/27/','0','1','1566912074','1566912089','0','0','EF_OSO','OnlineShopOrder',NULL,'12'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1071','1070','object','20_20','/Shop/Orders/2019/08/27/ord_5d652e4a3c6a0/',NULL,'1','1566912074','1566912074','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1073','1','folder','upload','/',NULL,'1','1566916747','1566916747','1','0',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1083','1038','folder','28','/Shop/Orders/2019/08/',NULL,'1','1566992802','1566992802','1','0',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1084','1083','object','ord_5d6669a20f76c','/Shop/Orders/2019/08/28/','0','1','1566992802','1566992983','0','0','EF_OSO','OnlineShopOrder',NULL,'24'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1085','1084','object','124_124','/Shop/Orders/2019/08/28/ord_5d6669a20f76c/','0','1','1566992802','1566995601','0','2','EF_OSOI','OnlineShopOrderItem',NULL,'3'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1086','1073','folder','new','/upload/',NULL,'1','1566995185','1566995185','1','0',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1088','1086','object','Kafer-1566995226','/upload/new/','0','0','1566995226','1566995426','0','2','CAR','Car',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1089','1083','object','ord_5d6673898d7b0','/Shop/Orders/2019/08/28/','0','1','1566995337','1566995350','0','0','EF_OSO','OnlineShopOrder',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1090','1089','object','235_235','/Shop/Orders/2019/08/28/ord_5d6673898d7b0/',NULL,'1','1566995337','1566995337','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1091','1089','object','12_12','/Shop/Orders/2019/08/28/ord_5d6673898d7b0/',NULL,'1','1566995337','1566995338','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1092','864','object','free_shipping','/Shop/Vouchers/Free-Shipping/',NULL,'1','1566995338','1566995338','0','0','EF_OSVT','OnlineShopVoucherToken',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1093','1086','object','Cobra-1566995353','/upload/new/','0','0','1566995353','1566995400','0','2','CAR','Car',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1094','1086','object','DB3-1566995468','/upload/new/','0','1','1566995468','1579775917','0','0','CAR','Car',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1095','1086','object','203-1566995526','/upload/new/',NULL,NULL,'1566995526','1566995526','0','0','CAR','Car',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1101','707','folder','--','/Customer Management/customers/--/',NULL,'1','1567080000','1567080000','1','0',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1102','1038','folder','29','/Shop/Orders/2019/08/',NULL,'1','1567085058','1567085058','1','0',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1103','1102','object','ord_5d67d202490ea','/Shop/Orders/2019/08/29/','0','1','1567085058','1567085107','0','0','EF_OSO','OnlineShopOrder',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1104','1103','object','115_115','/Shop/Orders/2019/08/29/ord_5d67d202490ea/',NULL,'1','1567085058','1567085058','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1106','1038','folder','30','/Shop/Orders/2019/08/',NULL,'1','1567155535','1567155535','1','0',NULL,NULL,NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1107','1106','object','ord_5d68e54f7945f','/Shop/Orders/2019/08/30/','0','1','1567155535','1567155596','0','0','EF_OSO','OnlineShopOrder',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1108','1107','object','97_97','/Shop/Orders/2019/08/30/ord_5d68e54f7945f/',NULL,'1','1567155535','1567155536','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1109','1106','object','ord_5d68ed2127f75','/Shop/Orders/2019/08/30/','0','1','1567157537','1567158999','0','0','EF_OSO','OnlineShopOrder',NULL,'14'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1110','1109','object','235_235','/Shop/Orders/2019/08/30/ord_5d68ed2127f75/',NULL,'1','1567157538','1567157538','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1111','865','object','com_6132','/Shop/Vouchers/Commercial-Discount/',NULL,'1','1567157538','1567157538','0','0','EF_OSVT','OnlineShopVoucherToken',NULL,'1'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1112','1106','object','ord_5d690dccf28a3','/Shop/Orders/2019/08/30/','0','1','1567165900','1567165916','0','0','EF_OSO','OnlineShopOrder',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1113','1112','object','381_381','/Shop/Orders/2019/08/30/ord_5d690dccf28a3/',NULL,'1','1567165901','1567165901','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1117','1106','object','ord_5d691be60e116','/Shop/Orders/2019/08/30/','0','1','1567169510','1567169581','0','0','EF_OSO','OnlineShopOrder',NULL,'9'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1118','1117','object','105_105','/Shop/Orders/2019/08/30/ord_5d691be60e116/',NULL,'1','1567169510','1567169510','0','0','EF_OSOI','OnlineShopOrderItem',NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1119','1','folder','Events','/',NULL,'1','1568799358','1568799358','1','1',NULL,NULL,NULL,'2'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1120','1119','object','Classic Expo Salzburg','/Events/','0','1','1568799577','1568803474','1','1','EV','Event',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1121','1119','object','Auto Messe Salzburg','/Events/','0','1','1568799578','1568802187','1','1','EV','Event',NULL,'8'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1122','1119','object','Retro Classics','/Events/','0','1','1568799579','1568803521','1','1','EV','Event',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1123','1119','object','Vienna Auto Show','/Events/','0','1','1568799580','1568803541','1','1','EV','Event',NULL,'7'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1124','1119','object','Custom Wheels Vienna','/Events/','0','1','1568799580','1568803484','1','1','EV','Event',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1125','1119','object','International Motor Show','/Events/','0','1','1568799581','1568803499','1','1','EV','Event',NULL,'5'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1126','1119','object','Thermen - Classic 2019','/Events/','0','1','1568799583','1568803530','1','1','EV','Event',NULL,'4'); -INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_versionCount`) VALUES ('1127','1119','object','Oldtimer Expo 2019','/Events/','0','1','1568799583','1568803509','1','1','EV','Event',NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1','0','folder','','/','999999','1','1557393622','1557393622','1','1',NULL,NULL,NULL,NULL,'0'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('2','744','folder','Cars','/Product Data/','2','1','1557394646','1565783301','2','2',NULL,NULL,NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('3','744','folder','Manufacturer','/Product Data/','0','1','1557394650','1565783319','2','2',NULL,NULL,NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('4','3','object','Jaguar','/Product Data/Manufacturer/','0','1','1557394656','1559903309','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('5','744','folder','Body-Styles','/Product Data/','3','1','1557394666','1565783290','2','2',NULL,NULL,NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('6','5','object','2-door roadster','/Product Data/Body-Styles/','0','1','1557394675','1565623766','2','2','BS','BodyStyle',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('7','5','object','2-door coupé','/Product Data/Body-Styles/','0','1','1557394684','1565623773','2','2','BS','BodyStyle',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('8','2','folder','jaguar','/Product Data/Cars/','0','1','1557394698','1557394698','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('9','8','object','E-Type','/Product Data/Cars/jaguar/','0','1','1557394706','1579775893','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('10','9','object','coupé','/Product Data/Cars/jaguar/E-Type/','0','1','1557394772','1579775893','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('11','9','object','cabrio','/Product Data/Cars/jaguar/E-Type/','0','1','1557394777','1579775894','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('12','11','object','red','/Product Data/Cars/jaguar/E-Type/cabrio/','0','1','1557395100','1579775894','2','0','CAR','Car',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('13','11','object','white','/Product Data/Cars/jaguar/E-Type/cabrio/','0','1','1557395131','1579775894','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('14','11','object','green','/Product Data/Cars/jaguar/E-Type/cabrio/','0','1','1557395244','1579775894','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('15','10','object','blue','/Product Data/Cars/jaguar/E-Type/coupé/','0','1','1557395274','1579775894','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('16','10','object','red','/Product Data/Cars/jaguar/E-Type/coupé/','0','1','1557395374','1593600004','2','1','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('17','8','object','MK2','/Product Data/Cars/jaguar/','0','1','1557395764','1579775894','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('19','17','object','white','/Product Data/Cars/jaguar/MK2/','0','1','1557396098','1579775894','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('20','17','object','black','/Product Data/Cars/jaguar/MK2/','0','1','1557396325','1579775894','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('21','8','object','XK140','/Product Data/Cars/jaguar/','0','1','1557396376','1579775894','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('22','21','object','cabrio','/Product Data/Cars/jaguar/XK140/','0','1','1557396524','1579775894','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('23','21','object','coupé','/Product Data/Cars/jaguar/XK140/','0','1','1557396529','1579775894','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('24','22','object','black','/Product Data/Cars/jaguar/XK140/cabrio/','0','1','1557396563','1579775895','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('25','22','object','white','/Product Data/Cars/jaguar/XK140/cabrio/','0','1','1557396590','1579775895','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('26','23','object','red','/Product Data/Cars/jaguar/XK140/coupé/','0','1','1557396666','1579775895','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('27','2','folder','alfa romeo','/Product Data/Cars/','16','1','1557397000','1557397000','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('28','3','object','Alfa Romeo','/Product Data/Manufacturer/','0','1','1557397007','1559902397','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('29','27','object','Giulietta','/Product Data/Cars/alfa romeo/','0','1','1557397054','1579775895','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('30','29','object','red','/Product Data/Cars/alfa romeo/Giulietta/','0','1','1557397218','1593599299','2','1','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('31','29','object','white','/Product Data/Cars/alfa romeo/Giulietta/','0','1','1557397253','1579775895','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('32','27','object','Spider','/Product Data/Cars/alfa romeo/','0','1','1557397433','1579775895','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('33','32','object','red','/Product Data/Cars/alfa romeo/Spider/','0','1','1557397544','1579775895','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('34','32','object','blue','/Product Data/Cars/alfa romeo/Spider/','0','1','1557397688','1579775895','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('35','3','object','Austin-Healey','/Product Data/Manufacturer/','0','1','1557397938','1559902731','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('36','2','folder','austin-healey','/Product Data/Cars/','17','1','1557397949','1557397949','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('37','36','object','3000','/Product Data/Cars/austin-healey/','0','1','1557397953','1579775895','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('38','37','object','red','/Product Data/Cars/austin-healey/3000/','0','1','1557398056','1579775895','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('39','3','object','Buick','/Product Data/Manufacturer/','0','1','1557429322','1559902868','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('40','2','folder','buick','/Product Data/Cars/','18','1','1557429333','1557429333','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('41','40','object','Special','/Product Data/Cars/buick/','0','1','1557429345','1579775895','2','0','CAR','Car',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('42','5','object','4-door sedan','/Product Data/Body-Styles/','0','1','1557429466','1565623909','2','2','BS','BodyStyle',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('43','41','object','blue','/Product Data/Cars/buick/Special/','0','1','1557429742','1579775896','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('44','41','object','red','/Product Data/Cars/buick/Special/','0','1','1557429796','1579775896','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('45','3','object','Cadillac','/Product Data/Manufacturer/','0','1','1557429859','1559902917','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('46','2','folder','cadillac','/Product Data/Cars/','19','1','1557429871','1557429871','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('47','46','object','Coupe De Ville','/Product Data/Cars/cadillac/','0','1','1557429907','1579775896','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('48','47','object','4-door','/Product Data/Cars/cadillac/Coupe De Ville/','0','1','1557430181','1579775896','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('49','5','object','4-door 4-window hardtop','/Product Data/Body-Styles/','0','1','1557430202','1565623966','2','2','BS','BodyStyle',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('50','5','object','2-door hardtop','/Product Data/Body-Styles/','0','1','1557430229','1565623992','2','2','BS','BodyStyle',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('51','48','object','blue','/Product Data/Cars/cadillac/Coupe De Ville/4-door/','0','1','1557430271','1579775896','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('52','47','object','2-door','/Product Data/Cars/cadillac/Coupe De Ville/','0','1','1557430429','1579775896','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('53','52','object','blue','/Product Data/Cars/cadillac/Coupe De Ville/2-door/','0','1','1557430458','1579775896','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('54','52','object','black','/Product Data/Cars/cadillac/Coupe De Ville/2-door/','0','1','1557430517','1579775896','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('55','46','object','Eldorado','/Product Data/Cars/cadillac/','0','1','1557430682','1579775896','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('56','5','object','2-door convertible','/Product Data/Body-Styles/','0','1','1557430763','1565623724','2','2','BS','BodyStyle',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('57','55','object','green','/Product Data/Cars/cadillac/Eldorado/','0','1','1557430969','1579775896','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('58','55','object','red','/Product Data/Cars/cadillac/Eldorado/','0','1','1557431197','1579775896','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('59','3','object','Chevrolet','/Product Data/Manufacturer/','0','1','1557431290','1559902971','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('60','2','folder','chevrolet','/Product Data/Cars/','20','1','1557431307','1557431307','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('61','60','object','Bel Air','/Product Data/Cars/chevrolet/','0','1','1557431318','1579775897','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('62','61','object','2-door','/Product Data/Cars/chevrolet/Bel Air/','0','1','1557432568','1579775897','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('63','62','object','red','/Product Data/Cars/chevrolet/Bel Air/2-door/','0','1','1557432701','1579775897','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('64','61','object','4-door','/Product Data/Cars/chevrolet/Bel Air/','0','1','1557432893','1579775897','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('66','64','object','blue','/Product Data/Cars/chevrolet/Bel Air/4-door/','0','1','1557432970','1579775897','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('67','64','object','red','/Product Data/Cars/chevrolet/Bel Air/4-door/','0','1','1557433080','1593599974','2','1','CAR','Car',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('68','60','object','Corvette','/Product Data/Cars/chevrolet/','0','1','1557433198','1579775897','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('69','68','object','red','/Product Data/Cars/chevrolet/Corvette/','0','1','1557433554','1579775897','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('70','68','object','black','/Product Data/Cars/chevrolet/Corvette/','0','1','1557433607','1579775897','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('71','3','object','Citroen','/Product Data/Manufacturer/','0','1','1557433728','1559903034','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('72','2','folder','citroen','/Product Data/Cars/','21','1','1557433744','1557433744','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('73','72','object','2CV','/Product Data/Cars/citroen/','0','1','1557433753','1579775897','2','0','CAR','Car',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('74','73','object','yellow','/Product Data/Cars/citroen/2CV/','0','1','1557434023','1579775897','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('75','73','object','red','/Product Data/Cars/citroen/2CV/','0','1','1557434107','1579775897','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('76','72','object','DS','/Product Data/Cars/citroen/','0','1','1557434260','1579775898','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('77','76','object','green','/Product Data/Cars/citroen/DS/','0','1','1557434640','1579775898','2','0','CAR','Car',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('78','76','object','black','/Product Data/Cars/citroen/DS/','0','1','1557434847','1579775898','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('79','2','folder','ac cars','/Product Data/Cars/','22','1','1558033965','1558033965','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('80','3','object','AC Cars','/Product Data/Manufacturer/','0','1','1558033974','1559902327','2','2','MA','Manufacturer',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('81','79','object','Cobra 427','/Product Data/Cars/ac cars/','0','1','1558033991','1579775898','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('82','81','object','blue','/Product Data/Cars/ac cars/Cobra 427/','0','1','1558034185','1579775898','2','0','CAR','Car',NULL,NULL,'19'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('83','3','object','Dodge','/Product Data/Manufacturer/','0','1','1558034326','1559903122','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('84','2','folder','dodge','/Product Data/Cars/','23','1','1558034336','1558034336','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('85','84','object','Charger','/Product Data/Cars/dodge/','0','1','1558034344','1579775898','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('86','85','object','second generation','/Product Data/Cars/dodge/Charger/','0','1','1558035613','1579775898','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('87','86','object','red','/Product Data/Cars/dodge/Charger/second generation/','0','1','1558035642','1579775898','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('88','86','object','orange','/Product Data/Cars/dodge/Charger/second generation/','0','1','1558035679','1579775898','2','0','CAR','Car',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('89','85','object','third generation','/Product Data/Cars/dodge/Charger/','0','1','1558035764','1579775898','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('90','89','object','yellow','/Product Data/Cars/dodge/Charger/third generation/','0','1','1558035795','1579775898','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('91','89','object','black','/Product Data/Cars/dodge/Charger/third generation/','0','1','1558035855','1579775898','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('92','86','object','black','/Product Data/Cars/dodge/Charger/second generation/','0','1','1558036182','1579775899','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('93','3','object','Ferrari','/Product Data/Manufacturer/','0','1','1558037078','1559903175','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('94','2','folder','ferrari','/Product Data/Cars/','24','1','1558037091','1558037091','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('95','94','object','Testarossa','/Product Data/Cars/ferrari/','0','1','1558037246','1579775899','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('96','5','object','2-door berlinetta','/Product Data/Body-Styles/','0','1','1558037327','1565623699','2','2','BS','BodyStyle',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('97','95','object','red','/Product Data/Cars/ferrari/Testarossa/','0','1','1558037422','1579775899','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('98','95','object','yellow','/Product Data/Cars/ferrari/Testarossa/','0','1','1558037630','1579775899','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('99','2','folder','fiat','/Product Data/Cars/','25','1','1558037905','1558037905','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('100','3','object','Fiat','/Product Data/Manufacturer/','0','1','1558037911','1559903225','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('101','99','object','500','/Product Data/Cars/fiat/','0','1','1558037919','1579775899','2','0','CAR','Car',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('102','101','object','black','/Product Data/Cars/fiat/500/','0','1','1558038102','1579775899','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('103','101','object','red','/Product Data/Cars/fiat/500/','0','1','1558038139','1579775899','2','0','CAR','Car',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('104','101','object','orange','/Product Data/Cars/fiat/500/','0','1','1558038215','1579775899','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('105','101','object','yellow','/Product Data/Cars/fiat/500/','0','1','1558038252','1579775899','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('106','3','object','Ford','/Product Data/Manufacturer/','0','1','1558038331','1559903261','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('107','2','folder','ford','/Product Data/Cars/','26','1','1558038339','1558038339','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('108','107','object','Mustang','/Product Data/Cars/ford/','0','1','1558038344','1579775899','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('109','108','object','convertible','/Product Data/Cars/ford/Mustang/','0','1','1558038715','1579775899','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('110','109','object','red','/Product Data/Cars/ford/Mustang/convertible/','0','1','1558038763','1579775899','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('111','109','object','black','/Product Data/Cars/ford/Mustang/convertible/','0','1','1558038820','1579775900','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('112','109','object','blue','/Product Data/Cars/ford/Mustang/convertible/','0','1','1558038850','1579775900','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('113','108','object','coupe','/Product Data/Cars/ford/Mustang/','0','1','1558038878','1579775900','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('114','113','object','red','/Product Data/Cars/ford/Mustang/coupe/','0','1','1558038899','1579775900','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('115','113','object','yellow','/Product Data/Cars/ford/Mustang/coupe/','0','1','1558038964','1579775900','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('116','113','object','brown','/Product Data/Cars/ford/Mustang/coupe/','0','1','1558038997','1579775900','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('117','107','object','Thunderbird','/Product Data/Cars/ford/','0','1','1558039054','1579775900','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('118','117','object','black','/Product Data/Cars/ford/Thunderbird/','0','1','1558039342','1579775900','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('119','117','object','red','/Product Data/Cars/ford/Thunderbird/','0','1','1558039380','1579775900','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('120','117','object','blue','/Product Data/Cars/ford/Thunderbird/','0','1','1558039413','1579775900','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('121','3','object','Lamborghini','/Product Data/Manufacturer/','0','1','1558039570','1559903351','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('122','2','folder','lamborghini','/Product Data/Cars/','15','1','1558039578','1558039578','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('123','122','object','Miura','/Product Data/Cars/lamborghini/','0','1','1558039590','1579775900','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('124','123','object','yellow','/Product Data/Cars/lamborghini/Miura/','0','1','1558039830','1579775900','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('125','123','object','blue','/Product Data/Cars/lamborghini/Miura/','0','1','1558040213','1579775900','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('126','123','object','green','/Product Data/Cars/lamborghini/Miura/','0','1','1558040242','1579775901','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('127','3','object','Lincoln','/Product Data/Manufacturer/','0','1','1558466658','1559903410','2','2','MA','Manufacturer',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('128','2','folder','lincoln','/Product Data/Cars/','14','1','1558466680','1558466680','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('129','128','object','Continental','/Product Data/Cars/lincoln/','0','1','1558466693','1579775901','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('130','129','object','convertible','/Product Data/Cars/lincoln/Continental/','0','1','1558467093','1579775901','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('131','130','object','red','/Product Data/Cars/lincoln/Continental/convertible/','0','1','1558467134','1579775901','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('132','129','object','sedan','/Product Data/Cars/lincoln/Continental/','0','1','1558467269','1579775901','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('133','132','object','white','/Product Data/Cars/lincoln/Continental/sedan/','0','1','1558467292','1579775901','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('134','3','object','Mercedes','/Product Data/Manufacturer/','0','1','1558467366','1559903464','2','2','MA','Manufacturer',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('135','2','folder','mercedes','/Product Data/Cars/','13','1','1558467381','1558467381','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('136','135','object','190sl','/Product Data/Cars/mercedes/','0','1','1558467423','1579775901','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('137','5','object','roadster','/Product Data/Body-Styles/','0','1','1558467581','1565624046','2','2','BS','BodyStyle',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('138','136','object','black','/Product Data/Cars/mercedes/190sl/','0','1','1558467657','1579775901','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('139','136','object','silver','/Product Data/Cars/mercedes/190sl/','0','1','1558467841','1579775901','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('140','135','object','300sl','/Product Data/Cars/mercedes/','0','1','1558468232','1579775901','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('141','140','object','roadster','/Product Data/Cars/mercedes/300sl/','0','1','1558468425','1579775901','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('142','140','object','coupe','/Product Data/Cars/mercedes/300sl/','0','1','1558468522','1579775901','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('143','142','object','silver','/Product Data/Cars/mercedes/300sl/coupe/','0','1','1558468538','1579775902','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('144','141','object','black','/Product Data/Cars/mercedes/300sl/roadster/','0','1','1558468731','1579775902','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('145','3','object','Mercury','/Product Data/Manufacturer/','0','1','1558469356','1559903549','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('146','2','folder','mercury','/Product Data/Cars/','1','1','1558469369','1558469369','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('147','146','object','Comet','/Product Data/Cars/mercury/','0','1','1558469388','1579775902','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('148','147','object','2-door','/Product Data/Cars/mercury/Comet/','0','1','1558469590','1579775902','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('149','148','object','beige','/Product Data/Cars/mercury/Comet/2-door/','0','1','1558469607','1579775902','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('150','148','object','black','/Product Data/Cars/mercury/Comet/2-door/','0','1','1558469710','1579775902','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('151','147','object','4-door-sedan','/Product Data/Cars/mercury/Comet/','0','1','1558469836','1579775902','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('152','151','object','black','/Product Data/Cars/mercury/Comet/4-door-sedan/','0','1','1558469848','1579775902','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('153','3','object','MG','/Product Data/Manufacturer/','0','1','1558469982','1559903616','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('154','2','folder','mg','/Product Data/Cars/','2','1','1558470030','1558470030','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('155','154','object','MGA','/Product Data/Cars/mg/','0','1','1558470035','1579775902','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('156','155','object','red','/Product Data/Cars/mg/MGA/','0','1','1558470244','1579775902','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('157','155','object','white','/Product Data/Cars/mg/MGA/','0','1','1558470288','1579775902','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('158','3','object','Peugeot','/Product Data/Manufacturer/','0','1','1558470975','1559903723','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('159','2','folder','peugeot','/Product Data/Cars/','4','1','1558470991','1558470991','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('160','159','object','403','/Product Data/Cars/peugeot/','0','1','1558471001','1579775902','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('161','160','object','green','/Product Data/Cars/peugeot/403/','0','1','1558471194','1579775903','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('162','160','object','white','/Product Data/Cars/peugeot/403/','0','1','1558471229','1579775903','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('163','3','object','Pontiac','/Product Data/Manufacturer/','0','1','1558471651','1559903749','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('164','2','folder','pontiac','/Product Data/Cars/','5','1','1558471660','1558471660','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('165','164','object','Bonneville','/Product Data/Cars/pontiac/','0','1','1558471671','1579775903','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('166','165','object','red','/Product Data/Cars/pontiac/Bonneville/','0','1','1558471782','1579775903','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('167','3','object','Porsche','/Product Data/Manufacturer/','0','1','1558704954','1559903823','2','2','MA','Manufacturer',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('168','2','folder','porsche','/Product Data/Cars/','6','1','1558704962','1558704962','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('169','168','object','911','/Product Data/Cars/porsche/','0','1','1558704967','1579775903','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('170','169','object','targa','/Product Data/Cars/porsche/911/','0','1','1558705142','1579775903','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('171','5','object','2-door targa top','/Product Data/Body-Styles/','0','1','1558705166','1565624073','2','2','BS','BodyStyle',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('172','170','object','yellow','/Product Data/Cars/porsche/911/targa/','0','1','1558705184','1579775903','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('173','169','object','coupe','/Product Data/Cars/porsche/911/','0','1','1558705223','1579775903','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('174','173','object','green','/Product Data/Cars/porsche/911/coupe/','0','1','1558705232','1579775903','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('175','173','object','red','/Product Data/Cars/porsche/911/coupe/','0','1','1558705322','1579775903','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('176','3','object','Renault','/Product Data/Manufacturer/','0','1','1558705362','1559903890','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('177','2','folder','renault','/Product Data/Cars/','7','1','1558705370','1558705370','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('178','177','object','R4','/Product Data/Cars/renault/','0','1','1558705374','1579775903','2','0','CAR','Car',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('179','5','object','5-door hatchback','/Product Data/Body-Styles/','0','1','1558705418','1565624093','2','2','BS','BodyStyle',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('180','178','object','red','/Product Data/Cars/renault/R4/','0','1','1558705515','1579775903','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('181','3','object','VEB Sachsenring','/Product Data/Manufacturer/','0','1','1558705642','1559904058','2','2','MA','Manufacturer',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('182','2','folder','trabant','/Product Data/Cars/','8','1','1558705647','1558705647','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('183','182','object','601','/Product Data/Cars/trabant/','0','1','1558705655','1579775904','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('184','183','object','beige','/Product Data/Cars/trabant/601/','0','1','1558705736','1579775904','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('185','3','object','Triumph','/Product Data/Manufacturer/','0','1','1558705789','1559904435','2','2','MA','Manufacturer',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('186','2','folder','triumph','/Product Data/Cars/','9','1','1558705798','1558705798','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('187','186','object','TR 6','/Product Data/Cars/triumph/','0','1','1558705893','1579775904','2','0','CAR','Car',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('188','187','object','green','/Product Data/Cars/triumph/TR 6/','0','1','1558706032','1579775904','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('189','187','object','red','/Product Data/Cars/triumph/TR 6/','0','1','1558706072','1579775904','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('190','186','object','TR 4','/Product Data/Cars/triumph/','0','1','1558706253','1579775904','2','0','CAR','Car',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('191','190','object','white','/Product Data/Cars/triumph/TR 4/','0','1','1558706346','1579775904','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('192','190','object','red','/Product Data/Cars/triumph/TR 4/','0','1','1558706423','1579775904','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('193','186','object','TR 3','/Product Data/Cars/triumph/','0','1','1558706481','1579775904','2','0','CAR','Car',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('194','193','object','white','/Product Data/Cars/triumph/TR 3/','0','1','1558706583','1579775904','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('195','193','object','green','/Product Data/Cars/triumph/TR 3/','0','1','1558706656','1579775904','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('196','193','object','red','/Product Data/Cars/triumph/TR 3/','0','1','1558706731','1579775904','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('197','168','object','356','/Product Data/Cars/porsche/','0','1','1558706843','1579775904','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('198','204','object','red','/Product Data/Cars/porsche/356/356 C/','0','1','1558706963','1579775905','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('199','197','object','365','/Product Data/Cars/porsche/356/','0','1','1558707043','1579775905','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('200','199','object','beige','/Product Data/Cars/porsche/356/365/','0','1','1558707051','1579775905','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('201','197','object','356 B','/Product Data/Cars/porsche/356/','0','1','1558707138','1579775905','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('202','199','object','green','/Product Data/Cars/porsche/356/365/','0','1','1558707165','1579775905','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('203','201','object','blue','/Product Data/Cars/porsche/356/356 B/','0','1','1558707377','1579775905','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('204','197','object','356 C','/Product Data/Cars/porsche/356/','0','1','1558707431','1579775905','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('205','204','object','white','/Product Data/Cars/porsche/356/356 C/','0','1','1558707568','1579775905','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('206','3','object','VW','/Product Data/Manufacturer/','0','1','1559049045','1559049048','2','2','MA','Manufacturer',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('207','2','folder','vw','/Product Data/Cars/','10','1','1559049052','1559049052','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('208','207','object','Käfer','/Product Data/Cars/vw/','0','1','1559049413','1579775905','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('209','208','object','1200','/Product Data/Cars/vw/Käfer/','0','1','1559049444','1579775905','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('210','208','object','1303','/Product Data/Cars/vw/Käfer/','0','1','1559049464','1579775905','2','0','CAR','Car',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('211','208','object','1302','/Product Data/Cars/vw/Käfer/','0','1','1559049473','1579775905','2','0','CAR','Car',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('212','209','object','2-door-saloon','/Product Data/Cars/vw/Käfer/1200/','0','1','1559049774','1579775905','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('213','5','object','2-door sedan','/Product Data/Body-Styles/','0','1','1559049789','1565624106','2','2','BS','BodyStyle',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('215','212','object','beige','/Product Data/Cars/vw/Käfer/1200/2-door-saloon/','1','1','1559049850','1579775906','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('216','212','object','blue','/Product Data/Cars/vw/Käfer/1200/2-door-saloon/','0','1','1559049993','1579775906','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('217','211','object','blue','/Product Data/Cars/vw/Käfer/1302/','0','1','1559050266','1579775906','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('218','210','object','2-door-saloon','/Product Data/Cars/vw/Käfer/1303/','0','1','1559050340','1579775906','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('219','210','object','cabrio','/Product Data/Cars/vw/Käfer/1303/','0','1','1559050345','1579775906','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('220','218','object','white','/Product Data/Cars/vw/Käfer/1303/2-door-saloon/','0','1','1559050366','1579775906','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('221','219','object','blue','/Product Data/Cars/vw/Käfer/1303/cabrio/','0','1','1559050483','1579775906','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('222','219','object','green','/Product Data/Cars/vw/Käfer/1303/cabrio/','0','1','1559050532','1579775906','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('223','212','object','yellow','/Product Data/Cars/vw/Käfer/1200/2-door-saloon/','0','1','1559050685','1579775906','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('224','218','object','blue','/Product Data/Cars/vw/Käfer/1303/2-door-saloon/','0','1','1559050711','1579775906','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('225','207','object','Karmann','/Product Data/Cars/vw/','0','1','1559050975','1579775907','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('226','225','object','coupe','/Product Data/Cars/vw/Karmann/','0','1','1559051107','1579775907','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('227','226','object','beige','/Product Data/Cars/vw/Karmann/coupe/','0','1','1559051127','1579775907','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('228','226','object','yellow','/Product Data/Cars/vw/Karmann/coupe/','0','1','1559051154','1579775907','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('229','226','object','red','/Product Data/Cars/vw/Karmann/coupe/','0','1','1559051232','1579775907','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('230','225','object','cabrio','/Product Data/Cars/vw/Karmann/','0','1','1559051259','1579775907','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('231','226','object','silver','/Product Data/Cars/vw/Karmann/coupe/','0','1','1559051272','1579775907','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('232','230','object','green','/Product Data/Cars/vw/Karmann/cabrio/','0','1','1559051330','1579775907','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('233','207','object','Type 2','/Product Data/Cars/vw/','0','1','1559051495','1579775907','2','0','CAR','Car',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('234','5','object','4-5-door minibus','/Product Data/Body-Styles/','0','1','1559051523','1565624114','2','2','BS','BodyStyle',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('235','233','object','orange','/Product Data/Cars/vw/Type 2/','0','1','1559051754','1579775907','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('236','233','object','red','/Product Data/Cars/vw/Type 2/','0','1','1559051805','1579775907','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('238','233','object','blue','/Product Data/Cars/vw/Type 2/','0','1','1559051986','1579775907','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('240','3','object','Aston Martin','/Product Data/Manufacturer/','0','1','1559052282','1559902601','2','2','MA','Manufacturer',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('241','2','folder','aston martin','/Product Data/Cars/','11','1','1559052291','1559052291','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('242','241','object','DB5','/Product Data/Cars/aston martin/','0','1','1559052301','1579775908','2','0','CAR','Car',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('243','242','object','coupe','/Product Data/Cars/aston martin/DB5/','0','1','1559052486','1579775908','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('244','243','object','silver','/Product Data/Cars/aston martin/DB5/coupe/','0','1','1559052499','1593599948','2','1','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('245','243','object','green','/Product Data/Cars/aston martin/DB5/coupe/','0','1','1559052615','1579775908','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('246','242','object','convertible','/Product Data/Cars/aston martin/DB5/','0','1','1559052703','1579775908','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('247','246','object','silver','/Product Data/Cars/aston martin/DB5/convertible/','0','1','1559052713','1579775908','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('248','241','object','DB6','/Product Data/Cars/aston martin/','0','1','1559052808','1579775908','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('249','248','object','red','/Product Data/Cars/aston martin/DB6/','0','1','1559052950','1579775908','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('250','248','object','green','/Product Data/Cars/aston martin/DB6/','0','1','1559053039','1579775908','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('251','94','object','250 GT','/Product Data/Cars/ferrari/','0','1','1559053403','1579775908','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('252','251','object','red','/Product Data/Cars/ferrari/250 GT/','0','1','1559053522','1579775908','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('253','251','object','blue','/Product Data/Cars/ferrari/250 GT/','0','1','1559053528','1579775908','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('254','60','object','Impala','/Product Data/Cars/chevrolet/','0','1','1559053764','1579775908','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('256','254','object','hardtop','/Product Data/Cars/chevrolet/Impala/','0','1','1559053914','1579775909','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('257','256','object','white','/Product Data/Cars/chevrolet/Impala/hardtop/','0','1','1559053924','1579775909','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('258','254','object','convertible','/Product Data/Cars/chevrolet/Impala/','0','1','1559053931','1579775909','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('259','258','object','white','/Product Data/Cars/chevrolet/Impala/convertible/','0','1','1559053940','1579775909','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('260','27','object','1900','/Product Data/Cars/alfa romeo/','0','1','1559142237','1579775909','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('261','260','object','berlina','/Product Data/Cars/alfa romeo/1900/','0','1','1559142464','1579775909','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('262','261','object','silver','/Product Data/Cars/alfa romeo/1900/berlina/','0','1','1559142510','1579775909','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('263','261','object','black','/Product Data/Cars/alfa romeo/1900/berlina/','0','1','1559142610','1579775909','2','0','CAR','Car',NULL,NULL,'17'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('264','260','object','sprint','/Product Data/Cars/alfa romeo/1900/','0','1','1559142691','1579775909','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('265','264','object','blue','/Product Data/Cars/alfa romeo/1900/sprint/','0','1','1559142761','1579775909','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('266','264','object','silver','/Product Data/Cars/alfa romeo/1900/sprint/','0','1','1559142864','1579775909','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('267','27','object','2000','/Product Data/Cars/alfa romeo/','0','1','1559142933','1579775909','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('268','267','object','berlina','/Product Data/Cars/alfa romeo/2000/','0','1','1559143071','1579775909','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('269','268','object','blue','/Product Data/Cars/alfa romeo/2000/berlina/','0','1','1559143090','1579775909','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('270','267','object','spider','/Product Data/Cars/alfa romeo/2000/','0','1','1559143238','1579775910','2','0','CAR','Car',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('271','270','object','white','/Product Data/Cars/alfa romeo/2000/spider/','0','1','1559143246','1579775910','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('272','27','object','Gulietta Sprint Speciale','/Product Data/Cars/alfa romeo/','0','1','1559143506','1579775910','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('273','272','object','green','/Product Data/Cars/alfa romeo/Gulietta Sprint Speciale/','0','1','1559143590','1579775910','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('274','272','object','red','/Product Data/Cars/alfa romeo/Gulietta Sprint Speciale/','0','1','1559143703','1579775910','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('275','27','object','Montreal','/Product Data/Cars/alfa romeo/','0','1','1559143798','1579775910','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('276','275','object','blue','/Product Data/Cars/alfa romeo/Montreal/','0','1','1559143926','1579775910','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('277','275','object','red','/Product Data/Cars/alfa romeo/Montreal/','0','1','1559143979','1579775910','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('278','275','object','white','/Product Data/Cars/alfa romeo/Montreal/','0','1','1559144028','1579775910','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('279','37','object','white','/Product Data/Cars/austin-healey/3000/','0','1','1559144374','1579775910','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('280','37','object','blue','/Product Data/Cars/austin-healey/3000/','0','1','1559144414','1579775910','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('281','8','object','Mark IX','/Product Data/Cars/jaguar/','0','1','1559308422','1579775911','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('282','281','object','red','/Product Data/Cars/jaguar/Mark IX/','0','1','1559308623','1579775911','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('283','281','object','black','/Product Data/Cars/jaguar/Mark IX/','0','1','1559308789','1579775911','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('284','8','object','Mark X','/Product Data/Cars/jaguar/','0','1','1559308945','1579775911','2','0','CAR','Car',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('285','284','object','black','/Product Data/Cars/jaguar/Mark X/','0','1','1559309040','1579775911','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('286','284','object','blue','/Product Data/Cars/jaguar/Mark X/','0','1','1559309161','1579775911','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('287','284','object','red','/Product Data/Cars/jaguar/Mark X/','0','1','1559309214','1579775911','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('288','17','object','silver','/Product Data/Cars/jaguar/MK2/','0','1','1559309362','1579775911','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('289','8','object','XK150','/Product Data/Cars/jaguar/','0','1','1559309546','1579775911','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('290','289','object','roadster','/Product Data/Cars/jaguar/XK150/','0','1','1559309592','1579775911','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('291','289','object','coupe','/Product Data/Cars/jaguar/XK150/','0','1','1559309613','1579775911','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('292','290','object','white','/Product Data/Cars/jaguar/XK150/roadster/','0','1','1559309677','1579775911','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('293','291','object','green','/Product Data/Cars/jaguar/XK150/coupe/','0','1','1559309764','1579775911','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('294','291','object','white','/Product Data/Cars/jaguar/XK150/coupe/','0','1','1559309781','1579775912','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('295','290','object','black','/Product Data/Cars/jaguar/XK150/roadster/','0','1','1559309839','1579775912','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('296','168','object','928','/Product Data/Cars/porsche/','0','1','1559735452','1579775912','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('297','296','object','red','/Product Data/Cars/porsche/928/','0','1','1559735584','1579775912','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('298','296','object','blue','/Product Data/Cars/porsche/928/','0','1','1559735676','1579775912','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('299','296','object','grey','/Product Data/Cars/porsche/928/','0','1','1559735740','1579775912','2','0','CAR','Car',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('300','3','object','BMW','/Product Data/Manufacturer/','0','1','1559736158','1566915983','2','2','MA','Manufacturer',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('301','2','folder','bmw','/Product Data/Cars/','12','1','1559736170','1559736170','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('302','301','object','Isetta','/Product Data/Cars/bmw/','0','1','1559736176','1579775912','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('303','302','object','beige','/Product Data/Cars/bmw/Isetta/','0','1','1559736475','1579775912','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('304','302','object','blue','/Product Data/Cars/bmw/Isetta/','0','1','1559736594','1579775912','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('305','302','object','light-blue','/Product Data/Cars/bmw/Isetta/','0','1','1559736659','1579775912','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('306','302','object','blue1','/Product Data/Cars/bmw/Isetta/','0','1','1559736725','1579775912','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('307','301','object','600','/Product Data/Cars/bmw/','0','1','1559736788','1579775913','2','0','CAR','Car',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('308','307','object','red','/Product Data/Cars/bmw/600/','0','1','1559737014','1579775913','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('309','307','object','yellow','/Product Data/Cars/bmw/600/','0','1','1559737136','1579775913','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('310','301','object','507','/Product Data/Cars/bmw/','0','1','1559737223','1579775913','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('311','310','object','red','/Product Data/Cars/bmw/507/','0','1','1559737334','1579775913','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('312','310','object','white','/Product Data/Cars/bmw/507/','0','1','1559737474','1579775913','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('313','301','object','335','/Product Data/Cars/bmw/','0','1','1559737657','1579775913','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('314','313','object','cabriolet','/Product Data/Cars/bmw/335/','0','1','1559737833','1579775913','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('315','5','object','4-door cabriolet','/Product Data/Body-Styles/','0','1','1559737852','1565624123','2','2','BS','BodyStyle',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('316','314','object','grey','/Product Data/Cars/bmw/335/cabriolet/','0','1','1559737870','1579775913','2','0','CAR','Car',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('317','313','object','berline','/Product Data/Cars/bmw/335/','0','1','1559738042','1579775913','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('318','317','object','black','/Product Data/Cars/bmw/335/berline/','0','1','1559738056','1579775913','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('319','135','object','W187','/Product Data/Cars/mercedes/','0','1','1559738533','1579775913','2','0','CAR','Car',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('320','319','object','limousine','/Product Data/Cars/mercedes/W187/','0','1','1559738651','1579775913','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('321','320','object','red','/Product Data/Cars/mercedes/W187/limousine/','0','1','1559738671','1579775914','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('322','319','object','cabriolet-a','/Product Data/Cars/mercedes/W187/','0','1','1559738735','1579775914','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('323','322','object','green','/Product Data/Cars/mercedes/W187/cabriolet-a/','0','1','1559738752','1579775914','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('324','319','object','cabriolet-b','/Product Data/Cars/mercedes/W187/','0','1','1559738805','1579775914','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('325','324','object','blue','/Product Data/Cars/mercedes/W187/cabriolet-b/','0','1','1559738815','1579775914','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('326','324','object','grey','/Product Data/Cars/mercedes/W187/cabriolet-b/','0','1','1559738872','1579775914','2','0','CAR','Car',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('327','135','object','W128','/Product Data/Cars/mercedes/','0','1','1559739159','1579775914','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('328','330','object','blue','/Product Data/Cars/mercedes/W128/sedan/','0','1','1559739322','1579775914','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('329','330','object','beige','/Product Data/Cars/mercedes/W128/sedan/','1','1','1559739371','1579775914','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('330','327','object','sedan','/Product Data/Cars/mercedes/W128/','0','1','1559739433','1579775914','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('331','327','object','coupe','/Product Data/Cars/mercedes/W128/','0','1','1559739454','1579775914','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('332','331','object','silver','/Product Data/Cars/mercedes/W128/coupe/','0','1','1559739467','1579775914','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('333','327','object','cabriolet','/Product Data/Cars/mercedes/W128/','0','1','1559739566','1579775915','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('334','333','object','black','/Product Data/Cars/mercedes/W128/cabriolet/','0','1','1559739579','1579775915','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('335','135','object','W111','/Product Data/Cars/mercedes/','0','1','1559739759','1579775915','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('336','335','object','sedan','/Product Data/Cars/mercedes/W111/','0','1','1559740353','1579775915','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('337','336','object','black','/Product Data/Cars/mercedes/W111/sedan/','0','1','1559740370','1579775915','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('338','336','object','grey','/Product Data/Cars/mercedes/W111/sedan/','0','1','1559740464','1579775915','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('339','336','object','beige','/Product Data/Cars/mercedes/W111/sedan/','0','1','1559740514','1579775915','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('340','335','object','coupe','/Product Data/Cars/mercedes/W111/','0','1','1559740603','1579775915','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('341','340','object','white','/Product Data/Cars/mercedes/W111/coupe/','0','1','1559740611','1579775915','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('342','340','object','red','/Product Data/Cars/mercedes/W111/coupe/','0','1','1559740663','1579775915','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('343','335','object','cabriolet','/Product Data/Cars/mercedes/W111/','0','1','1559740729','1579775915','2','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('344','343','object','white','/Product Data/Cars/mercedes/W111/cabriolet/','0','1','1559740736','1579775916','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('345','135','object','W110','/Product Data/Cars/mercedes/','0','1','1559740941','1579775916','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('346','345','object','white','/Product Data/Cars/mercedes/W110/','0','1','1559741031','1579775916','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('347','345','object','blue','/Product Data/Cars/mercedes/W110/','0','1','1559741141','1579775916','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('348','345','object','black','/Product Data/Cars/mercedes/W110/','0','1','1559741200','1579775916','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('349','135','object','W113','/Product Data/Cars/mercedes/','0','1','1559741430','1579775916','2','0','CAR','Car',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('350','349','object','red','/Product Data/Cars/mercedes/W113/','0','1','1559741586','1579775916','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('351','349','object','dark-grey','/Product Data/Cars/mercedes/W113/','0','1','1559741717','1579775916','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('352','349','object','white','/Product Data/Cars/mercedes/W113/','0','1','1559741819','1579775916','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('353','349','object','silver','/Product Data/Cars/mercedes/W113/','0','1','1559741872','1579775916','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('355','3','object','Morris','/Product Data/Manufacturer/','0','1','1559743023','1559903678','2','2','MA','Manufacturer',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('356','2','folder','morris','/Product Data/Cars/','27','1','1559743030','1559743030','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('357','356','object','Mini','/Product Data/Cars/morris/','0','1','1559743034','1579775916','2','0','CAR','Car',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('358','357','object','beige','/Product Data/Cars/morris/Mini/','0','1','1559743270','1579775916','2','0','CAR','Car',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('359','357','object','blue','/Product Data/Cars/morris/Mini/','0','1','1559743334','1579775917','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('360','357','object','lightblue','/Product Data/Cars/morris/Mini/','0','1','1559743382','1579775917','2','0','CAR','Car',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('361','744','folder','Accessories','/Product Data/','4','1','1559804883','1565783281','2','2',NULL,NULL,NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('362','361','folder','rims','/Product Data/Accessories/',NULL,'1','1559805173','1559805173','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('363','361','folder','lights','/Product Data/Accessories/',NULL,'1','1559805178','1559805178','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('364','363','folder','head lights','/Product Data/Accessories/lights/','0','1','1559805185','1559805185','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('365','363','folder','tail lights','/Product Data/Accessories/lights/','2','1','1559805201','1559805201','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('366','363','folder','indicator lights','/Product Data/Accessories/lights/','3','1','1559805227','1559805227','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('367','361','folder','windows','/Product Data/Accessories/','0','1','1559805239','1559805256','2','2',NULL,NULL,NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('368','367','folder','wind screens','/Product Data/Accessories/windows/',NULL,'1','1559805248','1559805248','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('370','361','folder','hood ornaments','/Product Data/Accessories/',NULL,'1','1559805292','1559805292','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('372','364','object','ac cars-cobra 427-head lights','/Product Data/Accessories/lights/head lights/','8','1','1559805464','1579775835','2','0','AP','AccessoryPart',NULL,NULL,'29'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('373','366','object','ac cars-cobra 427-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559805527','1579775835','2','0','AP','AccessoryPart',NULL,NULL,'27'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('377','362','object','alfa romeo-1900-rims-spoked wheel','/Product Data/Accessories/rims/','31','1','1559805925','1579775835','2','0','AP','AccessoryPart',NULL,NULL,'28'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('378','362','object','alfa romeo-1900-rims-simple','/Product Data/Accessories/rims/','30','1','1559805982','1579775835','2','0','AP','AccessoryPart',NULL,NULL,'27'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('379','364','object','alfa romeo-2000-head lights','/Product Data/Accessories/lights/head lights/','31','1','1559806037','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'27'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('380','361','folder','steering wheels','/Product Data/Accessories/',NULL,'1','1559806123','1559806123','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('381','380','object','alfa romeo-giulietta-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559806138','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'25'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('382','364','object','alfa romeo-giulietta-head lights','/Product Data/Accessories/lights/head lights/','32','1','1559806211','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'29'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('383','366','object','alfa romeo-giulietta-indicator lights','/Product Data/Accessories/lights/indicator lights/','1','1','1559806249','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'27'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('384','365','object','alfa romeo-spider-tail lights','/Product Data/Accessories/lights/tail lights/','1','1','1559806318','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'25'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('385','364','object','alfa romeo-gulietta sprint speciale-head lights','/Product Data/Accessories/lights/head lights/','33','1','1559806379','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'26'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('386','362','object','alfa romeo-gulietta sprint speciale-rims','/Product Data/Accessories/rims/','32','1','1559806448','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'24'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('387','380','object','alfa romeo-gulietta sprint speciale-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559806505','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'23'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('388','364','object','alfa romeo-1900-head lights','/Product Data/Accessories/lights/head lights/','30','1','1559806547','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'25'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('389','744','folder','Categories','/Product Data/','1','1','1559806996','1565783310','2','2',NULL,NULL,NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('390','564','object','cars','/Product Data/Categories/products/','0','1','1559807034','1562571244','2','2','CA','Category',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('392','564','object','spare parts','/Product Data/Categories/products/','1','1','1559807059','1565794345','2','2','CA','Category',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('393','392','object','lights','/Product Data/Categories/products/spare parts/','0','1','1559807086','1560249814','2','2','CA','Category',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('394','393','object','head lamps','/Product Data/Categories/products/spare parts/lights/','0','1','1559807096','1560249923','2','2','CA','Category',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('395','393','object','indicator lights','/Product Data/Categories/products/spare parts/lights/','0','1','1559807111','1560249927','2','2','CA','Category',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('396','393','object','tail lights','/Product Data/Categories/products/spare parts/lights/','0','1','1559807122','1560249931','2','2','CA','Category',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('397','392','object','rims','/Product Data/Categories/products/spare parts/','0','1','1559807414','1560249937','2','2','CA','Category',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('399','392','object','steering wheels','/Product Data/Categories/products/spare parts/','0','1','1559807625','1560249947','2','2','CA','Category',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('400','365','object','aston martin-db5-tail lights','/Product Data/Accessories/lights/tail lights/','2','1','1559807783','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'19'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('401','364','object','aston martin-db5-head lights','/Product Data/Accessories/lights/head lights/','10','1','1559807884','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'18'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('402','366','object','aston martin-db5-indicator lights','/Product Data/Accessories/lights/indicator lights/','2','1','1559807929','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'18'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('403','362','object','aston martin-db5-rims','/Product Data/Accessories/rims/','8','1','1559807999','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'18'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('404','364','object','aston martin-db6-head lights','/Product Data/Accessories/lights/head lights/','11','1','1559808083','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('405','364','object','austin-healey-3000 mk ii-head lights','/Product Data/Accessories/lights/head lights/','12','1','1559808203','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'17'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('406','368','object','austin-healey-3000 mk ii-windscreens','/Product Data/Accessories/windows/wind screens/','0','1','1559808289','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'18'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('407','392','object','windscreens','/Product Data/Categories/products/spare parts/','0','1','1559808310','1560249957','2','2','CA','Category',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('408','370','object','austin-healey-3000 mk ii-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559808430','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'37'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('409','392','object','hood ornaments','/Product Data/Categories/products/spare parts/','0','1','1559808456','1560249913','2','2','CA','Category',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('410','362','object','austin-healey-3000 mk ii-rims','/Product Data/Accessories/rims/','9','1','1559808503','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('411','380','object','bmw-600-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559808611','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('412','368','object','bmw-isetta-windscreens','/Product Data/Accessories/windows/wind screens/','0','1','1559808794','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('413','364','object','bmw-isetta-head lights','/Product Data/Accessories/lights/head lights/','13','1','1559808838','1579775836','2','0','AP','AccessoryPart',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('414','364','object','bmw-600-head lights','/Product Data/Accessories/lights/head lights/','14','1','1559808943','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('415','362','object','bmw-507-rims','/Product Data/Accessories/rims/','10','1','1559808980','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('416','365','object','bmw-507-tail lights','/Product Data/Accessories/lights/tail lights/','3','1','1559809050','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('418','364','object','bmw-507-head lights','/Product Data/Accessories/lights/head lights/','15','1','1559809107','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('419','364','object','bmw-335-head lights','/Product Data/Accessories/lights/head lights/','16','1','1559809155','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('420','380','object','buick-special-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559809246','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('422','364','object','buick-special-head lights','/Product Data/Accessories/lights/head lights/','17','1','1559809295','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('423','362','object','buick-special-rims','/Product Data/Accessories/rims/','11','1','1559809332','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('424','364','object','cadillac-eldorado-head lights','/Product Data/Accessories/lights/head lights/','18','1','1559809421','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('425','362','object','cadillac-eldorado-rims','/Product Data/Accessories/rims/','12','1','1559809470','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('426','362','object','cadillac-coupe de ville-rims','/Product Data/Accessories/rims/','13','1','1559809519','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('427','365','object','chevrolet-corvette-tail lights','/Product Data/Accessories/lights/tail lights/','4','1','1559809730','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('428','364','object','chevrolet-bel air-head lights','/Product Data/Accessories/lights/head lights/','19','1','1559809809','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('429','366','object','chevrolet-bel air-tail lights','/Product Data/Accessories/lights/indicator lights/','3','1','1559809865','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('430','364','object','chevrolet-corvette-head lights','/Product Data/Accessories/lights/head lights/','20','1','1559809947','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('431','362','object','chevrolet-corvette-rims','/Product Data/Accessories/rims/','14','1','1559810012','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('432','380','object','chevrolet-corvette-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559810049','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('433','365','object','chevrolet-bel air-tail lights','/Product Data/Accessories/lights/tail lights/','5','1','1559810084','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('434','362','object','chevrolet-corvette-rims-black','/Product Data/Accessories/rims/','15','1','1559810127','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('435','362','object','chevrolet-bel air-rims','/Product Data/Accessories/rims/','16','1','1559810171','1579775837','2','0','AP','AccessoryPart',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('436','366','object','citroen-ds-indicator lights-back','/Product Data/Accessories/lights/indicator lights/','4','1','1559810283','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('437','362','object','citroen-2cv-rims','/Product Data/Accessories/rims/','17','1','1559810330','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('438','364','object','citroen-2cv-head lights','/Product Data/Accessories/lights/head lights/','21','1','1559810403','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('439','366','object','citroen-2cv-indicator lights','/Product Data/Accessories/lights/indicator lights/','5','1','1559810460','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('440','370','object','citroen-2cv-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559810492','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('441','364','object','citroen-ds-head lights-back','/Product Data/Accessories/lights/head lights/','22','1','1559810532','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('442','364','object','dodge-charger-head lights','/Product Data/Accessories/lights/head lights/','23','1','1559810637','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('443','368','object','dodge-charger-windscreens','/Product Data/Accessories/windows/wind screens/','0','1','1559810697','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('444','362','object','dodge-charger-rims','/Product Data/Accessories/rims/','18','1','1559810738','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('445','362','object','dodge-charger-rims-black','/Product Data/Accessories/rims/','19','1','1559810784','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'14'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('446','366','object','ferrari-testarossa-indicator lights','/Product Data/Accessories/lights/indicator lights/','6','1','1559810897','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('447','364','object','ferrari-250 gt-head lights','/Product Data/Accessories/lights/head lights/','24','1','1559810953','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('448','362','object','ferrari-250 gt-rims','/Product Data/Accessories/rims/','20','1','1559811002','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('449','362','object','ferrari-testarossa-rims','/Product Data/Accessories/rims/','21','1','1559811055','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('450','365','object','ferrari-testarossa-tail lights','/Product Data/Accessories/lights/tail lights/','6','1','1559811091','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('451','380','object','ferrari-250 gt-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559811133','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('452','368','object','fiat-500-windscreens','/Product Data/Accessories/windows/wind screens/','0','1','1559811217','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('453','366','object','fiat-500-indicator lights','/Product Data/Accessories/lights/indicator lights/','7','1','1559811273','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('454','364','object','fiat-500-head lights','/Product Data/Accessories/lights/head lights/','25','1','1559811319','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('455','362','object','fiat-500-rims','/Product Data/Accessories/rims/','22','1','1559811350','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('456','365','object','fiat-500-tail lights','/Product Data/Accessories/lights/tail lights/','7','1','1559811385','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('457','362','object','ford-thunderbird-rims','/Product Data/Accessories/rims/','23','1','1559811537','1579775838','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('458','364','object','ford-thunderbird-head lights','/Product Data/Accessories/lights/head lights/','26','1','1559811580','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('459','365','object','ford-mustang-tail lights','/Product Data/Accessories/lights/tail lights/','8','1','1559811620','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('460','370','object','ford-mustang-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559811666','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('461','364','object','ford-mustang-head lights','/Product Data/Accessories/lights/head lights/','27','1','1559811704','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('462','366','object','ford-mustang-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559811738','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('463','365','object','ford-thunderbird-tail lights','/Product Data/Accessories/lights/tail lights/','9','1','1559811764','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('464','380','object','jaguar-mark ix-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559812062','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('465','365','object','jaguar-xk150-tail lights','/Product Data/Accessories/lights/tail lights/','10','1','1559812136','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('466','364','object','jaguar-xk150-head lights','/Product Data/Accessories/lights/head lights/','28','1','1559812193','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('467','366','object','jaguar-xk150-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559812238','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('468','370','object','jaguar-xk150-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559812279','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('469','362','object','jaguar-mk2-rims-simple','/Product Data/Accessories/rims/','24','1','1559812317','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('470','362','object','jaguar-mk2-rims-spoked wheel','/Product Data/Accessories/rims/','25','1','1559812370','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('471','364','object','jaguar-e-type-head lights','/Product Data/Accessories/lights/head lights/','29','1','1559812407','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('472','366','object','jaguar-e-type-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559812441','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('473','365','object','jaguar-mk2-tail lights','/Product Data/Accessories/lights/tail lights/','11','1','1559812487','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('474','370','object','jaguar-mk2-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559812532','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('475','365','object','jaguar-e-type-tail lights','/Product Data/Accessories/lights/tail lights/','12','1','1559812558','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('476','364','object','jaguar-xk140-head lights','/Product Data/Accessories/lights/head lights/','34','1','1559812605','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('477','362','object','jaguar-xk140-rims','/Product Data/Accessories/rims/','26','1','1559812667','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('478','365','object','jaguar-mark x-tail lights','/Product Data/Accessories/lights/tail lights/','13','1','1559812713','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('479','364','object','jaguar-mark x-head lights','/Product Data/Accessories/lights/head lights/','35','1','1559812760','1579775839','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('480','362','object','jaguar-e-type-rims','/Product Data/Accessories/rims/','27','1','1559812801','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('481','380','object','jaguar-mk2-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559812857','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('482','362','object','lincoln motor company-continental-rims','/Product Data/Accessories/rims/','28','1','1559825468','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('484','366','object','mercedes-benz-w110-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559825831','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('485','365','object','mercedes-benz-w113-tail lights','/Product Data/Accessories/lights/tail lights/','14','1','1559825902','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('486','364','object','mercedes-benz-300 sl-head lights','/Product Data/Accessories/lights/head lights/','36','1','1559825959','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('487','365','object','mercedes-benz-300 sl-tail lights','/Product Data/Accessories/lights/tail lights/','15','1','1559826001','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('488','365','object','mercedes-benz-190 sl-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559830590','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('489','362','object','mercedes-benz-300 sl-rims','/Product Data/Accessories/rims/','29','1','1559830664','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('490','362','object','mercedes-benz-190 sl-rims','/Product Data/Accessories/rims/','33','1','1559830697','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('492','380','object','mercedes-benz-190 sl-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559830868','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('493','364','object','mercedes-benz-190 sl-head lights','/Product Data/Accessories/lights/head lights/','37','1','1559830909','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('494','366','object','mercedes-benz-190 sl-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559830950','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('495','364','object','mercedes-benz-w111-head lights','/Product Data/Accessories/lights/head lights/','38','1','1559831011','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('496','364','object','mercedes-benz-220-head lights','/Product Data/Accessories/lights/head lights/','39','1','1559831069','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('497','366','object','mercedes-benz-220-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559831115','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('498','368','object','mercedes-benz-220-windscreens','/Product Data/Accessories/windows/wind screens/','0','1','1559831146','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('499','362','object','mercedes-benz-220-rims','/Product Data/Accessories/rims/','34','1','1559831190','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('500','362','object','mercedes-benz-220-rims-blue','/Product Data/Accessories/rims/','35','1','1559831234','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('501','365','object','mercedes-benz-w128-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559831284','1579775840','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('502','364','object','mercedes-benz-w113-head lights','/Product Data/Accessories/lights/head lights/','40','1','1559831354','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('503','364','object','mercedes-benz-w110-head lights','/Product Data/Accessories/lights/head lights/','41','1','1559831396','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('504','366','object','mercedes-benz-w110-indicator lights-splitted','/Product Data/Accessories/lights/indicator lights/','0','1','1559831447','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('505','365','object','mercedes-benz-w110-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559831482','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('506','365','object','mercedes-benz-220-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559831615','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('507','365','object','mercedes-benz-w111-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559831686','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('508','364','object','mercury-comet-head lights','/Product Data/Accessories/lights/head lights/','42','1','1559831980','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('509','362','object','mercury-comet-rims','/Product Data/Accessories/rims/','36','1','1559832076','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('510','364','object','mg cars-mga-head lights','/Product Data/Accessories/lights/head lights/','43','1','1559832145','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('511','370','object','mg cars-mga-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559832189','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('512','366','object','mg cars-mga-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559832215','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('513','362','object','mg cars-mga-rims','/Product Data/Accessories/rims/','1','1','1559832256','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('514','364','object','peugeot-403-head lights','/Product Data/Accessories/lights/head lights/','0','1','1559832413','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('515','366','object','peugeot-403-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559832534','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('516','365','object','peugeot-403-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559832573','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('517','362','object','pontiac-bonneville-rims','/Product Data/Accessories/rims/','2','1','1559832615','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('518','365','object','porsche-911-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559832748','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('519','362','object','porsche-911-rims','/Product Data/Accessories/rims/','3','1','1559832800','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('520','364','object','porsche-356-head lights','/Product Data/Accessories/lights/head lights/','1','1','1559832855','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('521','366','object','porsche-356-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559832903','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('522','364','object','renault-r4-head lights','/Product Data/Accessories/lights/head lights/','2','1','1559832949','1579775841','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('523','366','object','renault-r4-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559832991','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('524','368','object','renault-r4-windscreens','/Product Data/Accessories/windows/wind screens/','0','1','1559833040','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('525','362','object','renault-r4-rims','/Product Data/Accessories/rims/','4','1','1559833074','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('526','364','object','triumph-tr 6-head lights','/Product Data/Accessories/lights/head lights/','3','1','1559833193','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('527','365','object','triumph-tr 6-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559833232','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('528','364','object','triumph-tr 3-head lights','/Product Data/Accessories/lights/head lights/','4','1','1559833273','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('529','370','object','triumph-tr 3-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559833322','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('530','380','object','triumph-tr 6-steering wheels','/Product Data/Accessories/steering wheels/','0','1','1559833392','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('531','362','object','triumph-tr 4-rims','/Product Data/Accessories/rims/','5','1','1559833445','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('532','364','object','vw-type 2-head lights','/Product Data/Accessories/lights/head lights/','5','1','1559833617','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('533','366','object','vw-type 2-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559833658','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('534','362','object','vw-type 2-rims','/Product Data/Accessories/rims/','6','1','1559833691','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('535','365','object','vw-type 2-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559833738','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('536','370','object','vw-type 2-hood ornaments','/Product Data/Accessories/hood ornaments/','0','1','1559833809','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('537','364','object','vw-karmann-head lights','/Product Data/Accessories/lights/head lights/','6','1','1559833885','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('538','366','object','vw-karmann-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559833932','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('539','365','object','vw-karmann-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559833969','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('540','364','object','vw-käfer-head lights','/Product Data/Accessories/lights/head lights/','7','1','1559834033','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('541','366','object','vw-käfer-indicator lights','/Product Data/Accessories/lights/indicator lights/','0','1','1559834106','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('542','362','object','vw-käfer-rims','/Product Data/Accessories/rims/','7','1','1559834157','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('543','365','object','vw-käfer-tail lights-1303','/Product Data/Accessories/lights/tail lights/','0','1','1559834196','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('544','365','object','vw-käfer-tail lights','/Product Data/Accessories/lights/tail lights/','0','1','1559834233','1579775842','2','0','AP','AccessoryPart',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('545','390','object','sport and performance','/Product Data/Categories/products/cars/','0','1','1559834991','1565794964','2','2','CA','Category',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('546','390','object','luxury','/Product Data/Categories/products/cars/','0','1','1559835017','1565274276','2','2','CA','Category',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('547','390','object','economy','/Product Data/Categories/products/cars/','0','1','1559835061','1565274267','2','2','CA','Category',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('548','547','object','city cars','/Product Data/Categories/products/cars/economy/','0','1','1559835079','1560249676','2','2','CA','Category',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('550','546','object','executive cars','/Product Data/Categories/products/cars/luxury/','0','1','1559835111','1560249500','2','2','CA','Category',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('551','547','object','family cars','/Product Data/Categories/products/cars/economy/','0','1','1559835124','1560249758','2','2','CA','Category',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('552','546','object','full-size cars','/Product Data/Categories/products/cars/luxury/','0','1','1559835135','1560249736','2','2','CA','Category',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('553','546','object','full-size luxury cars','/Product Data/Categories/products/cars/luxury/','0','1','1559835147','1562571592','2','2','CA','Category',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('555','545','object','grand tourer','/Product Data/Categories/products/cars/sport and performance/','0','1','1559835165','1560249628','2','2','CA','Category',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('556','390','object','commercial','/Product Data/Categories/products/cars/','0','1','1559835179','1565794831','2','2','CA','Category',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('557','546','object','mid-size luxury cars','/Product Data/Categories/products/cars/luxury/','0','1','1559835195','1562571708','2','2','CA','Category',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('558','545','object','muscle cars','/Product Data/Categories/products/cars/sport and performance/','0','1','1559835223','1560249626','2','2','CA','Category',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('559','545','object','sports cars','/Product Data/Categories/products/cars/sport and performance/','0','1','1559835233','1560249623','2','2','CA','Category',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('560','546','object','personal luxury cars','/Product Data/Categories/products/cars/luxury/','0','1','1559835243','1560249668','2','2','CA','Category',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('561','547','object','economy cars','/Product Data/Categories/products/cars/economy/','0','1','1559901583','1560249733','2','2','CA','Category',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('562','1','folder','Shop','/','0','1','1562158513','1565792956','2','2',NULL,NULL,NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('563','695','object','default','/Shop/Filter-Definitions/','2','1','1562158519','1566914343','2','2','EF_FD','FilterDefinition',NULL,NULL,'28'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('564','389','object','products','/Product Data/Categories/','0','1','1562243853','1565276047','2','2','CA','Category',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('693','756','object','tax','/Shop/Tax-Definitions/','0','1','1565267314','1565793288','2','2','EF_OSTC','OnlineShopTaxClass',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('695','562','folder','Filter-Definitions','/Shop/','0','1','1565360765','1565793311','2','2',NULL,NULL,NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('696','757','object','chrevorlet','/Shop/Filter-Definitions/Landing-Pages/','3','1','1565360778','1566914448','2','2','EF_FD','FilterDefinition',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('697','757','object','ford','/Shop/Filter-Definitions/Landing-Pages/','2','1','1565361008','1566914463','2','2','EF_FD','FilterDefinition',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('698','757','object','vans','/Shop/Filter-Definitions/Landing-Pages/','0','1','1565361229','1566914499','2','2','EF_FD','FilterDefinition',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('699','757','object','volkswagen','/Shop/Filter-Definitions/Landing-Pages/','1','1','1565361411','1566914520','2','2','EF_FD','FilterDefinition',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('702','1','folder','Customer Management','/','0','1','1565686891','1565784848','2','2',NULL,NULL,NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('703','702','folder','customers','/Customer Management/',NULL,'1','1565686898','1565686898','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('707','703','folder','--','/Customer Management/customers/',NULL,'1','1565703223','1565703223','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('739','703','folder','AT','/Customer Management/customers/',NULL,'1','1565775938','1565775938','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('744','1','folder','Product Data','/',NULL,'1','1565783234','1565783234','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('756','562','folder','Tax-Definitions','/Shop/','0','1','1565793277','1565793286','2','2',NULL,NULL,NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('757','695','folder','Landing-Pages','/Shop/Filter-Definitions/','0','1','1565793317','1565793317','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('758','695','folder','Categories','/Shop/Filter-Definitions/','1','1','1565793331','1565793331','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('759','562','folder','Vouchers','/Shop/',NULL,'1','1565793356','1565793356','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('760','758','object','spare-parts','/Shop/Filter-Definitions/Categories/','0','1','1565793853','1566914397','2','2','EF_FD','FilterDefinition',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('761','758','object','commercial-cars','/Shop/Filter-Definitions/Categories/','0','1','1565794643','1566914375','2','2','EF_FD','FilterDefinition',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('762','758','object','sport','/Shop/Filter-Definitions/Categories/','2','1','1565794883','1566914426','2','2','EF_FD','FilterDefinition',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('763','1','folder','News','/',NULL,'1','1565947986','1565947986','2','2',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('765','763','object','Montery Car Week Spring Edition','/News/','0','1','1565948018','1567082073','2','2','NE','News',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('766','763','object','Vintage Car Auction Detroit','/News/','0','1','1565948484','1567072392','2','2','NE','News',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('767','763','object','Driven Chevrolet Implala','/News/','0','1','1565948509','1642779852','2','1','NE','News',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('768','763','object','Historic Racing in Le Mans','/News/','0','1','1565948556','1567072218','2','2','NE','News',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('769','763','object','Announcement: Documentary Movie about Henry Ford','/News/','0','1','1565948593','1567072141','2','2','NE','News',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('770','763','object','Rare for a Reason - Ford Mustang','/News/','0','1','1565948622','1567072368','2','2','NE','News',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('771','763','object','Li Europan lingues es membres','/News/','0','1','1565948640','1567072261','2','2','NE','News',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('772','763','object','Lor separat existentie es un myth','/News/','0','1','1565948655','1567072272','2','2','NE','News',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('773','763','object','A un Angleso it va semblar un simplificat','/News/','0','1','1565948670','1567072124','2','2','NE','News',NULL,NULL,'11'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('815','703','folder','_temp','/Customer Management/customers/',NULL,'1','1566579635','1566579635','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('819','831','object','Customer-Type','/Customer Management/segments/calculated/','2','1','1566653217','1566671573','2','2','1','CustomerSegmentGroup',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('824','819','object','New-Customer','/Customer Management/segments/calculated/Customer-Type/','0','1','1566653501','1566829396','2','2','2','CustomerSegment',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('825','819','object','Regular-Customer','/Customer Management/segments/calculated/Customer-Type/','0','1','1566653518','1566829431','2','2','2','CustomerSegment',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('826','819','object','VIP-Customer','/Customer Management/segments/calculated/Customer-Type/','0','1','1566653530','1566829443','2','2','2','CustomerSegment',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('830','702','folder','segments','/Customer Management/',NULL,'1','1566671485','1566671485','1','0',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('831','830','folder','calculated','/Customer Management/segments/',NULL,'1','1566671485','1566671485','1','0',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('832','831','object','State','/Customer Management/segments/calculated/','0','1','1566671486','1566671861','0','2','1','CustomerSegmentGroup',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('833','831','object','Gender','/Customer Management/segments/calculated/','1','1','1566671486','1566671857','0','2','1','CustomerSegmentGroup',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('834','833','object','male','/Customer Management/segments/calculated/Gender/',NULL,'1','1566671486','1566671486','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('835','833','object','female','/Customer Management/segments/calculated/Gender/',NULL,'1','1566671486','1566671486','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('836','833','object','not-set','/Customer Management/segments/calculated/Gender/',NULL,'1','1566671486','1566671486','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('837','739','folder','5020','/Customer Management/customers/AT/',NULL,'1','1566671506','1566671506','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('838','832','folder','AT','/Customer Management/segments/calculated/State/',NULL,'1','1566671506','1566671506','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('839','838','object','AT - Salzburg','/Customer Management/segments/calculated/State/AT/',NULL,'1','1566671506','1566671506','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('847','838','object','AT - Oberösterreich','/Customer Management/segments/calculated/State/AT/',NULL,'1','1566671758','1566671758','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('859','831','object','VisitingCount','/Customer Management/segments/calculated/','0','1','1566672569','1566672588','2','2','1','CustomerSegmentGroup',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('860','859','object','at least once','/Customer Management/segments/calculated/VisitingCount/','0','1','1566672608','1566672621','2','2','2','CustomerSegment',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('861','859','object','3 times','/Customer Management/segments/calculated/VisitingCount/','0','1','1566672643','1566672654','2','2','2','CustomerSegment',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('862','859','object','5 times','/Customer Management/segments/calculated/VisitingCount/','0','1','1566672670','1566672681','2','2','2','CustomerSegment',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('863','859','object','10 times','/Customer Management/segments/calculated/VisitingCount/','0','1','1566672694','1566672711','2','2','2','CustomerSegment',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('864','759','object','Free-Shipping','/Shop/Vouchers/','0','1','1566741057','1566742433','2','2','EF_OSVS','OnlineShopVoucherSeries',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('865','759','object','Commercial-Discount','/Shop/Vouchers/','0','1','1566741979','1566742015','2','2','EF_OSVS','OnlineShopVoucherSeries',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('872','757','object','sale','/Shop/Filter-Definitions/Landing-Pages/','2','1','1562158519','1566914482','2','2','EF_FD','FilterDefinition',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('873','389','object','sale','/Product Data/Categories/','0','1','1566810276','1566810487','2','2','CA','Category',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('874','831','object','Interest-Target-Groups','/Customer Management/segments/calculated/','0','1','1566824695','1566824759','2','2','1','CustomerSegmentGroup',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('875','874','object','Sports-Cars-Fan','/Customer Management/segments/calculated/Interest-Target-Groups/','0','1','1566824774','1566829487','2','2','2','CustomerSegment',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('876','874','object','Economy-Cars-Fan','/Customer Management/segments/calculated/Interest-Target-Groups/','0','1','1566824799','1566829461','2','2','2','CustomerSegment',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('877','874','object','Luxury-Cars-Fan','/Customer Management/segments/calculated/Interest-Target-Groups/','0','1','1566824835','1566829472','2','2','2','CustomerSegment',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('960','831','object','Interest Manufacturer','/Customer Management/segments/calculated/',NULL,'1','1566893533','1566893533','2','2','1','CustomerSegmentGroup',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('961','960','object','Jaguar','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('962','831','object','Interest Car Class','/Customer Management/segments/calculated/',NULL,'1','1566893534','1566893534','2','2','1','CustomerSegmentGroup',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('963','962','object','sports car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('964','831','object','Interest Body Style','/Customer Management/segments/calculated/',NULL,'1','1566893534','1566893534','2','2','1','CustomerSegmentGroup',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('965','964','object','2-door roadster','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('966','960','object','Citroen','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('967','962','object','Economy car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('968','964','object','4-door sedan','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('969','960','object','AC Cars','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('970','960','object','Alfa Romeo','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('971','960','object','Austin-Healey','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('972','960','object','Dodge','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893534','1566893534','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('973','964','object','2-door coupé','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893737','1566893737','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('974','962','object','Mid-size luxury','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893737','1566893737','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('975','962','object','Family car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893738','1566893738','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('976','960','object','Buick','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893739','1566893739','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('977','962','object','Full-Size','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893739','1566893739','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('978','960','object','Cadillac','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893739','1566893739','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('979','964','object','4-door 4-window hardtop','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893739','1566893739','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('980','964','object','2-door hardtop','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893739','1566893739','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('981','962','object','Personal luxury car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893740','1566893740','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('982','964','object','2-door convertible','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893740','1566893740','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('983','960','object','Chevrolet','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893740','1566893740','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('984','962','object','Executive car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893741','1566893741','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('985','960','object','Ferrari','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893742','1566893742','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('986','964','object','2-door berlinetta','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893742','1566893742','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('987','960','object','Fiat','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893742','1566893742','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('988','962','object','City Car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893742','1566893742','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('989','960','object','Ford','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893742','1566893742','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('990','962','object','Muscle Car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893742','1566893742','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('991','960','object','Lamborghini','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893743','1566893743','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('992','960','object','Lincoln','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893744','1566893744','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('993','960','object','Mercedes','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893744','1566893744','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('994','964','object','roadster','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893744','1566893744','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('995','960','object','Mercury','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893745','1566893745','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('996','960','object','MG','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893745','1566893745','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('997','960','object','Peugeot','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893745','1566893745','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('998','960','object','Pontiac','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893745','1566893745','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('999','960','object','Porsche','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893746','1566893746','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1000','964','object','2-door targa top','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893746','1566893746','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1001','960','object','Renault','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893746','1566893746','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1002','964','object','5-door hatchback','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893746','1566893746','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1003','960','object','VEB Sachsenring','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893746','1566893746','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1004','960','object','Triumph','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893746','1566893746','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1005','960','object','VW','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893747','1566893747','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1006','964','object','2-door sedan','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893748','1566893748','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1007','962','object','Light commercial vehicle','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893749','1566893749','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1008','964','object','4-5-door minibus','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893749','1566893749','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1009','960','object','Aston Martin','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893749','1566893749','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1010','962','object','Grand tourer','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893749','1566893749','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1011','962','object','Full-size luxury car','/Customer Management/segments/calculated/Interest Car Class/',NULL,'1','1566893751','1566893751','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1012','960','object','BMW','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893752','1566893752','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1013','964','object','4-door cabriolet','/Customer Management/segments/calculated/Interest Body Style/',NULL,'1','1566893753','1566893753','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1014','960','object','Morris','/Customer Management/segments/calculated/Interest Manufacturer/',NULL,'1','1566893755','1566893755','0','0','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1015','1026','object','Fred-Flintstone','/Customer Management/customers/AT/1020/','0','1','1566901883','1643292624','2','0','CU','Customer',NULL,NULL,'15'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1016','1026','object','Wilma-Flintstone','/Customer Management/customers/AT/1020/','0','1','1566902001','1643291617','2','0','CU','Customer',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1017','1026','object','Pebbles-Flintstone','/Customer Management/customers/AT/1020/','0','1','1566902051','1643291281','2','0','CU','Customer',NULL,NULL,'16'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1018','1026','object','Dino-Flintstone','/Customer Management/customers/AT/1020/','0','1','1566902093','1643290226','2','0','CU','Customer',NULL,NULL,'19'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1019','1029','object','Barney-Rubble','/Customer Management/customers/DE/63741/','0','1','1566902127','1566907031','2','2','CU','Customer',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1020','1029','object','Betty-Rubble','/Customer Management/customers/DE/63741/','0','1','1566902158','1566912074','2','0','CU','Customer',NULL,NULL,'24'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1021','1029','object','Bamm-Bamm-Rubble','/Customer Management/customers/DE/63741/','0','1','1566902184','1566908278','2','0','CU','Customer',NULL,NULL,'12'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1022','1033','object','Joe-Rockhead','/Customer Management/customers/US/98109/','0','1','1566902221','1567410149','2','2','CU','Customer',NULL,NULL,'10'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1023','1034','object','Pearl-Slaghoople','/Customer Management/customers/US/94015/','0','1','1566902259','1643118632','2','1','CU','Customer',NULL,NULL,'8'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1024','837','object','Tex-Hardrock','/Customer Management/customers/AT/5020/','0','1','1566902297','1566903187','2','2','CU','Customer',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1025','1035','object','Sam-Slagheap','/Customer Management/customers/DE/13158/','0','1','1566902331','1566903188','2','2','CU','Customer',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1026','739','folder','1020','/Customer Management/customers/AT/',NULL,'1','1566902474','1566902474','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1027','838','object','AT - Wien','/Customer Management/segments/calculated/State/AT/',NULL,'1','1566902475','1566902475','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1028','703','folder','DE','/Customer Management/customers/',NULL,'1','1566902765','1566902765','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1029','1028','folder','63741','/Customer Management/customers/DE/',NULL,'1','1566902765','1566902765','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1030','832','folder','DE','/Customer Management/segments/calculated/State/',NULL,'1','1566902766','1566902766','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1031','1030','object','DE - Bayern','/Customer Management/segments/calculated/State/DE/',NULL,'1','1566902766','1566902766','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1032','703','folder','US','/Customer Management/customers/',NULL,'1','1566902874','1566902874','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1033','1032','folder','98109','/Customer Management/customers/US/',NULL,'1','1566902874','1566902874','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1034','1032','folder','94015','/Customer Management/customers/US/',NULL,'1','1566902925','1566902925','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1035','1028','folder','13158','/Customer Management/customers/DE/',NULL,'1','1566903031','1566903031','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1036','1030','object','DE - Berlin','/Customer Management/segments/calculated/State/DE/',NULL,'1','1566903031','1566903031','2','2','2','CustomerSegment',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1045','1047','object','Dino-Flinttone','/Customer Management/customers/AU/1020/','0','1','1566906643','1639403473','2','1','CU','Customer',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1046','703','folder','AU','/Customer Management/customers/',NULL,'1','1566906693','1566906693','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1047','1046','folder','1020','/Customer Management/customers/AU/',NULL,'1','1566906693','1566906693','1','2',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1048','1029','object','Barney-Rubbl','/Customer Management/customers/DE/63741/','0','1','1566906977','1566908246','2','2','CU','Customer',NULL,NULL,'6'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1073','1','folder','upload','/',NULL,'1','1566916747','1566916747','1','0',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1086','1073','folder','new','/upload/',NULL,'1','1566995185','1566995185','1','0',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1088','1086','object','Kafer-1566995226','/upload/new/','0','0','1566995226','1566995426','0','2','CAR','Car',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1092','864','object','free_shipping','/Shop/Vouchers/Free-Shipping/',NULL,'1','1566995338','1566995338','0','0','EF_OSVT','OnlineShopVoucherToken',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1093','1086','object','Cobra-1566995353','/upload/new/','0','0','1566995353','1642779611','0','1','CAR','Car',NULL,NULL,'3'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1094','1086','object','DB3-1566995468','/upload/new/','0','1','1566995468','1579775917','0','0','CAR','Car',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1095','1086','object','203-1566995526','/upload/new/',NULL,NULL,'1566995526','1566995526','0','0','CAR','Car',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1101','707','folder','--','/Customer Management/customers/--/',NULL,'1','1567080000','1567080000','1','0',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1111','865','object','com_6132','/Shop/Vouchers/Commercial-Discount/',NULL,'1','1567157538','1567157538','0','0','EF_OSVT','OnlineShopVoucherToken',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1119','1','folder','Events','/',NULL,'1','1568799358','1568799358','1','1',NULL,NULL,NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1120','1119','object','Classic Expo Salzburg','/Events/','0','1','1568799577','1568803474','1','1','EV','Event',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1121','1119','object','Auto Messe Salzburg','/Events/','0','1','1568799578','1642779847','1','1','EV','Event',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1122','1119','object','Retro Classics','/Events/','0','1','1568799579','1568803521','1','1','EV','Event',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1123','1119','object','Vienna Auto Show','/Events/','0','1','1568799580','1568803541','1','1','EV','Event',NULL,NULL,'7'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1124','1119','object','Custom Wheels Vienna','/Events/','0','1','1568799580','1568803484','1','1','EV','Event',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1125','1119','object','International Motor Show','/Events/','0','1','1568799581','1568803499','1','1','EV','Event',NULL,NULL,'5'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1126','1119','object','Thermen - Classic 2019','/Events/','0','1','1568799583','1568803530','1','1','EV','Event',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1127','1119','object','Oldtimer Expo 2019','/Events/','0','1','1568799583','1568803509','1','1','EV','Event',NULL,NULL,'4'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1157','562','folder','Orders','/Shop/','0','1','1643290009','1643290009','1','0',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1158','1157','folder','2022','/Shop/Orders/','0','1','1643290009','1643290009','1','0',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1159','1158','folder','01','/Shop/Orders/2022/','0','1','1643290009','1643290009','1','0',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1160','1159','folder','27','/Shop/Orders/2022/01/','0','1','1643290009','1643290009','1','0',NULL,NULL,NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1161','1160','object','ord_61f29d99992e7','/Shop/Orders/2022/01/27/','0','1','1643290009','1643290057','0','0','EF_OSO','OnlineShopOrder',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1162','1161','object','74_74','/Shop/Orders/2022/01/27/ord_61f29d99992e7/','0','1','1643290009','1643290009','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1163','1161','object','438_438_gift','/Shop/Orders/2022/01/27/ord_61f29d99992e7/','0','1','1643290009','1643290009','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'1'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1164','1160','object','ord_61f29e71db3cc','/Shop/Orders/2022/01/27/','0','1','1643290225','1643290332','0','0','EF_OSO','OnlineShopOrder',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1165','1164','object','262_262','/Shop/Orders/2022/01/27/ord_61f29e71db3cc/','0','1','1643290226','1643290226','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1166','1164','object','377_377','/Shop/Orders/2022/01/27/ord_61f29e71db3cc/','0','1','1643290226','1643290226','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1167','1160','object','ord_61f29f7cd4a36','/Shop/Orders/2022/01/27/','0','1','1643290492','1643290516','0','0','EF_OSO','OnlineShopOrder',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1168','1167','object','105_105','/Shop/Orders/2022/01/27/ord_61f29f7cd4a36/','0','1','1643290493','1643290493','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1169','1160','object','ord_61f2a19c2cc23','/Shop/Orders/2022/01/27/','0','1','1643291036','1643291124','0','0','EF_OSO','OnlineShopOrder',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1170','1169','object','125_125','/Shop/Orders/2022/01/27/ord_61f2a19c2cc23/','0','1','1643291036','1643291036','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1171','1160','object','ord_61f2a290b8f47','/Shop/Orders/2022/01/27/','0','1','1643291280','1643291381','0','0','EF_OSO','OnlineShopOrder',NULL,NULL,'13'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1172','1171','object','235_235','/Shop/Orders/2022/01/27/ord_61f2a290b8f47/','0','1','1643291280','1643291280','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1173','1171','object','12_12','/Shop/Orders/2022/01/27/ord_61f2a290b8f47/','0','1','1643291281','1643291281','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1174','1160','object','ord_61f2a3e0a8fe3','/Shop/Orders/2022/01/27/','0','1','1643291616','1643291842','0','0','EF_OSO','OnlineShopOrder',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1175','1174','object','316_316','/Shop/Orders/2022/01/27/ord_61f2a3e0a8fe3/','0','1','1643291616','1643291616','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1176','1174','object','54_54','/Shop/Orders/2022/01/27/ord_61f2a3e0a8fe3/','0','1','1643291616','1643291616','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1177','1160','object','ord_61f2a57dddfb5','/Shop/Orders/2022/01/27/','0','1','1643292029','1643292086','0','0','EF_OSO','OnlineShopOrder',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1178','1177','object','58_58','/Shop/Orders/2022/01/27/ord_61f2a57dddfb5/','0','1','1643292030','1643292030','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1179','1160','object','ord_61f2a6358659e','/Shop/Orders/2022/01/27/','0','1','1643292213','1643292270','0','0','EF_OSO','OnlineShopOrder',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1180','1179','object','420_420','/Shop/Orders/2022/01/27/ord_61f2a6358659e/','0','1','1643292213','1643292213','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1181','1179','object','452_452','/Shop/Orders/2022/01/27/ord_61f2a6358659e/','0','1','1643292213','1643292213','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1182','1160','object','ord_61f2a6832b14a','/Shop/Orders/2022/01/27/','0','1','1643292291','1643292334','0','0','EF_OSO','OnlineShopOrder',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1183','1182','object','70_70','/Shop/Orders/2022/01/27/ord_61f2a6832b14a/','0','1','1643292291','1643292291','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1184','1160','object','ord_61f2a6dd66b56','/Shop/Orders/2022/01/27/','0','1','1643292381','1643292487','0','0','EF_OSO','OnlineShopOrder',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1185','1184','object','161_161','/Shop/Orders/2022/01/27/ord_61f2a6dd66b56/','0','1','1643292381','1643292381','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1186','1160','object','ord_61f2a7cfd8682','/Shop/Orders/2022/01/27/','0','1','1643292623','1643292644','0','0','EF_OSO','OnlineShopOrder',NULL,NULL,'9'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1187','1186','object','139_139','/Shop/Orders/2022/01/27/ord_61f2a7cfd8682/','0','1','1643292624','1643292624','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); +INSERT INTO objects (`o_id`,`o_parentId`,`o_type`,`o_key`,`o_path`,`o_index`,`o_published`,`o_creationDate`,`o_modificationDate`,`o_userOwner`,`o_userModification`,`o_classId`,`o_className`,`o_childrenSortBy`,`o_childrenSortOrder`,`o_versionCount`) VALUES ('1188','1186','object','116_116','/Shop/Orders/2022/01/27/ord_61f2a7cfd8682/','0','1','1643292624','1643292624','0','0','EF_OSOI','OnlineShopOrderItem',NULL,NULL,'2'); diff --git a/dump/data-1-search_backend_data.sql b/dump/data-1-search_backend_data.sql index 34dc8e13..ed4b08f0 100644 --- a/dump/data-1-search_backend_data.sql +++ b/dump/data-1-search_backend_data.sql @@ -1154,65 +1154,19 @@ INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`pu INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1034','/Customer Management/customers/US/94015','object','folder','folder','1','1566902925','1566902925','1','2','ID: 1034 \nPath: /Customer Management/customers/US/94015 \n94015 Customer Management customers US',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1035','/Customer Management/customers/DE/13158','object','folder','folder','1','1566903031','1566903031','1','2','ID: 1035 \nPath: /Customer Management/customers/DE/13158 \n13158 Customer Management customers DE',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1036','/Customer Management/segments/calculated/State/DE/DE - Berlin','object','object','CustomerSegment','1','1566903031','1566903031','2','2','ID: 1036 \nPath: /Customer Management/segments/calculated/State/DE/DE - Berlin \nDE - Berlin Customer Management segments calculated State',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1037','/Shop/Orders/2019','object','folder','folder','1','1566903448','1566903448','1','0','ID: 1037 \nPath: /Shop/Orders/2019 \n2019 Shop Orders',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1038','/Shop/Orders/2019/08','object','folder','folder','1','1566903448','1566903448','1','0','ID: 1038 \nPath: /Shop/Orders/2019/08 \n08 Shop Orders 2019',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1039','/Shop/Orders/2019/08/27','object','folder','folder','1','1566903448','1566903448','1','0','ID: 1039 \nPath: /Shop/Orders/2019/08/27 \n27 Shop Orders 2019 08',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1040','/Shop/Orders/2019/08/27/ord_5d650c98c2b40','object','object','OnlineShopOrder','1','1566903448','1566906513','0','2','ID: 1040 \nPath: /Shop/Orders/2019/08/27/ord_5d650c98c2b40 \nord_5d650c98c2b40 committed shipping 5.0427 5.9 2813.5897 3291.9 2818.6324 3297.8 15% VAT 422.7949 2% Pimcore Tax 56.3727 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_16 2022989143 Betty Rubble Rudolstädter Straße 21 63741 Aschaffenburg DE betty.rubble#modern.age Rudolstaedter Strasse UnzerSDK\\Resources\\PaymentTypes\\Card { cvc *** expiryDate 12/2021 holder id s-crd-rpb3nfywev0y number 471110******0000 } s-pay-258050 s-chg-1 paymentAuthorized payment_3097299132-1~1040 unzer_amount 3297.8000000000002 unzer_currency unzer_paymentType {\\ cvc\\ \\ ***\\ expiryDate\\ 12\\/2021\\ holder\\ id\\ s-crd-rpb3nfywev0y\\ number\\ 471110******0000\\ unzer_paymentReference unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card Shop Orders 2019 08 27 ord 5d650c98c2b40',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1041','/Shop/Orders/2019/08/27/ord_5d650c98c2b40/38_38','object','object','OnlineShopOrderItem','1','1566903449','1566903449','0','0','ID: 1041 \nPath: /Shop/Orders/2019/08/27/ord_5d650c98c2b40/38_38 \n38_38 38 Austin-Healey 3000 Mk II 1 2646.1111 3095.9500 15% VAT 396.9167 2% Pimcore Tax 52.9222 Shop Orders 2019 08 27 ord 5d650c98c2b40',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1042','/Shop/Orders/2019/08/27/ord_5d650c98c2b40/405_405','object','object','OnlineShopOrderItem','1','1566903449','1566903449','0','0','ID: 1042 \nPath: /Shop/Orders/2019/08/27/ord_5d650c98c2b40/405_405 \n405_405 1440114318 Austin-Healey 3000 Mk II Head lamps 1 167.4786 195.9500 15% VAT 25.1218 2% Pimcore Tax 3.3496 Shop Orders 2019 08 27 ord 5d650c98c2b40 405',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1043','/Shop/Orders/2019/08/27/ord_5d650d2ff14fb','object','object','OnlineShopOrder','1','1566903599','1566903614','0','0','ID: 1043 \nPath: /Shop/Orders/2019/08/27/ord_5d650d2ff14fb \nord_5d650d2ff14fb committed shipping 5.0427 5.9 Cart Discount -1128.1013 -1319.8785 37603.3761 43995.95 36480.3175 42681.9715 15% VAT 5472.0476 2% Pimcore Tax 729.6064 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_17 3841357902 Betty Rubble Rudolstaedter Strasse 21 63741 Aschaffenburg DE betty.rubble#modern.age UnzerSDK\\Resources\\PaymentTypes\\Card 42681.97 { cvc *** expiryDate 12/2021 holder id s-crd-h6lwoa24zea2 number 545301******9543 } s-pay-258057 s-chg-1 paymentAuthorized payment_2474748246-1~1043 unzer_amount 42681.970000000001 unzer_currency unzer_paymentType {\\ cvc\\ \\ ***\\ expiryDate\\ 12\\/2021\\ holder\\ id\\ s-crd-h6lwoa24zea2\\ number\\ 545301******9543\\ unzer_paymentReference unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card Shop Orders 2019 08 27 ord 5d650d2ff14fb',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1044','/Shop/Orders/2019/08/27/ord_5d650d2ff14fb/280_280','object','object','OnlineShopOrderItem','1','1566903600','1566903600','0','0','ID: 1044 \nPath: /Shop/Orders/2019/08/27/ord_5d650d2ff14fb/280_280 \n280_280 280 Austin-Healey 3000 Mk II 1 37603.3761 43995.9500 15% VAT 5640.5064 2% Pimcore Tax 752.0675 Shop Orders 2019 08 27 ord 5d650d2ff14fb',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1045','/Customer Management/customers/AU/1020/Dino-Flinttone','object','object','Customer','1','1566906643','1566908226','2','2','ID: 1045 \nPath: /Customer Management/customers/AU/1020/Dino-Flinttone \nDino-Flinttone male Dino Flinttone dino#stone.aeg Floridusgasse 18 1020 Vienna AU a0e2a2c563d57df27213ede1ac4ac780 en Customer Management customers',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1045','/Customer Management/customers/AU/1020/Dino-Flinttone','object','object','Customer','1','1566906643','1639403473','2','1','ID: 1045 \nPath: /Customer Management/customers/AU/1020/Dino-Flinttone \nDino-Flinttone male Dino Flinttone dino#stone.aeg Floridusgasse 1020 Vienna a0e2a2c563d57df27213ede1ac4ac780 Customer Management customers 1020 Dino Flinttone',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1046','/Customer Management/customers/AU','object','folder','folder','1','1566906693','1566906693','1','2','ID: 1046 \nPath: /Customer Management/customers/AU \nAU Customer Management customers',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1047','/Customer Management/customers/AU/1020','object','folder','folder','1','1566906693','1566906693','1','2','ID: 1047 \nPath: /Customer Management/customers/AU/1020 \n1020 Customer Management customers AU',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1048','/Customer Management/customers/DE/63741/Barney-Rubbl','object','object','Customer','1','1566906977','1566908246','2','2','ID: 1048 \nPath: /Customer Management/customers/DE/63741/Barney-Rubbl \nBarney-Rubbl male Barney Rubbl some-other-mail#ice.age Rudolstaedter Strasse 21 63741 Aschaffenburg DE 7cce53cf90577442771720a370c3c723 en Customer Management customers',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1051','/Shop/Orders/2019/08/27/ord_5d651f669cde7','object','object','OnlineShopOrder','1','1566908262','1566908277','0','0','ID: 1051 \nPath: /Shop/Orders/2019/08/27/ord_5d651f669cde7 \nord_5d651f669cde7 committed shipping 5.0427 5.9 Cart Discount -2233.0218 -2612.6355 74434.0598 87087.85 72206.0807 84481.1145 15% VAT 10830.9121 2% Pimcore Tax 1444.1217 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_18 3589884274 Bamm-Bamm Rubble Rudolstädter Straße 21 63741 Aschaffenburg DE bamm#modern.age UnzerSDK\\Resources\\PaymentTypes\\Card 84481.11 { cvc *** expiryDate 03/2020 holder id s-crd-lk061jguw0jg number 471110******0000 } s-pay-258312 s-chg-1 paymentAuthorized payment_3231807339-1~1051 unzer_amount 84481.110000000001 unzer_currency unzer_paymentType {\\ cvc\\ \\ ***\\ expiryDate\\ 03\\/2020\\ holder\\ id\\ s-crd-lk061jguw0jg\\ number\\ 471110******0000\\ unzer_paymentReference unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card Shop Orders 2019 08 27 ord 5d651f669cde7',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1052','/Shop/Orders/2019/08/27/ord_5d651f669cde7/70_70','object','object','OnlineShopOrderItem','1','1566908262','1566908262','0','0','ID: 1052 \nPath: /Shop/Orders/2019/08/27/ord_5d651f669cde7/70_70 \n70_70 70 Chevrolet Corvette 1 73073.4615 85495.9500 15% VAT 10961.0192 2% Pimcore Tax 1461.4692 Shop Orders 2019 08 27 ord 5d651f669cde7',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1053','/Shop/Orders/2019/08/27/ord_5d651f669cde7/406_406','object','object','OnlineShopOrderItem','1','1566908263','1566908263','0','0','ID: 1053 \nPath: /Shop/Orders/2019/08/27/ord_5d651f669cde7/406_406 \n406_406 3437180724 Austin-Healey 3000 Mk II Windscreens 1 765.7692 895.9500 15% VAT 114.8654 2% Pimcore Tax 15.3154 Shop Orders 2019 08 27 ord 5d651f669cde7 406',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1054','/Shop/Orders/2019/08/27/ord_5d651f669cde7/384_384','object','object','OnlineShopOrderItem','1','1566908263','1566908263','0','0','ID: 1054 \nPath: /Shop/Orders/2019/08/27/ord_5d651f669cde7/384_384 \n384_384 4014459541 Alfa Romeo Spider Tail Lights 1 594.8291 695.9500 15% VAT 89.2244 2% Pimcore Tax 11.8966 Shop Orders 2019 08 27 ord 5d651f669cde7 384',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1055','/Shop/Orders/2019/08/27/ord_5d6521e8206d5','object','object','OnlineShopOrder','1','1566908904','1566908999','0','0','ID: 1055 \nPath: /Shop/Orders/2019/08/27/ord_5d6521e8206d5 \nord_5d6521e8206d5 committed shipping 5.0427 5.9 Cart Discount -1637.7989 -1916.2247 54593.2968 63874.1575 52960.5406 61963.8328 15% VAT 7944.0812 2% Pimcore Tax 1059.2110 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_19 534227246 Joe Rockhead 1502 Pratt Avenue 98109 Seattle AT joe.rockhead#middle.age UnzerSDK\\Resources\\PaymentTypes\\Sofort 61963.83 { id s-sft-ikpeyojcqdfa } s-pay-258315 s-chg-1 paymentAuthorized payment_143996510-1~1055 unzer_amount 61963.830000000002 unzer_currency unzer_paymentType {\\ id\\ \\ s-sft-ikpeyojcqdfa\\ unzer_paymentReference unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Sofort Shop Orders 2019 08 27 ord 5d6521e8206d5',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1056','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/263_263','object','object','OnlineShopOrderItem','1','1566908904','1566908904','0','0','ID: 1056 \nPath: /Shop/Orders/2019/08/27/ord_5d6521e8206d5/263_263 \n263_263 263 Alfa Romeo 1900 1 4791.9295 5606.5575 15% VAT 718.7894 2% Pimcore Tax 95.8386 7 product discount Shop Orders 2019 08 27 ord 5d6521e8206d5',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1057','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/388_388','object','object','OnlineShopOrderItem','1','1566908904','1566908904','0','0','ID: 1057 \nPath: /Shop/Orders/2019/08/27/ord_5d6521e8206d5/388_388 \n388_388 3874588350 Alfa Romeo 1900 Head lamps 2 2215.2991 2591.9000 15% VAT 332.2949 2% Pimcore Tax 44.3060 Shop Orders 2019 08 27 ord 5d6521e8206d5 388',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1058','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/124_124','object','object','OnlineShopOrderItem','1','1566908904','1566908904','0','0','ID: 1058 \nPath: /Shop/Orders/2019/08/27/ord_5d6521e8206d5/124_124 \n124_124 124 Lamborghini Miura 1 11364.0598 13295.9500 15% VAT 1704.6090 2% Pimcore Tax 227.2812 Shop Orders 2019 08 27 ord 5d6521e8206d5',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1059','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/378_378','object','object','OnlineShopOrderItem','1','1566908904','1566908904','0','0','ID: 1059 \nPath: /Shop/Orders/2019/08/27/ord_5d6521e8206d5/378_378 \n378_378 1634310769 Alfa Romeo 1900 Rims Simple 1 82.0085 95.9500 15% VAT 12.3013 2% Pimcore Tax 1.6402 Shop Orders 2019 08 27 ord 5d6521e8206d5 378',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1060','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/377_377','object','object','OnlineShopOrderItem','1','1566908904','1566908904','0','0','ID: 1060 \nPath: /Shop/Orders/2019/08/27/ord_5d6521e8206d5/377_377 \n377_377 4057368544 Alfa Romeo 1900 Rims Spoked Wheel 1 851.2393 995.9500 15% VAT 127.6859 2% Pimcore Tax 17.0248 Shop Orders 2019 08 27 ord 5d6521e8206d5 377',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1061','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/311_311','object','object','OnlineShopOrderItem','1','1566908905','1566908905','0','0','ID: 1061 \nPath: /Shop/Orders/2019/08/27/ord_5d6521e8206d5/311_311 \n311_311 311 BMW 507 1 5039.2735 5895.9500 15% VAT 755.8910 2% Pimcore Tax 100.7855 Shop Orders 2019 08 27 ord 5d6521e8206d5',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1062','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/104_104','object','object','OnlineShopOrderItem','1','1566908905','1566908905','0','0','ID: 1062 \nPath: /Shop/Orders/2019/08/27/ord_5d6521e8206d5/104_104 \n104_104 104 Fiat 500 1 24782.8632 28995.9500 15% VAT 3717.4295 2% Pimcore Tax 495.6573 Shop Orders 2019 08 27 ord 5d6521e8206d5',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1063','/Shop/Orders/2019/08/27/ord_5d6521e8206d5/259_259','object','object','OnlineShopOrderItem','1','1566908905','1566908905','0','0','ID: 1063 \nPath: /Shop/Orders/2019/08/27/ord_5d6521e8206d5/259_259 \n259_259 259 Chevrolet Impala 1 5466.6239 6395.9500 15% VAT 819.9936 2% Pimcore Tax 109.3325 Shop Orders 2019 08 27 ord 5d6521e8206d5',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1065','/Shop/Orders/2019/08/27/ord_5d652278a41a5','object','object','OnlineShopOrder','1','1566909048','1566909088','0','0','ID: 1065 \nPath: /Shop/Orders/2019/08/27/ord_5d652278a41a5 \nord_5d652278a41a5 committed shipping 5.0427 5.9 680.2991 795.95 685.3418 801.85 15% VAT 102.8013 2% Pimcore Tax 13.7069 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_20 527939789 Joe Rockhead 1502 Pratt Avenue 98109 Seattle AT joe.rockhead#middle.age UnzerSDK\\Resources\\PaymentTypes\\Paypal { id s-ppl-nqlk41s0uhbg } s-pay-258317 s-chg-1 paymentAuthorized payment_2418972515-1~1065 unzer_amount 801.85000000000002 unzer_currency unzer_paymentType {\\ id\\ \\ s-ppl-nqlk41s0uhbg\\ unzer_paymentReference unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Paypal Shop Orders 2019 08 27 ord 5d652278a41a5',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1066','/Shop/Orders/2019/08/27/ord_5d652278a41a5/415_415','object','object','OnlineShopOrderItem','1','1566909048','1566909048','0','0','ID: 1066 \nPath: /Shop/Orders/2019/08/27/ord_5d652278a41a5/415_415 \n415_415 1288525775 BMW 507 Rims 1 680.2991 795.9500 15% VAT 102.0449 2% Pimcore Tax 13.6060 Shop Orders 2019 08 27 ord 5d652278a41a5 415',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1067','/Shop/Orders/2019/08/27/ord_5d6522ee11854','object','object','OnlineShopOrder','1','1566909166','1566909181','0','0','ID: 1067 \nPath: /Shop/Orders/2019/08/27/ord_5d6522ee11854 \nord_5d6522ee11854 committed shipping 5.0427 5.9 6061.4529 7091.9 6066.4956 7097.8 15% VAT 909.9744 2% Pimcore Tax 121.3300 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_21 603906025 Joe Rockhead 1502 Pratt Avenue 98109 Seattle AT joe.rockhead#middle.age UnzerSDK\\Resources\\PaymentTypes\\Card { cvc *** expiryDate 03/2030 holder id s-crd-duogqc6m4kns number 545301******9543 } s-pay-258318 s-chg-1 paymentAuthorized payment_830246481-1~1067 unzer_amount 7097.8000000000002 unzer_currency unzer_paymentType {\\ cvc\\ \\ ***\\ expiryDate\\ 03\\/2030\\ holder\\ id\\ s-crd-duogqc6m4kns\\ number\\ 545301******9543\\ unzer_paymentReference unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card Shop Orders 2019 08 27 ord 5d6522ee11854',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1068','/Shop/Orders/2019/08/27/ord_5d6522ee11854/24_24','object','object','OnlineShopOrderItem','1','1566909166','1566909166','0','0','ID: 1068 \nPath: /Shop/Orders/2019/08/27/ord_5d6522ee11854/24_24 \n24_24 24 Jaguar XK140 1 4782.8632 5595.9500 15% VAT 717.4295 2% Pimcore Tax 95.6573 Shop Orders 2019 08 27 ord 5d6522ee11854',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1069','/Shop/Orders/2019/08/27/ord_5d6522ee11854/477_477','object','object','OnlineShopOrderItem','1','1566909166','1566909166','0','0','ID: 1069 \nPath: /Shop/Orders/2019/08/27/ord_5d6522ee11854/477_477 \n477_477 4103704933 Jaguar XK140 Rims 1 1278.5897 1495.9500 15% VAT 191.7885 2% Pimcore Tax 25.5718 Shop Orders 2019 08 27 ord 5d6522ee11854 477',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1070','/Shop/Orders/2019/08/27/ord_5d652e4a3c6a0','object','object','OnlineShopOrder','1','1566912074','1566912089','0','0','ID: 1070 \nPath: /Shop/Orders/2019/08/27/ord_5d652e4a3c6a0 \nord_5d652e4a3c6a0 committed Shipping 170.9402 200 4270.0427 4995.95 4440.9829 5195.95 15% VAT 666.1474 2% Pimcore Tax 88.8197 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_22 4285317549 Betty Rubble Rudolstädter Straße 21 63741 Aschaffenburg DE betty.rubble#modern.age UnzerSDK\\Resources\\PaymentTypes\\Card { cvc *** expiryDate 03/2030 holder id s-crd-dk2ppqeipqv2 number 471110******0000 } s-pay-258332 s-chg-1 paymentAuthorized payment_2223932252-1~1070 unzer_amount 5195.9499999999998 unzer_currency unzer_paymentType {\\ cvc\\ \\ ***\\ expiryDate\\ 03\\/2030\\ holder\\ id\\ s-crd-dk2ppqeipqv2\\ number\\ 471110******0000\\ unzer_paymentReference unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card Shop Orders 2019 08 27 ord 5d652e4a3c6a0',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1071','/Shop/Orders/2019/08/27/ord_5d652e4a3c6a0/20_20','object','object','OnlineShopOrderItem','1','1566912074','1566912074','0','0','ID: 1071 \nPath: /Shop/Orders/2019/08/27/ord_5d652e4a3c6a0/20_20 \n20_20 20 Jaguar MK2 1 4270.0427 4995.9500 15% VAT 640.5064 2% Pimcore Tax 85.4009 Shop Orders 2019 08 27 ord 5d652e4a3c6a0',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1073','/upload','object','folder','folder','1','1566916747','1566916747','1','0','ID: 1073 \nPath: /upload \nupload',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1083','/Shop/Orders/2019/08/28','object','folder','folder','1','1566992802','1566992802','1','0','ID: 1083 \nPath: /Shop/Orders/2019/08/28 \n28 Shop Orders 2019 08',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1084','/Shop/Orders/2019/08/28/ord_5d6669a20f76c','object','object','OnlineShopOrder','1','1566992802','1566992983','0','0','ID: 1084 \nPath: /Shop/Orders/2019/08/28/ord_5d6669a20f76c \nord_5d6669a20f76c committed Shipping 170.9402 200 11364.0598 13295.95 11535 13495.95 15% VAT 1730.2500 2% Pimcore Tax 230.7000 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_24 3477634120 Pebbles Flintstone Floridusgasse 18 1020 Vienna AT pebbles.flintstone#stone.age UnzerSDK\\Resources\\PaymentTypes\\Paypal { id s-ppl-098xvvpsqxpe } s-pay-259933 s-chg-1 s-pay-259929 cancelled payment_510745625-1~1084 Payment by cancelStartedOrderPayment unzer_amount 0 unzer_currency unzer_paymentType {\\ id\\ \\ s-sft-y60ps6zdymje\\ unzer_paymentReference s-sft-y60ps6zdymje s-pay-259931 payment_510745625-2~1084 s-sft-cozw3ydhepgg\\ s-sft-cozw3ydhepgg s-pay-259932 payment_510745625-3~1084 s-ppl-ytmmcck0pak2\\ s-ppl-ytmmcck0pak2 paymentAuthorized payment_510745625-4~1084 13495.950000000001 s-ppl-098xvvpsqxpe\\ unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Paypal Shop Orders 2019 08 28 ord 5d6669a20f76c',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1085','/Shop/Orders/2019/08/28/ord_5d6669a20f76c/124_124','object','object','OnlineShopOrderItem','1','1566992802','1566995601','0','2','ID: 1085 \nPath: /Shop/Orders/2019/08/28/ord_5d6669a20f76c/124_124 \n124_124 committed 124 Lamborghini Miura 1 11364.0598 13295.95 15% VAT 1704.6090 2% Pimcore Tax 227.2812 Shop Orders 2019 08 28 ord 5d6669a20f76c',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1086','/upload/new','object','folder','folder','1','1566995185','1566995185','1','0','ID: 1086 \nPath: /upload/new \nnew upload',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1088','/upload/new/Kafer-1566995226','object','object','Car','0','1566995226','1566995426','0','2','ID: 1088 \nPath: /upload/new/Kafer-1566995226 \nKafer-1566995226 Käfer Special Edition Family car not completed actual-car upload new Kafer 1566995226',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1089','/Shop/Orders/2019/08/28/ord_5d6673898d7b0','object','object','OnlineShopOrder','1','1566995337','1566995350','0','0','ID: 1089 \nPath: /Shop/Orders/2019/08/28/ord_5d6673898d7b0 \nord_5d6673898d7b0 committed Shipping 341.8803 400 Cart Discount -2333.1256 -2729.757 77770.8547 90991.9 75779.6094 88662.143 15% VAT 11366.9415 2% Pimcore Tax 1515.5921 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_25 3841826486 Pebbles Flintstone Floridusgasse 18 1020 Vienna AT pebbles.flintstone#stone.age UnzerSDK\\Resources\\PaymentTypes\\Card 88662.14 { cvc *** expiryDate 03/2033 holder id s-crd-uxtweibtv9zw number 471110******0000 } s-pay-259950 s-chg-1 paymentAuthorized payment_891573860-1~1089 unzer_amount 88662.139999999999 unzer_currency unzer_paymentType {\\ cvc\\ \\ ***\\ expiryDate\\ 03\\/2033\\ holder\\ id\\ s-crd-uxtweibtv9zw\\ number\\ 471110******0000\\ unzer_paymentReference unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card Shop Orders 2019 08 28 ord 5d6673898d7b0',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1090','/Shop/Orders/2019/08/28/ord_5d6673898d7b0/235_235','object','object','OnlineShopOrderItem','1','1566995337','1566995337','0','0','ID: 1090 \nPath: /Shop/Orders/2019/08/28/ord_5d6673898d7b0/235_235 \n235_235 235 VW Type 2 1 18970.8974 22195.9500 15% VAT 2845.6346 2% Pimcore Tax 379.4179 Shop Orders 2019 08 28 ord 5d6673898d7b0',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1091','/Shop/Orders/2019/08/28/ord_5d6673898d7b0/12_12','object','object','OnlineShopOrderItem','1','1566995337','1566995338','0','0','ID: 1091 \nPath: /Shop/Orders/2019/08/28/ord_5d6673898d7b0/12_12 \n12_12 12 Jaguar E-Type 1 58799.9573 68795.9500 15% VAT 8819.9936 2% Pimcore Tax 1175.9991 Shop Orders 2019 08 28 ord 5d6673898d7b0',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1092','/Shop/Vouchers/Free-Shipping/free_shipping','object','object','OnlineShopVoucherToken','1','1566995338','1566995338','0','0','ID: 1092 \nPath: /Shop/Vouchers/Free-Shipping/free_shipping \nfree_shipping 64 FREE_SHIPPING Shop Vouchers Free Shipping free shipping',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1093','/upload/new/Cobra-1566995353','object','object','Car','0','1566995353','1566995400','0','2','ID: 1093 \nPath: /upload/new/Cobra-1566995353 \nCobra-1566995353 Cobra very special edition sports car not completed actual-car upload new 1566995353',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1093','/upload/new/Cobra-1566995353','object','object','Car','0','1566995353','1642779611','0','1','ID: 1093 \nPath: /upload/new/Cobra-1566995353 \nCobra-1566995353 Cobra very special edition sports car not completed not completed not completed actual-car upload new Cobra 1566995353',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1094','/upload/new/DB3-1566995468','object','object','Car','1','1566995468','1579775917','0','0','ID: 1094 \nPath: /upload/new/DB3-1566995468 \nDB3-1566995468 DB3 British legacy sports car not completed upload new 1566995468',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1095','/upload/new/203-1566995526','object','object','Car','0','1566995526','1566995526','0','0','ID: 1095 \nPath: /upload/new/203-1566995526 \n203-1566995526 203 French classic Family car not completed upload new 1566995526',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1101','/Customer Management/customers/--/--','object','folder','folder','1','1567080000','1567080000','1','0','ID: 1101 \nPath: /Customer Management/customers/--/-- \n-- Customer Management customers ',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1102','/Shop/Orders/2019/08/29','object','folder','folder','1','1567085058','1567085058','1','0','ID: 1102 \nPath: /Shop/Orders/2019/08/29 \n29 Shop Orders 2019 08',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1103','/Shop/Orders/2019/08/29/ord_5d67d202490ea','object','object','OnlineShopOrder','1','1567085058','1567085107','0','0','ID: 1103 \nPath: /Shop/Orders/2019/08/29/ord_5d67d202490ea \nord_5d67d202490ea committed Shipping 170.9402 200 4611.9231 5395.95 4782.8633 5595.95 15% VAT 717.4295 2% Pimcore Tax 95.6573 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_26 1337307695 Pebbles Flintstone Floridusgasse 18 1020 Vienna AT pebbles.flintstone#stone.age UnzerSDK\\Resources\\PaymentTypes\\Paypal { email p*************r#h**********e id s-ppl-5lxdjx7sxobc } s-pay-260327 s-chg-1 paymentAuthorized payment_3515759803-1~1103 unzer_amount 5595.9499999999998 unzer_currency unzer_paymentType {\\ email\\ \\ p*************r#h**********e\\ id\\ s-ppl-5lxdjx7sxobc\\ unzer_paymentReference unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Paypal Shop Orders 2019 08 29 ord 5d67d202490ea',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1104','/Shop/Orders/2019/08/29/ord_5d67d202490ea/115_115','object','object','OnlineShopOrderItem','1','1567085058','1567085058','0','0','ID: 1104 \nPath: /Shop/Orders/2019/08/29/ord_5d67d202490ea/115_115 \n115_115 115 Ford Mustang 1 4611.9231 5395.9500 15% VAT 691.7885 2% Pimcore Tax 92.2385 Shop Orders 2019 08 29 ord 5d67d202490ea',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1106','/Shop/Orders/2019/08/30','object','folder','folder','1','1567155535','1567155535','1','0','ID: 1106 \nPath: /Shop/Orders/2019/08/30 \n30 Shop Orders 2019 08',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1107','/Shop/Orders/2019/08/30/ord_5d68e54f7945f','object','object','OnlineShopOrder','1','1567155535','1567155596','0','0','ID: 1107 \nPath: /Shop/Orders/2019/08/30/ord_5d68e54f7945f \nord_5d68e54f7945f committed Shipping 0 7688.8462 8995.95 15% VAT 1153.3269 2% Pimcore Tax 153.7769 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_27 3132511100 Pebbles Flintstone Floridusgasse 18 1020 Vienna AT pebbles.flintstone#stone.age UnzerSDK\\Resources\\PaymentTypes\\Paypal { email p*************r#h**********e id s-ppl-7rosnqhn9amu } s-pay-260875 s-chg-1 paymentAuthorized payment_1016219286-1~1107 unzer_amount 8995.9500000000007 unzer_currency unzer_paymentType {\\ email\\ \\ p*************r#h**********e\\ id\\ s-ppl-7rosnqhn9amu\\ unzer_paymentReference unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Paypal Shop Orders 2019 08 30 ord 5d68e54f7945f',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1108','/Shop/Orders/2019/08/30/ord_5d68e54f7945f/97_97','object','object','OnlineShopOrderItem','1','1567155535','1567155536','0','0','ID: 1108 \nPath: /Shop/Orders/2019/08/30/ord_5d68e54f7945f/97_97 \n97_97 97 Ferrari Testarossa 1 7688.8462 8995.9500 15% VAT 1153.3269 2% Pimcore Tax 153.7769 Shop Orders 2019 08 30 ord 5d68e54f7945f',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1109','/Shop/Orders/2019/08/30/ord_5d68ed2127f75','object','object','OnlineShopOrder','1','1567157537','1567158999','0','0','ID: 1109 \nPath: /Shop/Orders/2019/08/30/ord_5d68ed2127f75 \nord_5d68ed2127f75 committed Shipping 170.9402 200 Voucher Discount Commercial Cars -189.709 -221.9595 18970.8974 22195.95 18952.1286 22173.9905 15% VAT 2842.8193 2% Pimcore Tax 379.0425 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_28 4052156262 Pebbles Flintstone Floridusgasse 18 1020 Vienna AT pebbles.flintstone#stone.age UnzerSDK\\Resources\\PaymentTypes\\Paypal 22173.99 { email p*************r#h**********e id s-ppl-kot6mjewxigq } s-pay-260906 s-chg-1 s-pay-260895 cancelled payment_465809047-1~1109 Payment by cancelStartedOrderPayment unzer_amount 0 unzer_currency unzer_paymentType {\\ id\\ \\ s-ppl-ccdwzfwqkgha\\ unzer_paymentReference s-ppl-ccdwzfwqkgha paymentAuthorized payment_465809047-2~1109 22173.990000000002 email\\ p*************r#h**********e\\ s-ppl-kot6mjewxigq\\ unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Paypal Shop Orders 2019 08 30 ord 5d68ed2127f75',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1110','/Shop/Orders/2019/08/30/ord_5d68ed2127f75/235_235','object','object','OnlineShopOrderItem','1','1567157538','1567157538','0','0','ID: 1110 \nPath: /Shop/Orders/2019/08/30/ord_5d68ed2127f75/235_235 \n235_235 235 VW Type 2 1 18970.8974 22195.9500 15% VAT 2845.6346 2% Pimcore Tax 379.4179 Shop Orders 2019 08 30 ord 5d68ed2127f75',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1111','/Shop/Vouchers/Commercial-Discount/com_6132','object','object','OnlineShopVoucherToken','1','1567157538','1567157538','0','0','ID: 1111 \nPath: /Shop/Vouchers/Commercial-Discount/com_6132 \ncom_6132 65 Shop Vouchers Commercial Discount com 6132',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1112','/Shop/Orders/2019/08/30/ord_5d690dccf28a3','object','object','OnlineShopOrder','1','1567165900','1567165916','0','0','ID: 1112 \nPath: /Shop/Orders/2019/08/30/ord_5d690dccf28a3 \nord_5d690dccf28a3 committed Shipping 8.547 10 1159.4509 1356.5575 1167.9979 1366.5575 15% VAT 175.1997 2% Pimcore Tax 23.3599 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\SessionCart_sesscart_5d690d9c874a0 786326029 Wilma Flintstone Floridusgasse 18 1020 Vienna AT wilma.flintstone#stone.age UnzerSDK\\Resources\\PaymentTypes\\Card 1366.55 { cvc *** expiryDate 02/2021 holder id s-crd-1uywhyadzz8w number 545301******9543 } s-pay-260976 s-chg-1 paymentAuthorized payment_2591044087-1~1112 unzer_amount unzer_currency unzer_paymentType {\\ cvc\\ \\ ***\\ expiryDate\\ 02\\/2021\\ holder\\ id\\ s-crd-1uywhyadzz8w\\ number\\ 545301******9543\\ unzer_paymentReference unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Card Shop Orders 2019 08 30 ord 5d690dccf28a3',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1113','/Shop/Orders/2019/08/30/ord_5d690dccf28a3/381_381','object','object','OnlineShopOrderItem','1','1567165901','1567165901','0','0','ID: 1113 \nPath: /Shop/Orders/2019/08/30/ord_5d690dccf28a3/381_381 \n381_381 2670542362 Alfa Romeo Giulietta Steering Wheels 1 1159.4509 1356.5575 15% VAT 173.9176 2% Pimcore Tax 23.1890 7 product discount Shop Orders 2019 08 30 ord 5d690dccf28a3 381',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1117','/Shop/Orders/2019/08/30/ord_5d691be60e116','object','object','OnlineShopOrder','1','1567169510','1567169581','0','0','ID: 1117 \nPath: /Shop/Orders/2019/08/30/ord_5d691be60e116 \nord_5d691be60e116 committed Shipping 170.9402 200 Cart Discount -838.3577 -980.8785 27945.2564 32695.95 27277.8389 31915.0715 15% VAT 4091.6758 2% Pimcore Tax 545.5567 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_29 1233282869 Pebbles Flintstone Floridusgasse 18 1020 Vienna AT pebbles.flintstone#stone.age UnzerSDK\\Resources\\PaymentTypes\\Paypal 31915.07 { email p*************r#h**********e id s-ppl-ys3pt5mp30ga } s-pay-261019 s-chg-1 paymentAuthorized payment_764241336-1~1117 unzer_amount unzer_currency unzer_paymentType {\\ email\\ \\ p*************r#h**********e\\ id\\ s-ppl-ys3pt5mp30ga\\ unzer_paymentReference unzer_paymentMethod UnzerSDK\\\\Resources\\\\PaymentTypes\\\\Paypal Shop Orders 2019 08 30 ord 5d691be60e116',''); -INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1118','/Shop/Orders/2019/08/30/ord_5d691be60e116/105_105','object','object','OnlineShopOrderItem','1','1567169510','1567169510','0','0','ID: 1118 \nPath: /Shop/Orders/2019/08/30/ord_5d691be60e116/105_105 \n105_105 105 Fiat 500 1 27945.2564 32695.9500 15% VAT 4191.7885 2% Pimcore Tax 558.9051 Shop Orders 2019 08 30 ord 5d691be60e116',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1119','/Events','object','folder','folder','1','1568799358','1568799358','1','1','ID: 1119 \nPath: /Events \nEvents',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1120','/Events/Classic Expo Salzburg','object','object','Event','1','1568799577','1568803474','1','1','ID: 1120 \nPath: /Events/Classic Expo Salzburg \nClassic Expo Salzburg Klassische Die Vintage-Ära in der Automobilwelt war eine Zeit des Übergangsn. Das Auto startete 1919 noch als Rarität und endete 1930 auf dem Weg zur Allgegenwart. Tatsächlich die Automobilproduktion am Ende dieses Zeitraums erst den 1950er Jahren wieder vergleichbar. In vergangenen bauten meisten Industrieländer landesweite Straßensysteme so dass Fähigkeit unbefestigte Straßen zu befahren gegen nicht mehr im Vordergrund Autodesigns stand. The vintage era the automotive world was a time of transition. car started off as still something rarity and ended up well on way towards ubiquity. fact automobile production at end this period not matched again until 1950s. intervening years most industrialized countries built nationwide road systems with result that ability to negotiate unpaved roads no longer prime consideration design. Retro 1970 Messezentrum GmbH Austria John Doe +43-6776-000000 john.doe#mail.com Events',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1121','/Events/Auto Messe Salzburg','object','object','Event','1','1568799578','1568802187','1','1','ID: 1121 \nPath: /Events/Auto Messe Salzburg \nAuto Messe Salzburg 19 Internationale Oldtimermesse. Ein Oldtimer ist im weitesten Sinne ein altes Automobil und engeren von Autoenthusiasten Sammlern es aus der Zeit 1919 bis 1930. Solche Enthusiasten haben Kategorisierungsschemata für das Alter Autos die Unterscheidungen erzwingen zwischen antiken Oldtimern so weiter. Die Einstufungskriterien variieren aber innerhalb eines Landes wird Konsens häufig großen Autoclubs gewahrt beispielsweise dem Vintage Sports-Car Club (VSCC) in Großbritannien. Fair International vintage car fair. A car is the most general sense an old automobile and narrower senses of enthusiasts collectors it a from period to Such have categorization schemes for ages cars that enforce distinctions between antique classic on. The classification criteria vary but consensus within any country often maintained by major clubs example UK. Trade Show 1950 Messezentrum GmbH Austria John Doe +43-6776-000000 john.doe#mail.com Events',''); @@ -1222,3 +1176,35 @@ INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`pu INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1125','/Events/International Motor Show','object','object','Event','1','1568799581','1568803499','1','1','ID: 1125 \nPath: /Events/International Motor Show \nInternational Motor Show Internationale Automobil Ausstellung Die Vintage-Ära in der Automobilwelt war eine Zeit des Übergangsn. Das Auto startete 1919 noch als Rarität und endete 1930 auf dem Weg zur Allgegenwart. Tatsächlich die Automobilproduktion am Ende dieses Zeitraums erst den 1950er Jahren wieder vergleichbar. In vergangenen bauten meisten Industrieländer landesweite Straßensysteme so dass Fähigkeit unbefestigte Straßen zu befahren gegen nicht mehr im Vordergrund Autodesigns stand. The vintage era the automotive world was a time of transition. car started off as still something rarity and ended up well on way towards ubiquity. fact automobile production at end this period not matched again until 1950s. intervening years most industrialized countries built nationwide road systems with result that ability to negotiate unpaved roads no longer prime consideration design. Retro Trade Congress Center Messe Frankfurt Germany John Doe +43-6776-000000 john.doe#mail.com Events',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1126','/Events/Thermen - Classic 2019','object','object','Event','1','1568799583','1568803530','1','1','ID: 1126 \nPath: /Events/Thermen - Classic 2019 \nThermen - Classic 2019 Die Vintage-Ära in der Automobilwelt war eine Zeit des Übergangsn. Das Auto startete 1919 noch als Rarität und endete 1930 auf dem Weg zur Allgegenwart. Tatsächlich die Automobilproduktion am Ende dieses Zeitraums erst den 1950er Jahren wieder vergleichbar. In vergangenen bauten meisten Industrieländer landesweite Straßensysteme so dass Fähigkeit unbefestigte Straßen zu befahren gegen nicht mehr im Vordergrund Autodesigns stand. The vintage era the automotive world was a time of transition. car started off as still something rarity and ended up well on way towards ubiquity. fact automobile production at end this period not matched again until 1950s. intervening years most industrialized countries built nationwide road systems with result that ability to negotiate unpaved roads no longer prime consideration design. Trade Show Retro 1960 Tyrol South Graubünden Austria. John Doe +43-6776-000000 john.doe#mail.com Events',''); INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1127','/Events/Oldtimer Expo 2019','object','object','Event','1','1568799583','1568803509','1','1','ID: 1127 \nPath: /Events/Oldtimer Expo 2019 \nOldtimer Expo 2019 Die Vintage-Ära in der Automobilwelt war eine Zeit des Übergangsn. Das Auto startete 1919 noch als Rarität und endete 1930 auf dem Weg zur Allgegenwart. Tatsächlich die Automobilproduktion am Ende dieses Zeitraums erst den 1950er Jahren wieder vergleichbar. In vergangenen bauten meisten Industrieländer landesweite Straßensysteme so dass Fähigkeit unbefestigte Straßen zu befahren gegen nicht mehr im Vordergrund Autodesigns stand. The vintage era the automotive world was a time of transition. car started off as still something rarity and ended up well on way towards ubiquity. fact automobile production at end this period not matched again until 1950s. intervening years most industrialized countries built nationwide road systems with result that ability to negotiate unpaved roads no longer prime consideration autom 1970 Trade Show International Messe Erfurt GmbH Germany John Doe +43-6776-000000 john.doe#mail.com Events',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1157','/Shop/Orders','object','folder','folder','1','1643290009','1643290009','1','0','ID: 1157 \nPath: /Shop/Orders \nOrders Shop Orders',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1158','/Shop/Orders/2022','object','folder','folder','1','1643290009','1643290009','1','0','ID: 1158 \nPath: /Shop/Orders/2022 \n2022 Shop Orders 2022',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1159','/Shop/Orders/2022/01','object','folder','folder','1','1643290009','1643290009','1','0','ID: 1159 \nPath: /Shop/Orders/2022/01 \nShop Orders 2022',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1160','/Shop/Orders/2022/01/27','object','folder','folder','1','1643290009','1643290009','1','0','ID: 1160 \nPath: /Shop/Orders/2022/01/27 \nShop Orders 2022',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1161','/Shop/Orders/2022/01/27/ord_61f29d99992e7','object','object','OnlineShopOrder','1','1643290009','1643290057','0','0','ID: 1161 \nPath: /Shop/Orders/2022/01/27/ord_61f29d99992e7 \nord_61f29d99992e7 ord_61f29d99992e7 committed Shipping 170.9402 200 13073.4615 15295.95 13244.4017 15495.95 15% VAT 15% 1986.6602 Pimcore Tax 264.8880 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_34 1467148606 Dino Flintstone Floridusgasse 1020 Vienna dino#stone.age Dino Flintstone Floridusgasse 1020 Vienna paypal 9CT34444M22539158 ZPHG5HTTA7KM2 sb-n9hfj12488071#personal.example.com John Doe 9CT34444M22539158 committed payment_4003786380-1~1161 transactionId 6FH331797B7658923 Shop Orders 2022 ord 61f29d99992e7','os_tracked:1 '); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1162','/Shop/Orders/2022/01/27/ord_61f29d99992e7/74_74','object','object','OnlineShopOrderItem','1','1643290009','1643290009','0','0','ID: 1162 \nPath: /Shop/Orders/2022/01/27/ord_61f29d99992e7/74_74 \n74_74 Citroen 2CV 13073.4615 15295.95 15% VAT 15% 1961.0192 Pimcore Tax 261.4692 Shop Orders 2022 ord 61f29d99992e7',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1163','/Shop/Orders/2022/01/27/ord_61f29d99992e7/438_438_gift','object','object','OnlineShopOrderItem','1','1643290009','1643290009','0','0','ID: 1163 \nPath: /Shop/Orders/2022/01/27/ord_61f29d99992e7/438_438_gift \n438_438_gift 4868592 Citroen 2CV Head lamps 15% VAT 15% 25.1218 Pimcore Tax 3.3496 Shop Orders 2022 ord 61f29d99992e7 438 438 gift',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1164','/Shop/Orders/2022/01/27/ord_61f29e71db3cc','object','object','OnlineShopOrder','1','1643290225','1643290332','0','0','ID: 1164 \nPath: /Shop/Orders/2022/01/27/ord_61f29e71db3cc \nord_61f29e71db3cc ord_61f29e71db3cc committed Shipping 179.4872 210 5072.9552 5935.3575 5252.4424 6145.3575 15% VAT 15% 787.8664 Pimcore Tax 105.0488 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_35 984125660 Dino Flintstone Floridusgasse 1020 Vienna dino#stone.age Dino Flintstone Floridusgasse 1020 Vienna paypal 6P219778U2879173E 8K7SZCFPV9FNN dino.flintstone#stone.age Dino Flintstone 6P219778U2879173E committed payment_2570671871-1~1164 transactionId 7T4647780G5719056 Shop Orders 2022 ord 61f29e71db3cc','os_tracked:1 '); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1165','/Shop/Orders/2022/01/27/ord_61f29e71db3cc/262_262','object','object','OnlineShopOrderItem','1','1643290226','1643290226','0','0','ID: 1165 \nPath: /Shop/Orders/2022/01/27/ord_61f29e71db3cc/262_262 \n262_262 262 Alfa Romeo 1900 1667.9979 1951.5575 15% VAT 15% 250.1997 Pimcore Tax 33.3600 15% product discount Shop Orders 2022 ord 61f29e71db3cc 262 262',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1166','/Shop/Orders/2022/01/27/ord_61f29e71db3cc/377_377','object','object','OnlineShopOrderItem','1','1643290226','1643290226','0','0','ID: 1166 \nPath: /Shop/Orders/2022/01/27/ord_61f29e71db3cc/377_377 \n377_377 4057368544 Alfa Romeo 1900 Rims Spoked Wheel 3404.9573 3983.8 15% VAT 15% 510.7436 Pimcore Tax 68.0991 Shop Orders 2022 ord 61f29e71db3cc 377 377',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1167','/Shop/Orders/2022/01/27/ord_61f29f7cd4a36','object','object','OnlineShopOrder','1','1643290492','1643290516','0','0','ID: 1167 \nPath: /Shop/Orders/2022/01/27/ord_61f29f7cd4a36 \nord_61f29f7cd4a36 ord_61f29f7cd4a36 committed Shipping 170.9402 200 Cart Discount -838.359 -980.88 27945.2564 32695.95 27277.8376 31915.07 15% VAT 15% 4091.6757 Pimcore Tax 545.5567 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_30 1128054455 Pebbles Flintstone Floridusgasse 1020 Vienna pebbles.flintstone#stone.age Pebbles Flintstone Floridusgasse 1020 Vienna paypal 6JJ73082Y6212093P ZPHG5HTTA7KM2 sb-n9hfj12488071#personal.example.com John Doe 6JJ73082Y6212093P committed payment_4207962121-1~1167 transactionId 5EJ606792W119123U Shop Orders 2022 ord 61f29f7cd4a36','os_tracked:1 '); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1168','/Shop/Orders/2022/01/27/ord_61f29f7cd4a36/105_105','object','object','OnlineShopOrderItem','1','1643290493','1643290493','0','0','ID: 1168 \nPath: /Shop/Orders/2022/01/27/ord_61f29f7cd4a36/105_105 \n105_105 105 Fiat 500 27945.2564 32695.95 15% VAT 15% 4191.7885 Pimcore Tax 558.9051 Shop Orders 2022 ord 61f29f7cd4a36 105 105',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1169','/Shop/Orders/2022/01/27/ord_61f2a19c2cc23','object','object','OnlineShopOrder','1','1643291036','1643291124','0','0','ID: 1169 \nPath: /Shop/Orders/2022/01/27/ord_61f2a19c2cc23 \nord_61f2a19c2cc23 ord_61f2a19c2cc23 committed Shipping 170.9402 200 3671.7521 4295.95 3842.6923 4495.95 15% VAT 15% 576.4038 Pimcore Tax 76.8538 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_36 362684800 Pebbles Flintstone Floridusgasse 1020 Vienna pebbles.flintstone#stone.age Pebbles Flintstone Floridusgasse 1020 Vienna paypal 2EM467546N444340L ZPHG5HTTA7KM2 sb-n9hfj12488071#personal.example.com John Doe 2EM467546N444340L committed payment_689139465-1~1169 transactionId 2UR98580U0727211W Shop Orders 2022 ord 61f2a19c2cc23','os_tracked:1 '); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1170','/Shop/Orders/2022/01/27/ord_61f2a19c2cc23/125_125','object','object','OnlineShopOrderItem','1','1643291036','1643291036','0','0','ID: 1170 \nPath: /Shop/Orders/2022/01/27/ord_61f2a19c2cc23/125_125 \n125_125 125 Lamborghini Miura 3671.7521 4295.95 15% VAT 15% 550.7628 Pimcore Tax 73.4350 Shop Orders 2022 ord 61f2a19c2cc23 125 125',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1171','/Shop/Orders/2022/01/27/ord_61f2a290b8f47','object','object','OnlineShopOrder','1','1643291280','1643291381','0','0','ID: 1171 \nPath: /Shop/Orders/2022/01/27/ord_61f2a290b8f47 \nord_61f2a290b8f47 ord_61f2a290b8f47 committed Shipping 341.8803 400 Cart Discount -2333.1282 -2729.76 77770.8547 90991.9 75779.6068 88662.14 15% VAT 15% 11366.9411 Pimcore Tax 1515.5920 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_37 630271347 Pebbles Flintstone Floridusgasse 1020 Vienna pebbles.flintstone#stone.age Pebbles Flintstone Floridusgasse 1020 Vienna paypal 25G06452DD907934U E5MVCRWZCLVGC pebbles.flintstone#stone.age Pebbles Flintstone cancelled payment_157424135-1~1171 Payment cancelled cancelStartedOrderPayment 25G06452DD907934U committed payment_157424135-2~1171 transactionId 7NE073394U978643D Shop Orders 2022 ord 61f2a290b8f47','os_tracked:1 '); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1172','/Shop/Orders/2022/01/27/ord_61f2a290b8f47/235_235','object','object','OnlineShopOrderItem','1','1643291280','1643291280','0','0','ID: 1172 \nPath: /Shop/Orders/2022/01/27/ord_61f2a290b8f47/235_235 \n235_235 235 Type 18970.8974 22195.95 15% VAT 15% 2845.6346 Pimcore Tax 379.4179 Shop Orders 2022 ord 61f2a290b8f47 235 235',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1173','/Shop/Orders/2022/01/27/ord_61f2a290b8f47/12_12','object','object','OnlineShopOrderItem','1','1643291281','1643291281','0','0','ID: 1173 \nPath: /Shop/Orders/2022/01/27/ord_61f2a290b8f47/12_12 \n12_12 Jaguar E-Type 58799.9573 68795.95 15% VAT 15% 8819.9936 Pimcore Tax 1175.9991 Shop Orders 2022 ord 61f2a290b8f47',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1174','/Shop/Orders/2022/01/27/ord_61f2a3e0a8fe3','object','object','OnlineShopOrder','1','1643291616','1643291842','0','0','ID: 1174 \nPath: /Shop/Orders/2022/01/27/ord_61f2a3e0a8fe3 \nord_61f2a3e0a8fe3 ord_61f2a3e0a8fe3 committed Shipping 341.8803 400 Cart Discount -928 -1085.76 30933.2478 36191.9 30347.1281 35506.14 15% VAT 15% 4552.0693 Pimcore Tax 606.9426 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_38 2514998388 Wilma Flintstone Floridusgasse 1020 Vienna wilma.flintstone#stone.age Wilma Flintstone Floridusgasse 1020 Vienna paypal 0PW47704US056523W KM74HEUDXRKW8 wilma.flintstone#stone.age Wilma Flintstone 0PW47704US056523W committed payment_2097775836-1~1174 transactionId 5EN41106U0891135X Shop Orders 2022 ord 61f2a3e0a8fe3','os_tracked:1 '); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1175','/Shop/Orders/2022/01/27/ord_61f2a3e0a8fe3/316_316','object','object','OnlineShopOrderItem','1','1643291616','1643291616','0','0','ID: 1175 \nPath: /Shop/Orders/2022/01/27/ord_61f2a3e0a8fe3/316_316 \n316_316 316 BMW 335 20765.7692 24295.95 15% VAT 15% 3114.8654 Pimcore Tax 415.3154 Shop Orders 2022 ord 61f2a3e0a8fe3 316 316',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1176','/Shop/Orders/2022/01/27/ord_61f2a3e0a8fe3/54_54','object','object','OnlineShopOrderItem','1','1643291616','1643291616','0','0','ID: 1176 \nPath: /Shop/Orders/2022/01/27/ord_61f2a3e0a8fe3/54_54 \n54_54 Cadillac Coupe Ville 10167.4786 11895.95 15% VAT 15% 1525.1218 Pimcore Tax 203.3496 Shop Orders 2022 ord 61f2a3e0a8fe3',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1177','/Shop/Orders/2022/01/27/ord_61f2a57dddfb5','object','object','OnlineShopOrder','1','1643292029','1643292086','0','0','ID: 1177 \nPath: /Shop/Orders/2022/01/27/ord_61f2a57dddfb5 \nord_61f2a57dddfb5 ord_61f2a57dddfb5 committed Shipping 170.9402 200 2902.5214 3395.95 3073.4616 3595.95 15% VAT 15% 461.0192 Pimcore Tax 61.4692 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_39 2693273551 Fred Flintstone Floridusgasse 1020 Vienna fred.flintstone#stone.age Fred Flintstone Floridusgasse 1020 Vienna paypal 2WD483862M3756428 9JD48T3MNQAHE fred.flintstone#stone.age Fred Flintstone 2WD483862M3756428 committed payment_1272845173-1~1177 transactionId 36602535NW5366458 Shop Orders 2022 ord 61f2a57dddfb5','os_tracked:1 '); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1178','/Shop/Orders/2022/01/27/ord_61f2a57dddfb5/58_58','object','object','OnlineShopOrderItem','1','1643292030','1643292030','0','0','ID: 1178 \nPath: /Shop/Orders/2022/01/27/ord_61f2a57dddfb5/58_58 \n58_58 Cadillac Eldorado 2902.5214 3395.95 15% VAT 15% 435.3782 Pimcore Tax 58.0504 Shop Orders 2022 ord 61f2a57dddfb5',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1179','/Shop/Orders/2022/01/27/ord_61f2a6358659e','object','object','OnlineShopOrder','1','1643292213','1643292270','0','0','ID: 1179 \nPath: /Shop/Orders/2022/01/27/ord_61f2a6358659e \nord_61f2a6358659e ord_61f2a6358659e committed Shipping 8.547 2807.7051 3285.015 2816.2521 3295.015 15% VAT 15% 422.4378 Pimcore Tax 56.3250 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_40 812368101 Fred Flintstone Floridusgasse 1020 Vienna fred.flintstone#stone.age Fred Flintstone Floridusgasse 1020 Vienna paypal 47K11814GM581932X CQKZHP8X94AXG fred.flintstone#stone.age Fred Flintstone 47K11814GM581932X committed payment_2441237792-1~1179 transactionId 9HK67422MN1070549 Shop Orders 2022 ord 61f2a6358659e','os_tracked:1 '); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1180','/Shop/Orders/2022/01/27/ord_61f2a6358659e/420_420','object','object','OnlineShopOrderItem','1','1643292213','1643292213','0','0','ID: 1180 \nPath: /Shop/Orders/2022/01/27/ord_61f2a6358659e/420_420 \n420_420 394981507 Buick Special Steering Wheels 1447.1068 1693.115 15% VAT 15% 217.0660 Pimcore Tax 28.9421 15% product discount Shop Orders 2022 ord 61f2a6358659e 420 420',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1181','/Shop/Orders/2022/01/27/ord_61f2a6358659e/452_452','object','object','OnlineShopOrderItem','1','1643292213','1643292213','0','0','ID: 1181 \nPath: /Shop/Orders/2022/01/27/ord_61f2a6358659e/452_452 \n452_452 3066365800 Fiat 500 Windscreens 1360.5983 1591.9 15% VAT 15% 204.0897 Pimcore Tax 27.2120 Shop Orders 2022 ord 61f2a6358659e 452 452',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1182','/Shop/Orders/2022/01/27/ord_61f2a6832b14a','object','object','OnlineShopOrder','1','1643292291','1643292334','0','0','ID: 1182 \nPath: /Shop/Orders/2022/01/27/ord_61f2a6832b14a \nord_61f2a6832b14a ord_61f2a6832b14a committed Shipping 170.9402 200 Cart Discount -2192.2051 -2564.88 73073.4615 85495.95 71052.1966 83131.07 15% VAT 15% 10657.8294 Pimcore Tax 1421.0439 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_41 2870280191 Fred Flintstone Floridusgasse 1020 Vienna fred.flintstone#stone.age Fred Flintstone Floridusgasse 1020 Vienna paypal 6R3238856S495354E XQADWG5K37MDG fred.flintstone#stone.age Fred Flintstone 6R3238856S495354E committed payment_3597057789-1~1182 transactionId 29M94837MJ593863J Shop Orders 2022 ord 61f2a6832b14a','os_tracked:1 '); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1183','/Shop/Orders/2022/01/27/ord_61f2a6832b14a/70_70','object','object','OnlineShopOrderItem','1','1643292291','1643292291','0','0','ID: 1183 \nPath: /Shop/Orders/2022/01/27/ord_61f2a6832b14a/70_70 \n70_70 Chevrolet Corvette 73073.4615 85495.95 15% VAT 15% 10961.0192 Pimcore Tax 1461.4692 Shop Orders 2022 ord 61f2a6832b14a',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1184','/Shop/Orders/2022/01/27/ord_61f2a6dd66b56','object','object','OnlineShopOrder','1','1643292381','1643292487','0','0','ID: 1184 \nPath: /Shop/Orders/2022/01/27/ord_61f2a6dd66b56 \nord_61f2a6dd66b56 ord_61f2a6dd66b56 committed Shipping 170.9402 200 Cart Discount -1656.3077 -1937.88 55210.2137 64595.95 53724.8462 62858.07 15% VAT 15% 8058.7269 Pimcore Tax 1074.4969 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_42 279398329 Fred Flintstone Floridusgasse 1020 Vienna fred.flintstone#stone.age Fred Flintstone Floridusgasse 1020 Vienna paypal 8KG85242WB406050N ZPHG5HTTA7KM2 sb-n9hfj12488071#personal.example.com John Doe 8KG85242WB406050N committed payment_1887415702-1~1184 transactionId 76754657A50461941 Shop Orders 2022 ord 61f2a6dd66b56','os_tracked:1 '); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1185','/Shop/Orders/2022/01/27/ord_61f2a6dd66b56/161_161','object','object','OnlineShopOrderItem','1','1643292381','1643292381','0','0','ID: 1185 \nPath: /Shop/Orders/2022/01/27/ord_61f2a6dd66b56/161_161 \n161_161 161 Peugeot 403 55210.2137 64595.95 15% VAT 15% 8281.5321 Pimcore Tax 1104.2043 Shop Orders 2022 ord 61f2a6dd66b56 161 161',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1186','/Shop/Orders/2022/01/27/ord_61f2a7cfd8682','object','object','OnlineShopOrder','1','1643292623','1643292644','0','0','ID: 1186 \nPath: /Shop/Orders/2022/01/27/ord_61f2a7cfd8682 \nord_61f2a7cfd8682 ord_61f2a7cfd8682 committed Shipping 341.8803 400 Cart Discount -3158.7692 -3695.76 105292.2222 123191.9 102475.3333 119896.14 15% VAT 15% 15371.3001 Pimcore Tax 2049.5066 EUR Pimcore\\Bundle\\EcommerceFrameworkBundle\\CartManager\\Cart_43 791073012 Fred Flintstone Floridusgasse 1020 Vienna fred.flintstone#stone.age Fred Flintstone Floridusgasse 1020 Vienna paypal 6B458608LD1779402 ZPHG5HTTA7KM2 sb-n9hfj12488071#personal.example.com John Doe 6B458608LD1779402 committed payment_2447578645-1~1186 transactionId 6AS25639NB322905M Shop Orders 2022 ord 61f2a7cfd8682','os_tracked:1 '); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1187','/Shop/Orders/2022/01/27/ord_61f2a7cfd8682/139_139','object','object','OnlineShopOrderItem','1','1643292624','1643292624','0','0','ID: 1187 \nPath: /Shop/Orders/2022/01/27/ord_61f2a7cfd8682/139_139 \n139_139 139 Mercedes-Benz 190 68714.4872 80395.95 15% VAT 15% 10307.1731 Pimcore Tax 1374.2897 Shop Orders 2022 ord 61f2a7cfd8682 139 139',''); +INSERT INTO search_backend_data (`id`,`fullpath`,`maintype`,`type`,`subtype`,`published`,`creationDate`,`modificationDate`,`userOwner`,`userModification`,`data`,`properties`) VALUES ('1188','/Shop/Orders/2022/01/27/ord_61f2a7cfd8682/116_116','object','object','OnlineShopOrderItem','1','1643292624','1643292624','0','0','ID: 1188 \nPath: /Shop/Orders/2022/01/27/ord_61f2a7cfd8682/116_116 \n116_116 116 Ford Mustang 36577.735 42795.95 15% VAT 15% 5486.6603 Pimcore Tax 731.5547 Shop Orders 2022 ord 61f2a7cfd8682 116 116',''); diff --git a/dump/data-1-translations_admin.sql b/dump/data-1-translations_admin.sql index 62eb84e6..1162ed9c 100644 --- a/dump/data-1-translations_admin.sql +++ b/dump/data-1-translations_admin.sql @@ -666,22 +666,22 @@ INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modifica INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Data','sv_FI','','1565622987','1565622987'); INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Data','tr','','1565622987','1565622987'); INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Data','zh_Hans','','1565622987','1565622987'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','cs','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','de','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','en','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','es','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','fa','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','fr','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','it','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','nl','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','pl','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','pt_BR','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','ru','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','sk','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','sv','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','sv_FI','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','tr','','1562835404','1562835404'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Unzer Data','zh_Hans','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','cs','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','de','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','en','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','es','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','fa','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','fr','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','it','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','nl','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','pl','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','pt_BR','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','ru','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','sk','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','sv','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','sv_FI','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','tr','','1562835404','1562835404'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional PayPal Data','zh_Hans','','1562835404','1562835404'); INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Options','cs','','1562158534','1562158534'); INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Options','de','','1562158534','1562158534'); INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Additional Options','en','','1562158534','1562158534'); @@ -17133,22 +17133,22 @@ INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modifica INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProvider','sv_FI','','1566483487','1566483487'); INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProvider','tr','','1566483487','1566483487'); INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProvider','zh_Hans','','1566483487','1566483487'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','cs','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','de','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','en','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','es','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','fa','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','fr','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','it','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','nl','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','pl','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','pt_BR','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','ru','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','sk','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','sv','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','sv_FI','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','tr','','1562835405','1562835405'); -INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderUnzer','zh_Hans','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','cs','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','de','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','en','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','es','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','fa','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','fr','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','it','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','nl','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','pl','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','pt_BR','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','ru','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','sk','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','sv','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','sv_FI','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','tr','','1562835405','1562835405'); +INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('PaymentProviderPayPalSmartButton','zh_Hans','','1562835405','1562835405'); INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Permissions','cs','','1566808711','1566808711'); INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Permissions','de','','1566808711','1566808711'); INSERT INTO translations_admin (`key`,`language`,`text`,`creationDate`,`modificationDate`) VALUES ('Permissions','en','','1566808711','1566808711'); From b89b3309936d16f46c6e6f957b539207a1350f86 Mon Sep 17 00:00:00 2001 From: dpahuja Date: Fri, 4 Feb 2022 15:32:13 +0100 Subject: [PATCH 8/8] review changes --- templates/payment/checkout_payment.html.twig | 17 +++-------------- var/classes/fieldcollections/PaymentInfo.php | 12 ++++++------ 2 files changed, 9 insertions(+), 20 deletions(-) diff --git a/templates/payment/checkout_payment.html.twig b/templates/payment/checkout_payment.html.twig index 168ef931..2bc5085e 100644 --- a/templates/payment/checkout_payment.html.twig +++ b/templates/payment/checkout_payment.html.twig @@ -86,13 +86,6 @@
- - Sofort - - - - -
always fails
EPS @@ -103,16 +96,12 @@
- Paypal + Paypal/Sofort
- - - - - - + +
user:sb-ibtmr12488159@personal.example.com
password: Lmt_^3A/Test Credentialshere in the sandbox
diff --git a/var/classes/fieldcollections/PaymentInfo.php b/var/classes/fieldcollections/PaymentInfo.php index 9289e5b9..4e4e9223 100644 --- a/var/classes/fieldcollections/PaymentInfo.php +++ b/var/classes/fieldcollections/PaymentInfo.php @@ -9,8 +9,8 @@ - internalPaymentId [input] - message [textarea] - providerData [textarea] - - provider_unzer_amount [input] - - provider_unzer_PaymentType [textarea] + - provider_paypal_amount [input] + - provider_paypal_PaymentType [textarea] */ @@ -275,10 +275,10 @@ 7 => Pimcore\Model\DataObject\ClassDefinition\Layout\Fieldset::__set_state(array( 'fieldtype' => 'fieldset', - 'name' => 'additionalDataUnzer', + 'name' => 'additionalDataPaypal', 'type' => NULL, 'region' => '', - 'title' => 'Additional Unzer Data', + 'title' => 'Additional Paypal Data', 'width' => NULL, 'height' => NULL, 'collapsible' => true, @@ -299,7 +299,7 @@ 'regex' => '', 'unique' => NULL, 'showCharCount' => NULL, - 'name' => 'provider_unzer_amount', + 'name' => 'provider_paypal_amount', 'title' => 'Amount', 'tooltip' => '', 'mandatory' => false, @@ -326,7 +326,7 @@ 'regex' => '', 'unique' => NULL, 'showCharCount' => NULL, - 'name' => 'provider_unzer_PaymentType', + 'name' => 'provider_paypal_PaymentType', 'title' => 'Payment Type', 'tooltip' => '', 'mandatory' => false,