Version Notes
Shopgate Modul
Download this release
Release Info
Developer | Stephan Recknagel |
Extension | shopgate_module |
Version | 2.9.45 |
Comparing to | |
See all releases |
Code changes from version 2.9.44 to 2.9.45
- app/code/community/Shopgate/Framework/Helper/Sales.php +1 -0
- app/code/community/Shopgate/Framework/Helper/Shipping.php +1 -1
- app/code/community/Shopgate/Framework/Model/Export/Product/Csv.php +1 -1
- app/code/community/Shopgate/Framework/Model/Observer.php +33 -11
- app/code/community/Shopgate/Framework/Model/Payment/Abstract/AbstractPayol.php +1 -2
- app/code/community/Shopgate/Framework/Model/Payment/Payone/Abstract.php +4 -5
- app/code/community/Shopgate/Framework/Model/Payment/Pp/Wspp.php +1 -2
- app/code/community/Shopgate/Framework/Model/Payment/Ppal/Plus.php +1 -2
- app/code/community/Shopgate/Framework/Model/Payment/Simple/Paypal/Express.php +1 -2
- app/code/community/Shopgate/Framework/Model/Shopgate/Plugin.php +33 -30
- app/code/community/Shopgate/Framework/changelog.txt +8 -0
- app/code/community/Shopgate/Framework/etc/config.xml +1 -1
- package.xml +4 -4
app/code/community/Shopgate/Framework/Helper/Sales.php
CHANGED
@@ -151,6 +151,7 @@ class Shopgate_Framework_Helper_Sales extends Mage_Core_Helper_Abstract
|
|
151 |
if ($_rate instanceof Mage_Shipping_Model_Rate_Result_Error
|
152 |
|| strpos($_rate->getCode(), 'error') !== false
|
153 |
|| $_rate->getCarrierInstance() == false
|
|
|
154 |
) {
|
155 |
/* skip errors so they dont get processed as valid shipping rates without any cost */
|
156 |
ShopgateLogger::getInstance()->log(
|
151 |
if ($_rate instanceof Mage_Shipping_Model_Rate_Result_Error
|
152 |
|| strpos($_rate->getCode(), 'error') !== false
|
153 |
|| $_rate->getCarrierInstance() == false
|
154 |
+
|| $_rate->getCode() === 'shopgate_fix'
|
155 |
) {
|
156 |
/* skip errors so they dont get processed as valid shipping rates without any cost */
|
157 |
ShopgateLogger::getInstance()->log(
|
app/code/community/Shopgate/Framework/Helper/Shipping.php
CHANGED
@@ -103,7 +103,7 @@ class Shopgate_Framework_Helper_Shipping
|
|
103 |
*
|
104 |
* @see https://shopgate.atlassian.net/browse/MAGENTO-880
|
105 |
*/
|
106 |
-
if (
|
107 |
$quote->setData('totals_collected_flag', false);
|
108 |
$quote->collectTotals();
|
109 |
}
|
103 |
*
|
104 |
* @see https://shopgate.atlassian.net/browse/MAGENTO-880
|
105 |
*/
|
106 |
+
if (!Mage::helper('shopgate/config')->getIsMagentoVersionLower15()) {
|
107 |
$quote->setData('totals_collected_flag', false);
|
108 |
$quote->collectTotals();
|
109 |
}
|
app/code/community/Shopgate/Framework/Model/Export/Product/Csv.php
CHANGED
@@ -794,7 +794,7 @@ class Shopgate_Framework_Model_Export_Product_Csv extends Shopgate_Framework_Mod
|
|
794 |
$options = $product->getOptions();
|
795 |
$num_inputs = 1;
|
796 |
$num_options = 1;
|
797 |
-
$pricesInclTaxes = Mage::helper("tax")->
|
798 |
|
799 |
foreach ($options as $option) {
|
800 |
/* @var $option Mage_Catalog_Model_Product_Option */
|
794 |
$options = $product->getOptions();
|
795 |
$num_inputs = 1;
|
796 |
$num_options = 1;
|
797 |
+
$pricesInclTaxes = Mage::helper("tax")->priceIncludesTax($this->_getConfig()->getStoreViewId());
|
798 |
|
799 |
foreach ($options as $option) {
|
800 |
/* @var $option Mage_Catalog_Model_Product_Option */
|
app/code/community/Shopgate/Framework/Model/Observer.php
CHANGED
@@ -51,6 +51,7 @@ class Shopgate_Framework_Model_Observer
|
|
51 |
*
|
52 |
* @see http://wiki.shopgate.com/Merchant_API_add_order_delivery_note
|
53 |
* @see http://wiki.shopgate.com/Merchant_API_set_order_shipping_completed
|
|
|
54 |
* @param Varien_Event_Observer $observer
|
55 |
*/
|
56 |
public function setShippingStatus(Varien_Event_Observer $observer)
|
@@ -74,12 +75,14 @@ class Shopgate_Framework_Model_Observer
|
|
74 |
|
75 |
if (!Mage::getStoreConfig(Shopgate_Framework_Model_Config::XML_PATH_SHOPGATE_ACTIVE, $order->getStore())) {
|
76 |
ShopgateLogger::getInstance()->log('> Plugin is not active, return!', ShopgateLogger::LOGTYPE_DEBUG);
|
|
|
77 |
return;
|
78 |
}
|
79 |
|
80 |
$this->_initMerchantApi($order->getStoreId());
|
81 |
if (!$this->_config->isValidConfig()) {
|
82 |
ShopgateLogger::getInstance()->log('> Plugin has no valid config data!', ShopgateLogger::LOGTYPE_DEBUG);
|
|
|
83 |
return;
|
84 |
}
|
85 |
|
@@ -236,6 +239,7 @@ class Shopgate_Framework_Model_Observer
|
|
236 |
*
|
237 |
* @param $shopgateOrder Shopgate_Framework_Model_Shopgate_Order
|
238 |
* @param $order Mage_Sales_Model_Order
|
|
|
239 |
* @return bool
|
240 |
*/
|
241 |
protected function _completeShipping($shopgateOrder, $order)
|
@@ -265,6 +269,7 @@ class Shopgate_Framework_Model_Observer
|
|
265 |
"> (#{$orderNumber}) This order is not shipped completly",
|
266 |
ShopgateLogger::LOGTYPE_DEBUG
|
267 |
);
|
|
|
268 |
return true;
|
269 |
}
|
270 |
|
@@ -302,6 +307,7 @@ class Shopgate_Framework_Model_Observer
|
|
302 |
"(#{$orderNumber}) SMA-Error on set shipping complete! Message: {$e->getCode()} - {$e->getMessage()}",
|
303 |
ShopgateLogger::LOGTYPE_ERROR
|
304 |
);
|
|
|
305 |
return false;
|
306 |
}
|
307 |
} catch (Exception $e) {
|
@@ -318,11 +324,13 @@ class Shopgate_Framework_Model_Observer
|
|
318 |
"(#{$orderNumber}) Unkwon error on set shipping complete! Message: {$e->getCode()} - {$e->getMessage()}",
|
319 |
ShopgateLogger::LOGTYPE_ERROR
|
320 |
);
|
|
|
321 |
return false;
|
322 |
}
|
323 |
|
324 |
$shopgateOrder->setIsSentToShopgate(true);
|
325 |
$shopgateOrder->save();
|
|
|
326 |
return true;
|
327 |
}
|
328 |
|
@@ -334,6 +342,7 @@ class Shopgate_Framework_Model_Observer
|
|
334 |
* Uses the cancle_order action in ShopgateMerchantApi
|
335 |
*
|
336 |
* @see http://wiki.shopgate.com/Merchant_API_cancel_order
|
|
|
337 |
* @param Varien_Event_Observer $observer
|
338 |
*
|
339 |
* @return $this
|
@@ -387,9 +396,10 @@ class Shopgate_Framework_Model_Observer
|
|
387 |
);
|
388 |
}
|
389 |
|
390 |
-
if ($orderItem->getProductType() != Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE
|
391 |
-
$orderItem->getQtyCanceled() + $orderItem->getQtyRefunded() > 0
|
392 |
-
!$orderItem->getIsVirtual()
|
|
|
393 |
) {
|
394 |
|
395 |
$cancellationItems[] = array(
|
@@ -407,6 +417,7 @@ class Shopgate_Framework_Model_Observer
|
|
407 |
'[SHOPGATE] Notice: Credit memo was not sent to Shopgate because no product quantity was affected.'
|
408 |
);
|
409 |
$order->save();
|
|
|
410 |
return true;
|
411 |
}
|
412 |
|
@@ -516,6 +527,7 @@ class Shopgate_Framework_Model_Observer
|
|
516 |
/**
|
517 |
* @param $items
|
518 |
* @param $productID
|
|
|
519 |
* @return bool
|
520 |
*/
|
521 |
protected function _findItemByProductId($items, $productID)
|
@@ -548,6 +560,7 @@ class Shopgate_Framework_Model_Observer
|
|
548 |
/**
|
549 |
* @param $items
|
550 |
* @param $id
|
|
|
551 |
* @return bool
|
552 |
*/
|
553 |
protected function findItemByOriginal($items, $id)
|
@@ -566,6 +579,7 @@ class Shopgate_Framework_Model_Observer
|
|
566 |
"Product ID (#{$id}) Json parse error! Message: {$e->getCode()} - {$e->getMessage()}",
|
567 |
ShopgateLogger::LOGTYPE_ERROR
|
568 |
);
|
|
|
569 |
return false;
|
570 |
}
|
571 |
|
@@ -573,6 +587,7 @@ class Shopgate_Framework_Model_Observer
|
|
573 |
return $item;
|
574 |
}
|
575 |
}
|
|
|
576 |
return false;
|
577 |
}
|
578 |
|
@@ -588,11 +603,15 @@ class Shopgate_Framework_Model_Observer
|
|
588 |
$this->_initConfig();
|
589 |
if (!$this->_config->applyCartRulesToCart() || Mage::registry('shopgate_disable_sales_rules')) {
|
590 |
$collection = $observer->getEvent()->getCollection();
|
591 |
-
if ($collection instanceof Mage_SalesRule_Model_Resource_Rule_Collection
|
592 |
-
$collection
|
593 |
-
|
594 |
-
|
595 |
-
|
|
|
|
|
|
|
|
|
596 |
}
|
597 |
}
|
598 |
}
|
@@ -607,8 +626,8 @@ class Shopgate_Framework_Model_Observer
|
|
607 |
$eventResourceModule = explode('/', $observer->getResourceName());
|
608 |
$eventResourceModule = count($eventResourceModule) ? $eventResourceModule[0] : 'default';
|
609 |
/* Prevent collection loading on admin to avoid an error while using flat tables */
|
610 |
-
if ((Mage::app()->getStore()->isAdmin() && !$eventResourceModule == 'cron')
|
611 |
-
(!Mage::helper('shopgate')->isShopgateApiRequest() && !$eventResourceModule == 'cron')
|
612 |
) {
|
613 |
return;
|
614 |
}
|
@@ -658,7 +677,8 @@ class Shopgate_Framework_Model_Observer
|
|
658 |
|
659 |
if (Mage::helper('shopgate/config')->isOAuthShopAlreadyRegistered($settings['shop_number'], $storeViewId)) {
|
660 |
Mage::throwException(
|
661 |
-
'For the current storeView with id #' . $storeViewId
|
|
|
662 |
);
|
663 |
}
|
664 |
|
@@ -718,6 +738,7 @@ class Shopgate_Framework_Model_Observer
|
|
718 |
* Adds extra parameters for developers
|
719 |
*
|
720 |
* @param Varien_Event_Observer $observer
|
|
|
721 |
* @return $this
|
722 |
*/
|
723 |
public function addDevSystemConfig(Varien_Event_Observer $observer)
|
@@ -816,6 +837,7 @@ class Shopgate_Framework_Model_Observer
|
|
816 |
* because PayOne plugin is not setting it correctly.
|
817 |
*
|
818 |
* @param Varien_Event_Observer $event
|
|
|
819 |
* @return $this
|
820 |
* @throws Exception
|
821 |
*/
|
51 |
*
|
52 |
* @see http://wiki.shopgate.com/Merchant_API_add_order_delivery_note
|
53 |
* @see http://wiki.shopgate.com/Merchant_API_set_order_shipping_completed
|
54 |
+
*
|
55 |
* @param Varien_Event_Observer $observer
|
56 |
*/
|
57 |
public function setShippingStatus(Varien_Event_Observer $observer)
|
75 |
|
76 |
if (!Mage::getStoreConfig(Shopgate_Framework_Model_Config::XML_PATH_SHOPGATE_ACTIVE, $order->getStore())) {
|
77 |
ShopgateLogger::getInstance()->log('> Plugin is not active, return!', ShopgateLogger::LOGTYPE_DEBUG);
|
78 |
+
|
79 |
return;
|
80 |
}
|
81 |
|
82 |
$this->_initMerchantApi($order->getStoreId());
|
83 |
if (!$this->_config->isValidConfig()) {
|
84 |
ShopgateLogger::getInstance()->log('> Plugin has no valid config data!', ShopgateLogger::LOGTYPE_DEBUG);
|
85 |
+
|
86 |
return;
|
87 |
}
|
88 |
|
239 |
*
|
240 |
* @param $shopgateOrder Shopgate_Framework_Model_Shopgate_Order
|
241 |
* @param $order Mage_Sales_Model_Order
|
242 |
+
*
|
243 |
* @return bool
|
244 |
*/
|
245 |
protected function _completeShipping($shopgateOrder, $order)
|
269 |
"> (#{$orderNumber}) This order is not shipped completly",
|
270 |
ShopgateLogger::LOGTYPE_DEBUG
|
271 |
);
|
272 |
+
|
273 |
return true;
|
274 |
}
|
275 |
|
307 |
"(#{$orderNumber}) SMA-Error on set shipping complete! Message: {$e->getCode()} - {$e->getMessage()}",
|
308 |
ShopgateLogger::LOGTYPE_ERROR
|
309 |
);
|
310 |
+
|
311 |
return false;
|
312 |
}
|
313 |
} catch (Exception $e) {
|
324 |
"(#{$orderNumber}) Unkwon error on set shipping complete! Message: {$e->getCode()} - {$e->getMessage()}",
|
325 |
ShopgateLogger::LOGTYPE_ERROR
|
326 |
);
|
327 |
+
|
328 |
return false;
|
329 |
}
|
330 |
|
331 |
$shopgateOrder->setIsSentToShopgate(true);
|
332 |
$shopgateOrder->save();
|
333 |
+
|
334 |
return true;
|
335 |
}
|
336 |
|
342 |
* Uses the cancle_order action in ShopgateMerchantApi
|
343 |
*
|
344 |
* @see http://wiki.shopgate.com/Merchant_API_cancel_order
|
345 |
+
*
|
346 |
* @param Varien_Event_Observer $observer
|
347 |
*
|
348 |
* @return $this
|
396 |
);
|
397 |
}
|
398 |
|
399 |
+
if ($orderItem->getProductType() != Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE
|
400 |
+
&& $orderItem->getQtyCanceled() + $orderItem->getQtyRefunded() > 0
|
401 |
+
&& !$orderItem->getIsVirtual()
|
402 |
+
&& $rdItem
|
403 |
) {
|
404 |
|
405 |
$cancellationItems[] = array(
|
417 |
'[SHOPGATE] Notice: Credit memo was not sent to Shopgate because no product quantity was affected.'
|
418 |
);
|
419 |
$order->save();
|
420 |
+
|
421 |
return true;
|
422 |
}
|
423 |
|
527 |
/**
|
528 |
* @param $items
|
529 |
* @param $productID
|
530 |
+
*
|
531 |
* @return bool
|
532 |
*/
|
533 |
protected function _findItemByProductId($items, $productID)
|
560 |
/**
|
561 |
* @param $items
|
562 |
* @param $id
|
563 |
+
*
|
564 |
* @return bool
|
565 |
*/
|
566 |
protected function findItemByOriginal($items, $id)
|
579 |
"Product ID (#{$id}) Json parse error! Message: {$e->getCode()} - {$e->getMessage()}",
|
580 |
ShopgateLogger::LOGTYPE_ERROR
|
581 |
);
|
582 |
+
|
583 |
return false;
|
584 |
}
|
585 |
|
587 |
return $item;
|
588 |
}
|
589 |
}
|
590 |
+
|
591 |
return false;
|
592 |
}
|
593 |
|
603 |
$this->_initConfig();
|
604 |
if (!$this->_config->applyCartRulesToCart() || Mage::registry('shopgate_disable_sales_rules')) {
|
605 |
$collection = $observer->getEvent()->getCollection();
|
606 |
+
if ($collection instanceof Mage_SalesRule_Model_Resource_Rule_Collection
|
607 |
+
|| $collection instanceof Mage_SalesRule_Model_Mysql4_Rule_Collection
|
608 |
+
) {
|
609 |
+
if (Mage::helper('shopgate/config')->getIsMagentoVersionLower1410()) {
|
610 |
+
$couponType = "coupon_code <> ''";
|
611 |
+
} else {
|
612 |
+
$couponType = 'coupon_type = ' . Mage_SalesRule_Model_Rule::COUPON_TYPE_SPECIFIC;
|
613 |
+
}
|
614 |
+
$collection->getSelect()->where($couponType . ' OR simple_free_shipping IN (1,2)');
|
615 |
}
|
616 |
}
|
617 |
}
|
626 |
$eventResourceModule = explode('/', $observer->getResourceName());
|
627 |
$eventResourceModule = count($eventResourceModule) ? $eventResourceModule[0] : 'default';
|
628 |
/* Prevent collection loading on admin to avoid an error while using flat tables */
|
629 |
+
if ((Mage::app()->getStore()->isAdmin() && !$eventResourceModule == 'cron')
|
630 |
+
|| (!Mage::helper('shopgate')->isShopgateApiRequest() && !$eventResourceModule == 'cron')
|
631 |
) {
|
632 |
return;
|
633 |
}
|
677 |
|
678 |
if (Mage::helper('shopgate/config')->isOAuthShopAlreadyRegistered($settings['shop_number'], $storeViewId)) {
|
679 |
Mage::throwException(
|
680 |
+
'For the current storeView with id #' . $storeViewId
|
681 |
+
. ' is already a shopnumber set. OAuth registration canceled.'
|
682 |
);
|
683 |
}
|
684 |
|
738 |
* Adds extra parameters for developers
|
739 |
*
|
740 |
* @param Varien_Event_Observer $observer
|
741 |
+
*
|
742 |
* @return $this
|
743 |
*/
|
744 |
public function addDevSystemConfig(Varien_Event_Observer $observer)
|
837 |
* because PayOne plugin is not setting it correctly.
|
838 |
*
|
839 |
* @param Varien_Event_Observer $event
|
840 |
+
*
|
841 |
* @return $this
|
842 |
* @throws Exception
|
843 |
*/
|
app/code/community/Shopgate/Framework/Model/Payment/Abstract/AbstractPayol.php
CHANGED
@@ -66,7 +66,6 @@ class Shopgate_Framework_Model_Payment_Abstract_AbstractPayol extends Shopgate_F
|
|
66 |
$this->getOrder()->addItem($orderItem);
|
67 |
}
|
68 |
$this->getOrder()->setQuote($quote);
|
69 |
-
$this->getOrder()->setExtOrderId($quote->getPayment()->getTransactionId());
|
70 |
$this->getOrder()->setCanSendNewEmailFlag(false);
|
71 |
|
72 |
$this->_initTransaction($quote);
|
@@ -280,4 +279,4 @@ class Shopgate_Framework_Model_Payment_Abstract_AbstractPayol extends Shopgate_F
|
|
280 |
|
281 |
return 'Authoriz';
|
282 |
}
|
283 |
-
}
|
66 |
$this->getOrder()->addItem($orderItem);
|
67 |
}
|
68 |
$this->getOrder()->setQuote($quote);
|
|
|
69 |
$this->getOrder()->setCanSendNewEmailFlag(false);
|
70 |
|
71 |
$this->_initTransaction($quote);
|
279 |
|
280 |
return 'Authoriz';
|
281 |
}
|
282 |
+
}
|
app/code/community/Shopgate/Framework/Model/Payment/Payone/Abstract.php
CHANGED
@@ -228,7 +228,6 @@ class Shopgate_Framework_Model_Payment_Payone_Abstract extends Shopgate_Framewor
|
|
228 |
$order->addItem($orderItem);
|
229 |
}
|
230 |
$order->setQuote($quote);
|
231 |
-
$order->setExtOrderId($quote->getPayment()->getTransactionId());
|
232 |
$order->setCanSendNewEmailFlag(false);
|
233 |
|
234 |
$order->getPayment()->setData('payone_config_payment_method_id', $this->_getMethodId());
|
@@ -489,11 +488,11 @@ class Shopgate_Framework_Model_Payment_Payone_Abstract extends Shopgate_Framewor
|
|
489 |
if (!is_null($this->_transExists)) {
|
490 |
return $this->_transExists;
|
491 |
}
|
492 |
-
|
493 |
$info = $this->getShopgateOrder()->getPaymentInfos();
|
494 |
$factory = Mage::getModel('payone_core/factory');
|
495 |
$this->_transExists = false;
|
496 |
-
|
497 |
if (isset($info['txid']) && $factory) {
|
498 |
$transaction = $factory->getModelTransaction();
|
499 |
if ($transaction->load($info['txid'], 'txid')->hasData()) {
|
@@ -505,7 +504,7 @@ class Shopgate_Framework_Model_Payment_Payone_Abstract extends Shopgate_Framewor
|
|
505 |
$debug = $this->_getHelper()->__('Either "txid" or PayOne: Factory cannot be loaded');
|
506 |
ShopgateLogger::getInstance()->log($debug, ShopgateLogger::LOGTYPE_DEBUG);
|
507 |
}
|
508 |
-
|
509 |
return $this->_transExists;
|
510 |
}
|
511 |
|
@@ -548,4 +547,4 @@ class Shopgate_Framework_Model_Payment_Payone_Abstract extends Shopgate_Framewor
|
|
548 |
|
549 |
return $factory->getHandlerPaymentPreauthorize($paymentConfig);
|
550 |
}
|
551 |
-
}
|
228 |
$order->addItem($orderItem);
|
229 |
}
|
230 |
$order->setQuote($quote);
|
|
|
231 |
$order->setCanSendNewEmailFlag(false);
|
232 |
|
233 |
$order->getPayment()->setData('payone_config_payment_method_id', $this->_getMethodId());
|
488 |
if (!is_null($this->_transExists)) {
|
489 |
return $this->_transExists;
|
490 |
}
|
491 |
+
|
492 |
$info = $this->getShopgateOrder()->getPaymentInfos();
|
493 |
$factory = Mage::getModel('payone_core/factory');
|
494 |
$this->_transExists = false;
|
495 |
+
|
496 |
if (isset($info['txid']) && $factory) {
|
497 |
$transaction = $factory->getModelTransaction();
|
498 |
if ($transaction->load($info['txid'], 'txid')->hasData()) {
|
504 |
$debug = $this->_getHelper()->__('Either "txid" or PayOne: Factory cannot be loaded');
|
505 |
ShopgateLogger::getInstance()->log($debug, ShopgateLogger::LOGTYPE_DEBUG);
|
506 |
}
|
507 |
+
|
508 |
return $this->_transExists;
|
509 |
}
|
510 |
|
547 |
|
548 |
return $factory->getHandlerPaymentPreauthorize($paymentConfig);
|
549 |
}
|
550 |
+
}
|
app/code/community/Shopgate/Framework/Model/Payment/Pp/Wspp.php
CHANGED
@@ -78,7 +78,6 @@ class Shopgate_Framework_Model_Payment_Pp_Wspp
|
|
78 |
$order->addItem($orderItem);
|
79 |
}
|
80 |
$order->setQuote($quote);
|
81 |
-
$order->setExtOrderId($quote->getPayment()->getTransactionId());
|
82 |
$order->setCanSendNewEmailFlag(false);
|
83 |
$transaction->addObject($order);
|
84 |
$transaction->addCommitCallback(array($order, 'save'));
|
@@ -261,4 +260,4 @@ class Shopgate_Framework_Model_Payment_Pp_Wspp
|
|
261 |
}
|
262 |
|
263 |
|
264 |
-
}
|
78 |
$order->addItem($orderItem);
|
79 |
}
|
80 |
$order->setQuote($quote);
|
|
|
81 |
$order->setCanSendNewEmailFlag(false);
|
82 |
$transaction->addObject($order);
|
83 |
$transaction->addCommitCallback(array($order, 'save'));
|
260 |
}
|
261 |
|
262 |
|
263 |
+
}
|
app/code/community/Shopgate/Framework/Model/Payment/Ppal/Plus.php
CHANGED
@@ -58,7 +58,6 @@ class Shopgate_Framework_Model_Payment_Ppal_Plus
|
|
58 |
$order->addItem($orderItem);
|
59 |
}
|
60 |
$order->setQuote($quote);
|
61 |
-
$order->setExtOrderId($quote->getPayment()->getTransactionId());
|
62 |
$order->setCanSendNewEmailFlag(false);
|
63 |
$transaction->addObject($order);
|
64 |
$transaction->addCommitCallback(array($order, 'save'));
|
@@ -175,4 +174,4 @@ class Shopgate_Framework_Model_Payment_Ppal_Plus
|
|
175 |
return $this->orderStatusManager($magentoOrder);
|
176 |
}
|
177 |
|
178 |
-
}
|
58 |
$order->addItem($orderItem);
|
59 |
}
|
60 |
$order->setQuote($quote);
|
|
|
61 |
$order->setCanSendNewEmailFlag(false);
|
62 |
$transaction->addObject($order);
|
63 |
$transaction->addCommitCallback(array($order, 'save'));
|
174 |
return $this->orderStatusManager($magentoOrder);
|
175 |
}
|
176 |
|
177 |
+
}
|
app/code/community/Shopgate/Framework/Model/Payment/Simple/Paypal/Express.php
CHANGED
@@ -82,7 +82,6 @@ class Shopgate_Framework_Model_Payment_Simple_Paypal_Express
|
|
82 |
$order->addItem($orderItem);
|
83 |
}
|
84 |
$order->setQuote($quote);
|
85 |
-
$order->setExtOrderId($quote->getPayment()->getTransactionId());
|
86 |
$order->setCanSendNewEmailFlag(false);
|
87 |
$transaction->addObject($order);
|
88 |
$transaction->addCommitCallback(array($order, 'save'));
|
@@ -237,4 +236,4 @@ class Shopgate_Framework_Model_Payment_Simple_Paypal_Express
|
|
237 |
return Mage::helper('shopgate/payment_wspp');
|
238 |
}
|
239 |
|
240 |
-
}
|
82 |
$order->addItem($orderItem);
|
83 |
}
|
84 |
$order->setQuote($quote);
|
|
|
85 |
$order->setCanSendNewEmailFlag(false);
|
86 |
$transaction->addObject($order);
|
87 |
$transaction->addCommitCallback(array($order, 'save'));
|
236 |
return Mage::helper('shopgate/payment_wspp');
|
237 |
}
|
238 |
|
239 |
+
}
|
app/code/community/Shopgate/Framework/Model/Shopgate/Plugin.php
CHANGED
@@ -97,7 +97,7 @@ class Shopgate_Framework_Model_Shopgate_Plugin extends ShopgatePlugin
|
|
97 |
if (!in_array($country, $netCountries)) {
|
98 |
$this->setUseTaxClasses(true);
|
99 |
}
|
100 |
-
|
101 |
return true;
|
102 |
}
|
103 |
|
@@ -505,9 +505,10 @@ class Shopgate_Framework_Model_Shopgate_Plugin extends ShopgatePlugin
|
|
505 |
continue;
|
506 |
}
|
507 |
|
508 |
-
$orderInfo
|
509 |
-
$orderInfo
|
510 |
-
$amountWithTax
|
|
|
511 |
|
512 |
$stackQuantity = 1;
|
513 |
if (!empty($orderInfo['stack_quantity']) && $orderInfo['stack_quantity'] > 1) {
|
@@ -516,6 +517,7 @@ class Shopgate_Framework_Model_Shopgate_Plugin extends ShopgatePlugin
|
|
516 |
|
517 |
if ($stackQuantity > 1) {
|
518 |
$amountWithTax = $amountWithTax / $stackQuantity;
|
|
|
519 |
}
|
520 |
|
521 |
$pId = $orderInfo["product_id"];
|
@@ -605,8 +607,13 @@ class Shopgate_Framework_Model_Shopgate_Plugin extends ShopgatePlugin
|
|
605 |
$quoteItem = $quote->getItemByProduct($product);
|
606 |
|
607 |
if ($this->_getConfig()->useShopgatePrices()) {
|
608 |
-
$
|
609 |
-
|
|
|
|
|
|
|
|
|
|
|
610 |
}
|
611 |
$quoteItem->setTaxPercent($item->getTaxPercent());
|
612 |
|
@@ -776,11 +783,7 @@ class Shopgate_Framework_Model_Shopgate_Plugin extends ShopgatePlugin
|
|
776 |
if (!$item->isSgCoupon()) {
|
777 |
continue;
|
778 |
}
|
779 |
-
|
780 |
-
$itemAmount = $item->getUnitAmountWithTax();
|
781 |
-
} else {
|
782 |
-
$itemAmount = $item->getUnitAmount();
|
783 |
-
}
|
784 |
|
785 |
$obj = new Varien_Object();
|
786 |
$obj->setName($item->getName());
|
@@ -1063,7 +1066,7 @@ class Shopgate_Framework_Model_Shopgate_Plugin extends ShopgatePlugin
|
|
1063 |
'Field "internal_info" is empty.'
|
1064 |
);
|
1065 |
}
|
1066 |
-
|
1067 |
if (!isset($couponInfos["coupon_id"])) {
|
1068 |
throw new ShopgateLibraryException(
|
1069 |
ShopgateLibraryException::COUPON_NOT_VALID,
|
@@ -1201,7 +1204,7 @@ class Shopgate_Framework_Model_Shopgate_Plugin extends ShopgatePlugin
|
|
1201 |
),
|
1202 |
false
|
1203 |
);
|
1204 |
-
|
1205 |
Mage::helper('shopgate/import_order')->printCustomFieldComments($order, $shopgateOrder);
|
1206 |
|
1207 |
return $order;
|
@@ -1459,7 +1462,7 @@ class Shopgate_Framework_Model_Shopgate_Plugin extends ShopgatePlugin
|
|
1459 |
/**
|
1460 |
* Run order manipulation with isPaid flag true.
|
1461 |
* Set to Private as this will be refactored.
|
1462 |
-
*
|
1463 |
* @param Mage_Sales_Model_Order $magentoOrder
|
1464 |
* @param ShopgateOrder $shopgateOrder
|
1465 |
*
|
@@ -1509,7 +1512,7 @@ class Shopgate_Framework_Model_Shopgate_Plugin extends ShopgatePlugin
|
|
1509 |
*
|
1510 |
* @param ShopgateCart $cart The ShopgateCart object containing the coupons that should be redeemed.
|
1511 |
*
|
1512 |
-
* @return array('external_coupons' => ShopgateExternalCoupon[])
|
1513 |
* @throws ShopgateLibraryException if an error occurs.
|
1514 |
*/
|
1515 |
public function redeemCoupons(ShopgateCart $cart)
|
@@ -1662,30 +1665,30 @@ class Shopgate_Framework_Model_Shopgate_Plugin extends ShopgatePlugin
|
|
1662 |
)
|
1663 |
);
|
1664 |
|
1665 |
-
$shippingMethods = $this->_getSalesHelper()->getShippingMethods($mageCart);
|
1666 |
-
if ($mageCart->getQuote()->hasItems() && $shippingMethods) {
|
1667 |
-
$response['shipping_methods'] = $shippingMethods;
|
1668 |
-
$this->log('Shipping methods loaded', ShopgateLogger::LOGTYPE_DEBUG);
|
1669 |
-
}
|
1670 |
-
|
1671 |
$coupons = $this->checkCoupons($mageCart, $cart);
|
1672 |
if ($coupons) {
|
1673 |
$response['external_coupons'] = $coupons;
|
1674 |
$this->log('Coupons loaded', ShopgateLogger::LOGTYPE_DEBUG);
|
1675 |
}
|
1676 |
-
|
1677 |
-
$
|
1678 |
-
if ($
|
1679 |
-
$response['
|
1680 |
-
$this->log('
|
1681 |
}
|
1682 |
-
|
1683 |
$items = $this->_getSalesHelper()->getItems($mageCart->getQuote(), $cart);
|
1684 |
if ($items) {
|
1685 |
$response['items'] = $items;
|
1686 |
$this->log('Items loaded', ShopgateLogger::LOGTYPE_DEBUG);
|
1687 |
}
|
1688 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1689 |
$affiliateCoupon = $affiliateFactory->redeemCoupon($mageCart->getQuote(), $this->useTaxClasses);
|
1690 |
if ($affiliateCoupon) {
|
1691 |
$externalCoupons = $response['external_coupons'];
|
@@ -2062,14 +2065,14 @@ class Shopgate_Framework_Model_Shopgate_Plugin extends ShopgatePlugin
|
|
2062 |
} else {
|
2063 |
$ids = $collection->getAllIds();
|
2064 |
}
|
2065 |
-
|
2066 |
if (empty($ids) || count($ids) == 1) {
|
2067 |
$this->log(
|
2068 |
"Warning! Low amount of items to export, id's: " . print_r($ids, 1),
|
2069 |
ShopgateLogger::LOGTYPE_DEBUG
|
2070 |
);
|
2071 |
}
|
2072 |
-
|
2073 |
return $ids;
|
2074 |
}
|
2075 |
|
@@ -2116,7 +2119,7 @@ class Shopgate_Framework_Model_Shopgate_Plugin extends ShopgatePlugin
|
|
2116 |
|
2117 |
/**
|
2118 |
* Item XML export function
|
2119 |
-
*
|
2120 |
* @param int $limit
|
2121 |
* @param int $offset
|
2122 |
* @param array $uids
|
97 |
if (!in_array($country, $netCountries)) {
|
98 |
$this->setUseTaxClasses(true);
|
99 |
}
|
100 |
+
|
101 |
return true;
|
102 |
}
|
103 |
|
505 |
continue;
|
506 |
}
|
507 |
|
508 |
+
$orderInfo = $item->getInternalOrderInfo();
|
509 |
+
$orderInfo = $this->jsonDecode($orderInfo, true);
|
510 |
+
$amountWithTax = $item->getUnitAmountWithTax();
|
511 |
+
$amountNet = $item->getUnitAmount();
|
512 |
|
513 |
$stackQuantity = 1;
|
514 |
if (!empty($orderInfo['stack_quantity']) && $orderInfo['stack_quantity'] > 1) {
|
517 |
|
518 |
if ($stackQuantity > 1) {
|
519 |
$amountWithTax = $amountWithTax / $stackQuantity;
|
520 |
+
$amountNet = $amountNet / $stackQuantity;
|
521 |
}
|
522 |
|
523 |
$pId = $orderInfo["product_id"];
|
607 |
$quoteItem = $quote->getItemByProduct($product);
|
608 |
|
609 |
if ($this->_getConfig()->useShopgatePrices()) {
|
610 |
+
if (Mage::helper("tax")->priceIncludesTax($this->_getConfig()->getStoreViewId())) {
|
611 |
+
$quoteItem->setCustomPrice($amountWithTax);
|
612 |
+
$quoteItem->setOriginalCustomPrice($amountWithTax);
|
613 |
+
} else {
|
614 |
+
$quoteItem->setCustomPrice($amountNet);
|
615 |
+
$quoteItem->setOriginalCustomPrice($amountNet);
|
616 |
+
}
|
617 |
}
|
618 |
$quoteItem->setTaxPercent($item->getTaxPercent());
|
619 |
|
783 |
if (!$item->isSgCoupon()) {
|
784 |
continue;
|
785 |
}
|
786 |
+
$itemAmount = $item->getUnitAmountWithTax();
|
|
|
|
|
|
|
|
|
787 |
|
788 |
$obj = new Varien_Object();
|
789 |
$obj->setName($item->getName());
|
1066 |
'Field "internal_info" is empty.'
|
1067 |
);
|
1068 |
}
|
1069 |
+
|
1070 |
if (!isset($couponInfos["coupon_id"])) {
|
1071 |
throw new ShopgateLibraryException(
|
1072 |
ShopgateLibraryException::COUPON_NOT_VALID,
|
1204 |
),
|
1205 |
false
|
1206 |
);
|
1207 |
+
|
1208 |
Mage::helper('shopgate/import_order')->printCustomFieldComments($order, $shopgateOrder);
|
1209 |
|
1210 |
return $order;
|
1462 |
/**
|
1463 |
* Run order manipulation with isPaid flag true.
|
1464 |
* Set to Private as this will be refactored.
|
1465 |
+
*
|
1466 |
* @param Mage_Sales_Model_Order $magentoOrder
|
1467 |
* @param ShopgateOrder $shopgateOrder
|
1468 |
*
|
1512 |
*
|
1513 |
* @param ShopgateCart $cart The ShopgateCart object containing the coupons that should be redeemed.
|
1514 |
*
|
1515 |
+
* @return array - ('external_coupons' => ShopgateExternalCoupon[])
|
1516 |
* @throws ShopgateLibraryException if an error occurs.
|
1517 |
*/
|
1518 |
public function redeemCoupons(ShopgateCart $cart)
|
1665 |
)
|
1666 |
);
|
1667 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1668 |
$coupons = $this->checkCoupons($mageCart, $cart);
|
1669 |
if ($coupons) {
|
1670 |
$response['external_coupons'] = $coupons;
|
1671 |
$this->log('Coupons loaded', ShopgateLogger::LOGTYPE_DEBUG);
|
1672 |
}
|
1673 |
+
|
1674 |
+
$shippingMethods = $this->_getSalesHelper()->getShippingMethods($mageCart);
|
1675 |
+
if ($mageCart->getQuote()->hasItems() && $shippingMethods) {
|
1676 |
+
$response['shipping_methods'] = $shippingMethods;
|
1677 |
+
$this->log('Shipping methods loaded', ShopgateLogger::LOGTYPE_DEBUG);
|
1678 |
}
|
1679 |
+
|
1680 |
$items = $this->_getSalesHelper()->getItems($mageCart->getQuote(), $cart);
|
1681 |
if ($items) {
|
1682 |
$response['items'] = $items;
|
1683 |
$this->log('Items loaded', ShopgateLogger::LOGTYPE_DEBUG);
|
1684 |
}
|
1685 |
|
1686 |
+
$paymentMethods = $this->_getSalesHelper()->getPaymentMethods($mageCart);
|
1687 |
+
if ($paymentMethods) {
|
1688 |
+
$response['payment_methods'] = $paymentMethods;
|
1689 |
+
$this->log('Payment methods loaded', ShopgateLogger::LOGTYPE_DEBUG);
|
1690 |
+
}
|
1691 |
+
|
1692 |
$affiliateCoupon = $affiliateFactory->redeemCoupon($mageCart->getQuote(), $this->useTaxClasses);
|
1693 |
if ($affiliateCoupon) {
|
1694 |
$externalCoupons = $response['external_coupons'];
|
2065 |
} else {
|
2066 |
$ids = $collection->getAllIds();
|
2067 |
}
|
2068 |
+
|
2069 |
if (empty($ids) || count($ids) == 1) {
|
2070 |
$this->log(
|
2071 |
"Warning! Low amount of items to export, id's: " . print_r($ids, 1),
|
2072 |
ShopgateLogger::LOGTYPE_DEBUG
|
2073 |
);
|
2074 |
}
|
2075 |
+
|
2076 |
return $ids;
|
2077 |
}
|
2078 |
|
2119 |
|
2120 |
/**
|
2121 |
* Item XML export function
|
2122 |
+
*
|
2123 |
* @param int $limit
|
2124 |
* @param int $offset
|
2125 |
* @param array $uids
|
app/code/community/Shopgate/Framework/changelog.txt
CHANGED
@@ -1,3 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
'''Version 2.9.44'''
|
2 |
* fixed shipping costs in case of taxes being based on the origin
|
3 |
* Fixed character \n appearing in customer address
|
1 |
+
'''Version 2.9.45'''
|
2 |
+
* Added support for cart price rule blocking for older magento versions
|
3 |
+
* Removed references of external order id in PayPal orders
|
4 |
+
* Fixed issue missing shipping costs in order import
|
5 |
+
* Fixed missing payment method in checkCart request
|
6 |
+
* Fixed order total amount when shopgate coupons are used
|
7 |
+
* Fixed tax issue when using shopgate prices in order import
|
8 |
+
|
9 |
'''Version 2.9.44'''
|
10 |
* fixed shipping costs in case of taxes being based on the origin
|
11 |
* Fixed character \n appearing in customer address
|
app/code/community/Shopgate/Framework/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Shopgate_Framework>
|
5 |
-
<version>2.9.
|
6 |
</Shopgate_Framework>
|
7 |
</modules>
|
8 |
<phpunit>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Shopgate_Framework>
|
5 |
+
<version>2.9.45</version>
|
6 |
</Shopgate_Framework>
|
7 |
</modules>
|
8 |
<phpunit>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>shopgate_module</name>
|
4 |
-
<version>2.9.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://wiki.shopgate.com/Magento/de">Shopgate Plugin</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Shopgate Plugin</description>
|
11 |
<notes>Shopgate Modul</notes>
|
12 |
<authors><author><name>Stephan Recknagel</name><user>Shopgate</user><email>stephan.recknagel@shopgate.com</email></author><author><name>André Kraus</name><user>Shopgate</user><email>andre.kraus@shopgate.com</email></author><author><name>Alexander Wesselburg</name><user>Shopgate</user><email>alexander.wesselburg@shopgate.com</email></author><author><name>Rainer Skistims</name><user>Shopgate</user><email>rainer.skistims@shopgate.com</email></author><author><name>Konstantin Kiritsenko</name><user>Shopgate</user><email>konstantin.kiritsenko@shopgate.com</email></author></authors>
|
13 |
-
<date>2016-07-
|
14 |
-
<time>
|
15 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Shopgate_Framework.xml" hash="029a3b0976d6f4de9146c8011124de93"/></dir></target><target name="magecommunity"><dir name="Shopgate"><dir name="Framework"><dir name="Block"><dir name="Adminhtml"><dir name="OAuth"><dir name="Config"><file name="Connector.php" hash="890d04b08bf692c12b02f29abf813f83"/></dir><dir name="Connect"><dir name="Add"><file name="Form.php" hash="45685099b41a46919a9900d22c30b711"/></dir><file name="Info.php" hash="ee7bbc837bf3f298791b8496f2d6d565"/><file name="Overlay.php" hash="a6496896dccb5898b36e3e65585650f4"/></dir><file name="Connect.php" hash="cc7e43ba447b6338f6c50ccaa5fd073a"/><file name="Data.php" hash="1903e819d5d16abba4c37d7823909260"/><file name="Disconnect.php" hash="2545e56bca73577ba5f73fce0501624a"/><dir name="Manage"><file name="Grid.php" hash="78357b78fed0e8b3535a7e505c8f6425"/></dir><file name="Manage.php" hash="a99e12333f7c27771ca42a0764108639"/></dir></dir><file name="Info.php" hash="3dd73900370546289a6033942a0c0528"/><dir name="Payment"><file name="MobilePayment.php" hash="40c1289ed7cf9e48d5f42fdea1ab30bf"/><file name="Notice.php" hash="9f323e7a356c9076e0d6a2e11130a011"/><file name="Shopgate.php" hash="9d880318624bb5f903236fd7b302ddf6"/></dir><dir name="Totals"><file name="AbstractPaymentFee.php" hash="5e36647f536d1c6daba33cd6e0a5e302"/><file name="CreditmemoPaymentFee.php" hash="4a287f54554d8d45772db386f54a45e7"/><file name="InvoicePaymentFee.php" hash="818164536fe249016af3046aef73f181"/><file name="OrderPaymentFee.php" hash="55c8f62c4da8014c99414ece9cd125c4"/></dir><file name="Version.php" hash="2f45712bb20635ac17d8bdee213819e5"/></dir><dir name="Helper"><dir name="Billsafe"><file name="Client.php" hash="ae85878961343c33ca32cb9964c8fae5"/><file name="Order.php" hash="474c2aa15f352224c11c8ab17e921c9d"/></dir><file name="Config.php" hash="3c4c745cae49363b7a118bf30e49efa9"/><file name="Coupon.php" hash="b9521a8d68fe39bdc78961f944827570"/><file name="Customer.php" hash="c68047909c0c6e14977336ab6afe2f6b"/><file name="Data.php" hash="097f72c71be3114cf65772b01748214f"/><file name="Debug.php" hash="82c85038046fc9b2f994df18b7f202a6"/><file name="Export.php" hash="02c5dbce181e7489b5d75b20c1584aab"/><dir name="Import"><file name="Order.php" hash="e40ed484faf6f9757bee1970bafaed30"/></dir><file name="Install.php" hash="57f42693c9a6ddb18b8a25a2a5da7cf8"/><dir name="Payment"><file name="Abstract.php" hash="207f16aab8224761b7d91802b9fb10ee"/><file name="Payone.php" hash="ddced5955ff55105d8b3c91e0fcb0778"/><file name="Wspp.php" hash="4214f1d3332cd189cee3df48108ebd8d"/></dir><file name="Sales.php" hash="f6807954ca5a5ead5f757fbec79e15f0"/><file name="Shipping.php" hash="18667893f9e1312f932b2f49460ea256"/></dir><dir name="Model"><dir name="Carrier"><file name="Fix.php" hash="a90b80f19ad3618bd18cdba90ae5d881"/></dir><dir name="Cataloginventory"><file name="Stock.php" hash="42ffccc3d644f8b04358a3e76bda32dd"/></dir><dir name="Compiler"><file name="Process.php" hash="740452b7bc234417788db1f1ee892ef5"/></dir><file name="Config.php" hash="b8706fa9570bbe073c7438e78cb015b4"/><file name="Customer.php" hash="97ed53ca3f69c7a24fb40cce11f58721"/><dir name="DreamRobot"><file name="Observer.php" hash="7b4e8922a46f5974b8edf359c632a9d3"/></dir><dir name="Export"><file name="Abstract.php" hash="9e86667845e8cebd8e0ccb8879b70b6d"/><dir name="Category"><file name="Csv.php" hash="72f4f58345d95f8f621783bedf2a092e"/><file name="Xml.php" hash="85f6ef0714d470458b19111cb0b14b4a"/></dir><file name="Category.php" hash="5a41141ecec85669674ec818c4661cdc"/><dir name="Customer"><file name="Orders.php" hash="b033a463f19b5436e28897adebd634df"/></dir><file name="Customer.php" hash="2711476c9538a22242d1511649ec77f1"/><dir name="Product"><file name="Csv.php" hash="cc25a5c6a19233b33b1f1ec37837c404"/><file name="Xml.php" hash="72e78f30394ce76849ef43a38f6b5608"/></dir><file name="Product.php" hash="d9c807df57af3f1cced2d9bb433338ec"/><dir name="Review"><file name="Csv.php" hash="5c72f802a2de256ca1ec8dab1b75b291"/><file name="Xml.php" hash="bc16f60d9ed20705422921955a5071fe"/></dir><file name="Review.php" hash="ad6f548035a30da642d2459354acbb40"/><file name="Settings.php" hash="960f3d9991ecca41bd9e8b4ba632e9ea"/></dir><file name="Factory.php" hash="ffc69a308b1d93247d8346c653b0d2ad"/><file name="Feed.php" hash="fb99cd7b2b3d94908848b722df666b67"/><dir name="Interfaces"><dir name="Modules"><file name="Router.php" hash="ca1de41cd4fce45d6af452879fc7ba1b"/><file name="Validator.php" hash="274be1cefc2e179ed33c703f76047cff"/></dir></dir><dir name="Mobile"><dir name="Library"><file name="Core.php" hash="72c421aa90bb6ea812eaed0638d84394"/><file name="MobileRedirect.php" hash="86f283ff85a83b6c5df6674bebec726b"/></dir><file name="Redirect.php" hash="8f031a6b1afe744feec7cc5a11fee669"/></dir><dir name="Modules"><dir name="Affiliate"><file name="Factory.php" hash="a3de64c9c70b581a7a2b9975aaff7985"/><dir name="Packages"><dir name="Magestore"><file name="Redeem.php" hash="1084a868ec3bc0099cd860dfb2c5438f"/><file name="Utility.php" hash="825877604ccb52c1c8af34c7b5152a32"/><file name="Validator.php" hash="d79db83b85371c592ca8556c60fced7a"/></dir></dir><file name="Router.php" hash="e5968a99fb26d75e3bfafdb09930ae9d"/><file name="Utility.php" hash="62e51bfe3f4d789c04c4357f1174e089"/></dir><file name="Factory.php" hash="274d360ce8088cb0b140b2d0da09827a"/><file name="Validator.php" hash="8ac94d08fda28ee72ab18caa4523905e"/></dir><dir name="Mysql4"><dir name="Core"><file name="Core.php" hash="fc129d4d929f83e8389367b9c5d6d5e1"/></dir><dir name="Customer"><file name="Collection.php" hash="89d31997abc3c2145f74e02dd5456a7c"/></dir><file name="Customer.php" hash="d5f460b2d5bfa87b8368a8a6c6b51115"/><file name="Product.php" hash="6a99b3d0de44dfbd132ce9caca19034e"/><dir name="Shopgate"><dir name="Order"><file name="Collection.php" hash="e180ba816be47239828bea65cd5f8445"/></dir><file name="Order.php" hash="c297847e39ad01307dba4a69c13445f2"/></dir></dir><file name="Observer.php" hash="64f54ebdea9d3dce00e31d1ed5093eb1"/><dir name="Payment"><dir name="Abstract"><file name="AbstractPayol.php" hash="9ef2b4ce9b4e740da52308adbb50ceb5"/></dir><file name="Abstract.php" hash="e186c4bc87490fc3b3d0b115d47d85bd"/><file name="Amazon.php" hash="908d7f65ae7a0513ff796b49f8b8a556"/><file name="Authorize.php" hash="f51637fcb5058620b359e066fa1a6dd3"/><file name="Billsafe.php" hash="abc7caf1d47a33353b4b575b237fee70"/><dir name="Cc"><file name="Abstract.php" hash="2b291ac14d9e1e3120416d6aeb4c3487"/><file name="Authn.php" hash="e4d6e160d537ff838c596a454b1c61d7"/><file name="AuthnAbstract.php" hash="bfb024a9e5ef4e4b671f98ebcb87c649"/><dir name="Authncim"><file name="Gateway.php" hash="1f8df3fe0e50f4729bebfc1d4763b015"/><file name="Method.php" hash="aa6916548a71848ad7c83e4f053bc27e"/></dir><file name="Authncim.php" hash="89f1c2a0bb59d08c895da84c14c325ff"/><file name="Chargeitpro.php" hash="6fd3a2fd42df00831d6e363a23a414f1"/><file name="Usaepay.php" hash="ba0d7102eb8e911178bf1981850a0aa2"/></dir><file name="Cc.php" hash="3b8b092334fd1c72e824f560b9e33405"/><file name="Express.php" hash="6c8a2ea8ef4cebf40fe35b840f0d41d9"/><file name="Factory.php" hash="074c15298367bee2fe0ad88034562918"/><file name="Generic.php" hash="666f06186d1bb96b94af287d221e27c5"/><dir name="Ins"><file name="Payol.php" hash="b6961c4ab1fb9a95ab2d470aeaad8d29"/></dir><file name="Interface.php" hash="46336751792ff3e05a5be242e1a99715"/><dir name="Inv"><file name="Payol.php" hash="6d1c28b2ea2fb2fd63e09712f4533c77"/></dir><file name="MobilePayment.php" hash="59554c65e778831f6add450e0f846f42"/><dir name="Payone"><file name="Abstract.php" hash="fcc75447f2a2053d720289fb27b3c476"/><file name="BankAbstract.php" hash="0fdc5847e23c2aa4a9e4fee535d1df4c"/><file name="Cc.php" hash="fa47b35c9455bba74d2ef325835ab865"/><file name="Dbt.php" hash="7f098887ba6f12669a18f62d7885de6d"/><file name="Gp.php" hash="7686149aedae93b0d5eef0b06fc08d7e"/><file name="Idl.php" hash="57d144744565ff644db917cab7ef689e"/><file name="Inv.php" hash="91d893ee5eacdc00ff8fbb3f1b750894"/><file name="Klv.php" hash="f82fb0cc874ea8f1121f282372e4e404"/><file name="Pp.php" hash="1165aa67ef8ccdc93a2eb0b7bf03f3d0"/><file name="Prp.php" hash="367e84cc2089596dba96c5a7e9ae1723"/><file name="Sue.php" hash="31280f2c8abf21f0a582b656fb0d38ad"/></dir><dir name="Pp"><file name="Abstract.php" hash="9108e63c82d14a7cef72a58c5fd2df81"/><file name="Wspp.php" hash="fda69970de497ff380ac229de14dad06"/></dir><file name="Pp.php" hash="c521bbb32aed313c0170dd6e8361f934"/><dir name="Ppal"><file name="Plus.php" hash="a26adaab47adb3f3b84ff872673b4ed1"/></dir><file name="Router.php" hash="c2192f71044ee9fbcc5508537a032da5"/><file name="Shopgate.php" hash="f0d59e2a4369f7a22e47cf9c3bb9c44a"/><dir name="Simple"><file name="Billsafe.php" hash="d352d66d5101454f4cfec46e4fcaa88a"/><dir name="Cod"><file name="Abstract.php" hash="9b675841e3513b2bcb4e7fb5883b594b"/><file name="Msp.php" hash="5f9d4b4b9623025246a7ef9617d0020f"/><file name="Native.php" hash="ac835fa8062afb1d3c77e67bc7b87b3c"/><file name="Phoenix107.php" hash="c49a893aeeb2b53105751f92a33fefdd"/><file name="Phoenix108.php" hash="bf6b0f735be28263602a0f98220caebd"/></dir><file name="Cod.php" hash="13329a686494412b304364f0707dd024"/><file name="Invoice.php" hash="a86d8500a0dee3056e56b0ccfb1fae3d"/><dir name="Mws"><file name="Abstract.php" hash="b4a90287eafca0d87087f6dede80dd2c"/><file name="Mws.php" hash="e919cd10f5be16e404a2aac43211005b"/><file name="Mws15.php" hash="db272b23821ea5010fe0e19023b9ca81"/></dir><file name="Mws.php" hash="e19cdfee86d84d80a234138a5f86c5af"/><dir name="Paypal"><file name="Express.php" hash="e2d33dbc600503d9a7541ab53df60662"/><file name="Standard.php" hash="5281ddc90f8f560b6cffa2e97fe08304"/><file name="Standard1400.php" hash="d80d26e8189b12c9796929dfad77f6c8"/></dir><file name="Paypal.php" hash="f9d9361711099812b46ac8335efef454"/><dir name="Prepay"><file name="Abstract.php" hash="89767868690e40bc3d96f8bee4484880"/><file name="Checkmo.php" hash="781dd32522f7bc97c62313cb76429633"/><file name="Native.php" hash="48542e3e9ad2bafb504a200a6529eccc"/><file name="Phoenix.php" hash="7118e404d6f1755cdab35dbc2c8f058d"/></dir><file name="Prepay.php" hash="75a238298ab408184e109411a8cc08b0"/><file name="Shopgate.php" hash="5fb1a053ac9b69e5d38bc9f6631ee8f1"/><dir name="Sue"><file name="Abstract.php" hash="d07d6b3a5702b458ed4e5f4574e3ced9"/><file name="Sue118.php" hash="759f4a7e103f9f9f4457aa1d0694c26d"/><file name="Sue300.php" hash="c804244222e5fe67ead8916c5c1ffef1"/></dir><file name="Sue.php" hash="6802dc052e2088957329689b003a16f8"/></dir><file name="Simple.php" hash="e4f0b3cd8282c2661cb19eabdb77d075"/><file name="Usaepay.php" hash="30f17f5a6bf8d0a68b2c14cd1d013885"/><file name="Wspp.php" hash="dbcd289795c112f2f0dbabeda19fbc69"/></dir><dir name="Resource"><dir name="Core"><file name="Config.php" hash="0ee7969070ab0dddfdd3bb2cc404cd3c"/></dir><dir name="Customer"><file name="Collection.php" hash="2ddb7db1355100bc9e86f966f1d4612c"/></dir><file name="Customer.php" hash="69848842d4be07be4d66d700a7b6695b"/><file name="Product.php" hash="5c62ef4cfc3f0ebbbe5a9a46d1c25dfa"/><file name="Setup.php" hash="7b5cc0f99c857e9292638c1fbeb43969"/><dir name="Shopgate"><dir name="Connection"><file name="Collection.php" hash="f294d4239cee276b7e3c5e6e2109de66"/><dir name="Grid"><file name="Collection.php" hash="d499139d50dffbfe1b1e868b5aeeee0f"/></dir></dir><dir name="Order"><file name="Collection.php" hash="2c18a4ca248ca8719e7ead85f0c57619"/></dir><file name="Order.php" hash="1942eeb8268781c499f8cad384081b02"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><dir name="Total"><file name="ShopgatePaymentFee.php" hash="81be79a41c6e8f1c61007ce3d22bab79"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="ShopgatePaymentFee.php" hash="6432812cd7c4c6f6468a62ea6507625d"/></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="ShopgatePaymentFee.php" hash="dcdfb066b6ec3956e083d632eccc73a8"/></dir></dir></dir></dir><dir name="Search"><dir name="Shopgate"><file name="Order.php" hash="94dcf366528641687b89ab0c9f973ef5"/></dir></dir><dir name="Shopgate"><dir name="Cart"><dir name="Validation"><dir name="Stock"><file name="Bundle.php" hash="13180790586d19b04aa1cfcf1f88f0c8"/><file name="Simple.php" hash="b5af5f6906c75fa1148b4cbd355e595c"/></dir><file name="Stock.php" hash="03d8139aa9840d707c8e4cb991bca20f"/></dir></dir><file name="Connection.php" hash="ff0da764d444103f5892ef21e23ba353"/><file name="Order.php" hash="c477803a1bb9f8deb214d4c070cd22de"/><file name="Plugin.php" hash="b297a799dc1555838ca7bac7ab68a820"/><dir name="Shipping"><dir name="Mapper"><file name="Carrier.php" hash="ef57904070fdf7921e51e88c3991c029"/><dir name="Method"><file name="Abstract.php" hash="bb402c49f3da66f7bd4baf5b215f989e"/><file name="Interface.php" hash="1bab00e6e0356184c3f213acfce601da"/><file name="Shopgate.php" hash="af8e1ade067d1b9fb0e5b493ad814576"/><file name="Usps.php" hash="fa7259d6751ce649e65159753c73fe60"/></dir></dir><file name="Mapper.php" hash="3ecd0aa8d8d16b6109c53ac8e636a672"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="8dfc3964b750aebac8db5f584559d5c3"/><dir name="Description"><file name="List.php" hash="c83f37019461ab7adc86a57400f63761"/></dir><file name="Description.php" hash="d0dcebc9d75fdb0bb80f3c3faba6397c"/><file name="Enabledisable.php" hash="7f189c26cd1c2c7f1cd6dc56379798b5"/><dir name="Item"><file name="Sort.php" hash="2dc75f9c1e8baaddbf895945acd2ff19"/></dir><dir name="Product"><file name="Image.php" hash="e9d0e7c5769446290094d2b67e5c468b"/><file name="Names.php" hash="98de8ee7ae9b3c504eb087f5e09d3afd"/><file name="Types.php" hash="007b54c2e095691380c21a5ab62846fc"/></dir><dir name="Redirect"><file name="Types.php" hash="c5d3c44ab1f5ba74224b41836b14afff"/></dir><file name="Server.php" hash="b569e24076ca68c4063729fb708b666a"/><file name="Store.php" hash="cb2998beb43ba8afeeaa5b64a5b5e946"/><dir name="Validation"><file name="Config.php" hash="64efaea0bcd38872b44e8fa5eb6ffa0d"/></dir><dir name="Variation"><dir name="Export"><file name="Type.php" hash="bb19358c2c2fbee3cb9776f3540faa20"/></dir></dir><dir name="Weight"><file name="Units.php" hash="10af44d670bcfdb559f4196c7006e893"/></dir></dir></dir></dir></dir><dir name="Test"><dir name="Controller"><dir name="FrameworkController"><dir name="fixtures"><file name="testPluginNotActive.yaml" hash="9e25f93814834419e9c83995021860c2"/></dir></dir><file name="FrameworkController.php" hash="f2332ffd91ff17cb73382210ba3301d7"/></dir><dir name="Helper"><dir name="Billsafe"><file name="ClientTest.php" hash="2e3427398bf45801753b32be01b07b26"/></dir><dir name="Data"><dir name="providers"><file name="testCalculateTaxRate.yaml" hash="2b1fb398f41a0d7706ab9701d77ce978"/></dir></dir><file name="Data.php" hash="e6892cda8a5c0a034657707ae6951317"/><dir name="Payment"><dir name="Wspp"><dir name="providers"><file name="testGetActionByStatus.yaml" hash="7c2d30f7e376da449185e19f3b2a642a"/><file name="testGetPaypalStatus.yaml" hash="8381a01d6d22190b4d1e5c14db984a5d"/></dir></dir><file name="Wspp.php" hash="8bda17bc29a6f006e51ec54063c7b42c"/></dir></dir><dir name="Model"><dir name="Export"><dir name="Product"><file name="XmlTest.php" hash="a18e34f11f4e8270014605593202dcf9"/></dir></dir><dir name="Modules"><dir name="Affiliate"><file name="RouterTest.php" hash="e84df3fe416472465a98742030f93662"/></dir></dir><file name="ObserverTest.php" hash="bd6dea886fed4a44f5a3f581621a833a"/><dir name="Payment"><dir name="Abstract"><dir name="fixtures"><file name="testIsDisabled.yaml" hash="53ed5e65872f20c2328430e0e395e70f"/><file name="testIsEnabled.yaml" hash="53ed5e65872f20c2328430e0e395e70f"/></dir></dir><file name="Abstract.php" hash="7dc37f4b6c2a911a726a0395ae5e49eb"/><dir name="Cc"><dir name="Abstract"><dir name="providers"><file name="testGetCcTypeName.yaml" hash="eaf5dc89060f82581dea1a116c58e5dc"/></dir></dir><file name="Abstract.php" hash="ccf09de30cde5ee26757794e2a509896"/><file name="Authn.php" hash="77306ad6afc450df8a45a1d6a177ff32"/><file name="AuthnAbstract.php" hash="11784c806b9ca43772af538a13dea371"/></dir><file name="Cc.php" hash="8da9d7be59ca374d8d69e587d6c47464"/><dir name="Pp"><file name="AbstractTest.php" hash="1369367e5198c8178a475eccd193da35"/></dir><dir name="Router"><file name="Exception.php" hash="f7619c0f81e3aec39171687b3fd44185"/><dir name="providers"><file name="testGetModelCombinations.yaml" hash="e74482392a5c0a767903c73628dbfc21"/><file name="testMethodPart.yaml" hash="f9e17d95fba5fed400d4bbfce722212d"/></dir></dir><file name="Router.php" hash="42c755b3d736deb853548db48e2cbe3f"/><file name="RouterAbstract.php" hash="8f3207a8c6db231f72c81d891919cdbd"/><dir name="Simple"><file name="Billsafe.php" hash="82672c2300658c22c6fe0165245b5590"/><dir name="Cod"><file name="Msp.php" hash="d87f920cb0db4267f7246ea5542c2867"/><file name="Native.php" hash="9699b7aa21466cb2014f27d924ac7717"/><file name="Phoenix107.php" hash="c482e1e2a78fc9c5d277d22c3e4271c2"/><file name="Phoenix108.php" hash="f0f6847ea8279388cb12915f7aeb6597"/><dir name="fixtures"><file name="testGetCodMspMethod.yaml" hash="877ac87663c27392723481e813adac94"/><file name="testGetCodNativeMethod.yaml" hash="78dec590236fda34a7baa1681f1f799b"/><file name="testGetCodPhoenixMethod.yaml" hash="d47bddf587fad20d43acec341eb97c55"/><file name="testGetNoCodMethod.yaml" hash="f598847006617b5ed14f83d677739951"/></dir></dir><file name="Cod.php" hash="03391eaa3b2233c8d51a020e09dacde4"/><file name="Invoice.php" hash="08161a51fab47b14b652da12819337bf"/><dir name="Mws"><file name="Mws.php" hash="ec0f5f5b20656367416e505213439819"/><file name="Mws15.php" hash="06b3ada52a543d31bbf877032450368e"/></dir><file name="Mws.php" hash="9645cc9098c989424644de6b2f8bcfbd"/><dir name="Paypal"><file name="Express.php" hash="23da162636ff6ccca1e703b1967c14cf"/><dir name="fixtures"><file name="testGetPpExpressMethod.yaml" hash="304d7be2dcefedfe925695b85ead1ef7"/><file name="testGetPpStandardMethod.yaml" hash="79830109fcd1f32140f97cfd0caf4ab3"/></dir></dir><file name="Paypal.php" hash="cce4b99dcf9ee10621af4c6b24538a8e"/><dir name="Prepay"><file name="Checkmo.php" hash="b4bf41747b9e20c76d22f39fdafe6318"/><file name="Native.php" hash="dd31b6d04518750a1d03a7f9b85510f0"/><file name="Phoenix.php" hash="c8c7a408d8bf13917083826eed369f12"/><dir name="fixtures"><file name="testGetAllPrepayEnabled.yaml" hash="f4fd365d15f4a72a27056abc86254d32"/><file name="testGetPrepayNativeMethod.yaml" hash="10fc3dd5a6ea63187eb11c0f8dfcdce4"/><file name="testGetPrepayPhoenixMethod.yaml" hash="e8e4ab7d7e995aea4e701e2aac72c9c0"/></dir></dir><file name="Prepay.php" hash="410b8d87c6c3c2d726cc3a4dd59e85fb"/><file name="Shopgate.php" hash="744c9424ad4db0917e437140662c6298"/><dir name="Sue"><file name="Sue118.php" hash="25daa525b66855a9c617d68f58818e1f"/><file name="Sue300.php" hash="38e4539f1adb242b67920f43d93a15fc"/></dir><file name="Sue.php" hash="c6b29f00dbf3e4177b1bc7da20c0af5c"/></dir><file name="Simple.php" hash="8f3d015f1f8e32ddef4ae60c681d6280"/></dir><file name="ProductUtility.php" hash="9f4401a00d0e45455ddfeebc9a40384b"/><file name="Utility.php" hash="f7b78aefc882670c716cbcf5cac4dc99"/></dir></dir><file name="changelog.txt" hash="7f17c77af2cda52a73f070cf98182dce"/><dir name="controllers"><dir name="Adminhtml"><file name="ShopgateController.php" hash="b1bb6a24af72d5d151a6773be640c9e9"/></dir><file name="FrameworkController.php" hash="2152205bd372d999a56eb378ed810a8d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="ed53de480c8a0642b7ae75c59f1ff8df"/><file name="config.xml" hash="ece69b3286737deeb302c62067da23c0"/><file name="system.xml" hash="c7f55765dac95c436147785275f4b362"/></dir><file name="licence.txt" hash="dec6ca25c420b36a2e400caf1541c923"/><dir name="sql"><dir name="shopgate_setup"><file name="mysql4-install-0.1.0.php" hash="069abba038757da43b2ca6c5a0c82aba"/><file name="mysql4-install-2.1.45.php" hash="eddddf157e55a87edc77361dde564463"/><file name="mysql4-install-2.2.0.php" hash="eddddf157e55a87edc77361dde564463"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="cc637fc1bc511e745f02a56d0b36e3be"/><file name="mysql4-upgrade-1.0.5-1.0.7.php" hash="1e800d9d235b817bf5be698288bc0129"/><file name="mysql4-upgrade-2.1.44-2.1.45.php" hash="134d0b665746c61d364f6fd93d83f46c"/><file name="mysql4-upgrade-2.1.49-2.1.50.php" hash="e0fd395bb9c25c0e544c455186cfe7c9"/><file name="mysql4-upgrade-2.4.28-2.4.29.php" hash="9c8c868ce90e42b56182b23b78d6fbe7"/><file name="mysql4-upgrade-2.4.29-2.4.30.php" hash="ca3ee1e2f337bcea26264a17f603548e"/><file name="mysql4-upgrade-2.7.5-2.8.0.php" hash="34393a58a0b4ec90b4e618d3ff4cc565"/><file name="mysql4-upgrade-2.9.15-2.9.16.php" hash="980e7cc83f912ef4f630ef8d1cb964d1"/><file name="mysql4-upgrade-2.9.36-2.9.37.php" hash="07dafdabd4764c9685f1317ebbbe842f"/><file name="mysql4-upgrade-2.9.4-2.9.5.php" hash="dc6770e94c31d2f79915528c0993d546"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Shopgate_Framework.csv" hash="eb25c8acdee6d7a4d6b51c354774e0ce"/></dir><dir name="de_CH"><file name="Shopgate_Framework.csv" hash="eb25c8acdee6d7a4d6b51c354774e0ce"/></dir><dir name="de_AT"><file name="Shopgate_Framework.csv" hash="2fb25887b4b9c89b2a241759ddc1590b"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="shopgate"><file name="logo.png" hash="b7139047ecc90b15a5710ab0fe77fc81"/><file name="logo_big.png" hash="b98bfcf09766589506a1cca24ca47972"/><file name="logo_small.png" hash="7abf7f774c592eb582c2856e027af798"/><file name="oauth_connect.js" hash="8e5c77d9ad1354f826445f03c91008f4"/><file name="shopgate_admin.css" hash="0fbc07171267b9fb5dba7004a0858f66"/><file name="target.js" hash="80484a4dae515f708c97545d9959673a"/></dir></dir></dir></dir></target><target name="magelib"><dir name="Shopgate"><dir name="assets"><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><file name="js_header.html" hash="7ff2c12f8b7c23542f3ff49b451720a8"/><file name="link_tag.html" hash="f7c53599b55d442fd49f970bd41eb2a4"/><file name="mobile_header.html" hash="17616650e160eaccd24e25729396c5a9"/></dir><file name="changelog.txt" hash="3645c862edb1c302ee6d6d4e967082ce"/><dir name="classes"><file name="apis.php" hash="7d38f4b73eea675ad192d9acedea3b4c"/><file name="configuration.php" hash="264d43767346d16fd8c1fcfdcbec0ca2"/><file name="core.php" hash="3a69225eff9b96b96ede1f561c149413"/><file name="customers.php" hash="24c9dbbcafe379c224fcce4b02d58ad2"/><file name="external_orders.php" hash="7239071113b5decc70ec9672bf6fc3fe"/><dir name="helper"><file name="DataStructure.php" hash="ece9e9f855756777f543d090f5ecc710"/><file name="Pricing.php" hash="fd4c74999abc3bfa05fd74994a2ce78f"/><file name="String.php" hash="10c9396b2975bf0bde86f171932c3074"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><dir name="redirect"><file name="KeywordsManager.php" hash="3e8233fa248cb795642b4306b3ebdd13"/><file name="KeywordsManagerInterface.php" hash="32cda83161084b4f5904eeb5f50a6547"/><file name="LinkBuilder.php" hash="52d193384a8ffed61fd83c5e1befd63c"/><file name="LinkBuilderInterface.php" hash="a755af7b57fda9b9ff1564a0059529d1"/><file name="MobileRedirect.php" hash="1f58517a45d5d8814514001b1e690312"/><file name="MobileRedirectInterface.php" hash="80b8da18c8bf498461c2b8e183bce326"/><file name="Redirector.php" hash="c0949b9bb227a1882fe324caf0bfc31a"/><file name="RedirectorInterface.php" hash="7d48c1bf54e4fb8371e403e90375cc13"/><file name="SettingsManager.php" hash="d1b1722715688da2a095fba8c607f45c"/><file name="SettingsManagerInterface.php" hash="ae16aa5ea4df7f0def80711f8cc14f70"/><file name="TagsGenerator.php" hash="de6e73da61a282d24226065671d67d6b"/><file name="TagsGeneratorInterface.php" hash="1a5c500631331a4ae970d2a442e5d7e2"/><file name="TemplateParser.php" hash="1e087c9ba5720c9065702d9ebfc5723a"/><file name="TemplateParserInterface.php" hash="d6897cd9e5622d1991bb7aab678e37f8"/></dir></dir><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><file name="items.php" hash="107f9bc5fcc0c0dbfe568a3b8235107c"/><dir name="models"><file name="Abstract.php" hash="a32633283eb403a55a166bbad70b3e2f"/><file name="AbstractExport.php" hash="f265f9e906208e1799994d117582be20"/><file name="XmlEmptyObject.php" hash="d6cfdae3bdd858d4f10fcebdb542f533"/><file name="XmlResultObject.php" hash="340804eb0f2ba6bcb6b05311b8bb1f11"/><dir name="catalog"><file name="Attribute.php" hash="28d8f3bc6c416661d1eaa77726ba7009"/><file name="AttributeGroup.php" hash="0270086ec8006ee8231c6b0baa8d6034"/><file name="Category.php" hash="beba58d2796cf7b4ca08ce68de65415b"/><file name="CategoryPath.php" hash="475869aef74c567c8569ee9953210faa"/><file name="Identifier.php" hash="d9a3b16d1fcdec641ca2b0fd77fbd625"/><file name="Input.php" hash="77df45fd89aec19565a5fae7178205bb"/><file name="Manufacturer.php" hash="e45f534f5f6acad118be24ffc63a0460"/><file name="Option.php" hash="fd95fe72bff985ae0b2861da115e2468"/><file name="Price.php" hash="3cb25372ae58bd0c71b342f9ef2dca73"/><file name="Product.php" hash="e0a8a1a9503671d51084a3caaef4239e"/><file name="Property.php" hash="5967f0403a606a27ea4fec71a8402327"/><file name="Relation.php" hash="263cde539af500af911baec4e354079e"/><file name="Review.php" hash="72c94cb1f2a54bafffdb5672d87ecd4d"/><file name="Shipping.php" hash="1fe425496bd9720dc18bd076e56aca9e"/><file name="Stock.php" hash="4e645877e778ec8d02ae98262bfa9663"/><file name="Tag.php" hash="39e7b845ab157d2f707707576e868d64"/><file name="TierPrice.php" hash="9dd757c9c3d193944a5727fbe5cf4704"/><file name="Validation.php" hash="0be71640c1df60ab809347194ec66457"/><file name="Visibility.php" hash="d60c6b8ec486da4afdc46a00d65ad172"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><dir name="media"><file name="Attachment.php" hash="c074ef3426c2506350cbf5ff0133c89d"/><file name="Image.php" hash="c9319f2a82811239313e328eaf7e2094"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><dir name="redirect"><file name="DeeplinkSuffix.php" hash="e6aebbb49db1b3b1d0bbb3a5f8e52927"/><file name="DeeplinkSuffixValue.php" hash="809684ff8f7d588d39060f5469e2c3b0"/><file name="DeeplinkSuffixValueDisabled.php" hash="83ff30aeeaf40c070f71b29b7f2bbbd8"/><file name="DeeplinkSuffixValueUnset.php" hash="1275996c7d012acfa3fbd6cbe43b08b3"/><file name="HtmlTag.php" hash="e5494a280dd090e3869445431e6c8c2a"/><file name="HtmlTagAttribute.php" hash="368c63b7c3043f7ae0bee107527152de"/><file name="HtmlTagVariable.php" hash="1484f93ec0e69b3f94313e4cac849e0f"/></dir></dir><file name="orders.php" hash="db9fb6643aafe97c93447e4fcc950b6b"/><file name="redirect.php" hash="75ba604b4a9885e861a96683e566ac5c"/></dir><dir name="config"><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name="index.php" hash="de19abc78063ea9a4112964c79946f1c"/><file name="shopgate.php" hash="248033be19931f7eccdc40d12e59d1bf"/><file name="shopgate_license.txt" hash="21fbb2f00b832416916b27c5e3f5d6d1"/><dir name="temp"><dir name="cache"><file name="index.php" hash="7573387748996e2dd9e02a237056f158"/></dir><file name="index.php" hash="7573387748996e2dd9e02a237056f158"/><dir name="logs"><file name="index.php" hash="7573387748996e2dd9e02a237056f158"/></dir></dir><dir name="tests"><dir name="classes"><dir name="helper"><dir name="redirect"><file name="KeywordsManagerTest.php" hash="185c285d78e7c4e25ede957918018fe6"/><file name="TemplateParserTest.php" hash="aa7aea33f78f0fda58437c83421d2f31"/></dir></dir></dir></dir><dir name="vendors"><file name="2d_is.php" hash="087decaca87ee85d548d8caaa43f1212"/><file name="BSD_license.txt" hash="2df4dd93533ca2c19f6f2d601bc3e0d5"/><file name="JSON.php" hash="cbb23366cd8c20319292458a87dc2870"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name=".htaccess" hash="34479bc8d9df775c38a980ecaf6f3f4b"/></dir></target><target name="mage"><dir name="app"><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="shopgate.xml" hash="608ba89093ef89e1c182cd6085dbf3b1"/></dir><dir name="template"><dir name="shopgate"><dir name="header"><file name="no_link.phtml" hash="66bf6065ceb392d996b774d710bdf504"/></dir><file name="mobile_website.phtml" hash="229cbefd12ea77676f8af9c7159528ea"/><dir name="payment"><file name="mobile_payment.phtml" hash="1e18979028fb13e99af7c595c75a5d27"/><file name="shopgate.phtml" hash="1e18979028fb13e99af7c595c75a5d27"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="shopgate.xml" hash="b7050c6ea4568887cbbc0fc7d8346f97"/></dir><dir name="template"><dir name="shopgate"><dir name="oauth"><dir name="config"><file name="connector.phtml" hash="478c309bdde7834bf20a48b65a4699fb"/></dir><dir name="connect"><file name="info.phtml" hash="4f75dc4311616081873a7d416b96c1c2"/><file name="overlay.phtml" hash="2a17d5b6ff8023568437b194f8a9d482"/></dir><file name="connect.phtml" hash="6956aa22eedf549c4565304b4e4a4ab9"/><file name="data.phtml" hash="09b4c5d83863f104db7a018510cdb315"/><file name="disconnect.phtml" hash="2858cebe9004c9fb5764f79faee46f87"/><file name="manage.phtml" hash="1f99255efbce4dbdc1ee781820d455b8"/></dir><dir name="payment"><file name="mobile_payment.phtml" hash="75ead900487da35bb0c3c837dea608fa"/><file name="notice.phtml" hash="750562568091454029dc6b4db1221b5e"/><file name="shopgate.phtml" hash="441cb5df625ee88099feb137cff9fc85"/></dir></dir></dir></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>shopgate_module</name>
|
4 |
+
<version>2.9.45</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://wiki.shopgate.com/Magento/de">Shopgate Plugin</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Shopgate Plugin</description>
|
11 |
<notes>Shopgate Modul</notes>
|
12 |
<authors><author><name>Stephan Recknagel</name><user>Shopgate</user><email>stephan.recknagel@shopgate.com</email></author><author><name>André Kraus</name><user>Shopgate</user><email>andre.kraus@shopgate.com</email></author><author><name>Alexander Wesselburg</name><user>Shopgate</user><email>alexander.wesselburg@shopgate.com</email></author><author><name>Rainer Skistims</name><user>Shopgate</user><email>rainer.skistims@shopgate.com</email></author><author><name>Konstantin Kiritsenko</name><user>Shopgate</user><email>konstantin.kiritsenko@shopgate.com</email></author></authors>
|
13 |
+
<date>2016-07-26</date>
|
14 |
+
<time>11:01:53</time>
|
15 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Shopgate_Framework.xml" hash="029a3b0976d6f4de9146c8011124de93"/></dir></target><target name="magecommunity"><dir name="Shopgate"><dir name="Framework"><dir name="Block"><dir name="Adminhtml"><dir name="OAuth"><dir name="Config"><file name="Connector.php" hash="890d04b08bf692c12b02f29abf813f83"/></dir><dir name="Connect"><dir name="Add"><file name="Form.php" hash="45685099b41a46919a9900d22c30b711"/></dir><file name="Info.php" hash="ee7bbc837bf3f298791b8496f2d6d565"/><file name="Overlay.php" hash="a6496896dccb5898b36e3e65585650f4"/></dir><file name="Connect.php" hash="cc7e43ba447b6338f6c50ccaa5fd073a"/><file name="Data.php" hash="1903e819d5d16abba4c37d7823909260"/><file name="Disconnect.php" hash="2545e56bca73577ba5f73fce0501624a"/><dir name="Manage"><file name="Grid.php" hash="78357b78fed0e8b3535a7e505c8f6425"/></dir><file name="Manage.php" hash="a99e12333f7c27771ca42a0764108639"/></dir></dir><file name="Info.php" hash="3dd73900370546289a6033942a0c0528"/><dir name="Payment"><file name="MobilePayment.php" hash="40c1289ed7cf9e48d5f42fdea1ab30bf"/><file name="Notice.php" hash="9f323e7a356c9076e0d6a2e11130a011"/><file name="Shopgate.php" hash="9d880318624bb5f903236fd7b302ddf6"/></dir><dir name="Totals"><file name="AbstractPaymentFee.php" hash="5e36647f536d1c6daba33cd6e0a5e302"/><file name="CreditmemoPaymentFee.php" hash="4a287f54554d8d45772db386f54a45e7"/><file name="InvoicePaymentFee.php" hash="818164536fe249016af3046aef73f181"/><file name="OrderPaymentFee.php" hash="55c8f62c4da8014c99414ece9cd125c4"/></dir><file name="Version.php" hash="2f45712bb20635ac17d8bdee213819e5"/></dir><dir name="Helper"><dir name="Billsafe"><file name="Client.php" hash="ae85878961343c33ca32cb9964c8fae5"/><file name="Order.php" hash="474c2aa15f352224c11c8ab17e921c9d"/></dir><file name="Config.php" hash="3c4c745cae49363b7a118bf30e49efa9"/><file name="Coupon.php" hash="b9521a8d68fe39bdc78961f944827570"/><file name="Customer.php" hash="c68047909c0c6e14977336ab6afe2f6b"/><file name="Data.php" hash="097f72c71be3114cf65772b01748214f"/><file name="Debug.php" hash="82c85038046fc9b2f994df18b7f202a6"/><file name="Export.php" hash="02c5dbce181e7489b5d75b20c1584aab"/><dir name="Import"><file name="Order.php" hash="e40ed484faf6f9757bee1970bafaed30"/></dir><file name="Install.php" hash="57f42693c9a6ddb18b8a25a2a5da7cf8"/><dir name="Payment"><file name="Abstract.php" hash="207f16aab8224761b7d91802b9fb10ee"/><file name="Payone.php" hash="ddced5955ff55105d8b3c91e0fcb0778"/><file name="Wspp.php" hash="4214f1d3332cd189cee3df48108ebd8d"/></dir><file name="Sales.php" hash="5a3adcdeb80b162f15cf0190dbbf4f98"/><file name="Shipping.php" hash="1b2fce5f8ae17d76c15bccfe9afd8c93"/></dir><dir name="Model"><dir name="Carrier"><file name="Fix.php" hash="a90b80f19ad3618bd18cdba90ae5d881"/></dir><dir name="Cataloginventory"><file name="Stock.php" hash="42ffccc3d644f8b04358a3e76bda32dd"/></dir><dir name="Compiler"><file name="Process.php" hash="740452b7bc234417788db1f1ee892ef5"/></dir><file name="Config.php" hash="b8706fa9570bbe073c7438e78cb015b4"/><file name="Customer.php" hash="97ed53ca3f69c7a24fb40cce11f58721"/><dir name="DreamRobot"><file name="Observer.php" hash="7b4e8922a46f5974b8edf359c632a9d3"/></dir><dir name="Export"><file name="Abstract.php" hash="9e86667845e8cebd8e0ccb8879b70b6d"/><dir name="Category"><file name="Csv.php" hash="72f4f58345d95f8f621783bedf2a092e"/><file name="Xml.php" hash="85f6ef0714d470458b19111cb0b14b4a"/></dir><file name="Category.php" hash="5a41141ecec85669674ec818c4661cdc"/><dir name="Customer"><file name="Orders.php" hash="b033a463f19b5436e28897adebd634df"/></dir><file name="Customer.php" hash="2711476c9538a22242d1511649ec77f1"/><dir name="Product"><file name="Csv.php" hash="25e432fc9aab3e29befbba840b59a181"/><file name="Xml.php" hash="72e78f30394ce76849ef43a38f6b5608"/></dir><file name="Product.php" hash="d9c807df57af3f1cced2d9bb433338ec"/><dir name="Review"><file name="Csv.php" hash="5c72f802a2de256ca1ec8dab1b75b291"/><file name="Xml.php" hash="bc16f60d9ed20705422921955a5071fe"/></dir><file name="Review.php" hash="ad6f548035a30da642d2459354acbb40"/><file name="Settings.php" hash="960f3d9991ecca41bd9e8b4ba632e9ea"/></dir><file name="Factory.php" hash="ffc69a308b1d93247d8346c653b0d2ad"/><file name="Feed.php" hash="fb99cd7b2b3d94908848b722df666b67"/><dir name="Interfaces"><dir name="Modules"><file name="Router.php" hash="ca1de41cd4fce45d6af452879fc7ba1b"/><file name="Validator.php" hash="274be1cefc2e179ed33c703f76047cff"/></dir></dir><dir name="Mobile"><dir name="Library"><file name="Core.php" hash="72c421aa90bb6ea812eaed0638d84394"/><file name="MobileRedirect.php" hash="86f283ff85a83b6c5df6674bebec726b"/></dir><file name="Redirect.php" hash="8f031a6b1afe744feec7cc5a11fee669"/></dir><dir name="Modules"><dir name="Affiliate"><file name="Factory.php" hash="a3de64c9c70b581a7a2b9975aaff7985"/><dir name="Packages"><dir name="Magestore"><file name="Redeem.php" hash="1084a868ec3bc0099cd860dfb2c5438f"/><file name="Utility.php" hash="825877604ccb52c1c8af34c7b5152a32"/><file name="Validator.php" hash="d79db83b85371c592ca8556c60fced7a"/></dir></dir><file name="Router.php" hash="e5968a99fb26d75e3bfafdb09930ae9d"/><file name="Utility.php" hash="62e51bfe3f4d789c04c4357f1174e089"/></dir><file name="Factory.php" hash="274d360ce8088cb0b140b2d0da09827a"/><file name="Validator.php" hash="8ac94d08fda28ee72ab18caa4523905e"/></dir><dir name="Mysql4"><dir name="Core"><file name="Core.php" hash="fc129d4d929f83e8389367b9c5d6d5e1"/></dir><dir name="Customer"><file name="Collection.php" hash="89d31997abc3c2145f74e02dd5456a7c"/></dir><file name="Customer.php" hash="d5f460b2d5bfa87b8368a8a6c6b51115"/><file name="Product.php" hash="6a99b3d0de44dfbd132ce9caca19034e"/><dir name="Shopgate"><dir name="Order"><file name="Collection.php" hash="e180ba816be47239828bea65cd5f8445"/></dir><file name="Order.php" hash="c297847e39ad01307dba4a69c13445f2"/></dir></dir><file name="Observer.php" hash="d0b4da781850d7da04ea7d1129eb4249"/><dir name="Payment"><dir name="Abstract"><file name="AbstractPayol.php" hash="65e1941f0d406b4eb8c09070deba2954"/></dir><file name="Abstract.php" hash="e186c4bc87490fc3b3d0b115d47d85bd"/><file name="Amazon.php" hash="908d7f65ae7a0513ff796b49f8b8a556"/><file name="Authorize.php" hash="f51637fcb5058620b359e066fa1a6dd3"/><file name="Billsafe.php" hash="abc7caf1d47a33353b4b575b237fee70"/><dir name="Cc"><file name="Abstract.php" hash="2b291ac14d9e1e3120416d6aeb4c3487"/><file name="Authn.php" hash="e4d6e160d537ff838c596a454b1c61d7"/><file name="AuthnAbstract.php" hash="bfb024a9e5ef4e4b671f98ebcb87c649"/><dir name="Authncim"><file name="Gateway.php" hash="1f8df3fe0e50f4729bebfc1d4763b015"/><file name="Method.php" hash="aa6916548a71848ad7c83e4f053bc27e"/></dir><file name="Authncim.php" hash="89f1c2a0bb59d08c895da84c14c325ff"/><file name="Chargeitpro.php" hash="6fd3a2fd42df00831d6e363a23a414f1"/><file name="Usaepay.php" hash="ba0d7102eb8e911178bf1981850a0aa2"/></dir><file name="Cc.php" hash="3b8b092334fd1c72e824f560b9e33405"/><file name="Express.php" hash="6c8a2ea8ef4cebf40fe35b840f0d41d9"/><file name="Factory.php" hash="074c15298367bee2fe0ad88034562918"/><file name="Generic.php" hash="666f06186d1bb96b94af287d221e27c5"/><dir name="Ins"><file name="Payol.php" hash="b6961c4ab1fb9a95ab2d470aeaad8d29"/></dir><file name="Interface.php" hash="46336751792ff3e05a5be242e1a99715"/><dir name="Inv"><file name="Payol.php" hash="6d1c28b2ea2fb2fd63e09712f4533c77"/></dir><file name="MobilePayment.php" hash="59554c65e778831f6add450e0f846f42"/><dir name="Payone"><file name="Abstract.php" hash="7bfc414816ac78c50a6d6cb019cd055d"/><file name="BankAbstract.php" hash="0fdc5847e23c2aa4a9e4fee535d1df4c"/><file name="Cc.php" hash="fa47b35c9455bba74d2ef325835ab865"/><file name="Dbt.php" hash="7f098887ba6f12669a18f62d7885de6d"/><file name="Gp.php" hash="7686149aedae93b0d5eef0b06fc08d7e"/><file name="Idl.php" hash="57d144744565ff644db917cab7ef689e"/><file name="Inv.php" hash="91d893ee5eacdc00ff8fbb3f1b750894"/><file name="Klv.php" hash="f82fb0cc874ea8f1121f282372e4e404"/><file name="Pp.php" hash="1165aa67ef8ccdc93a2eb0b7bf03f3d0"/><file name="Prp.php" hash="367e84cc2089596dba96c5a7e9ae1723"/><file name="Sue.php" hash="31280f2c8abf21f0a582b656fb0d38ad"/></dir><dir name="Pp"><file name="Abstract.php" hash="9108e63c82d14a7cef72a58c5fd2df81"/><file name="Wspp.php" hash="b67ecf32fa2888f38d43ef18ac2feea8"/></dir><file name="Pp.php" hash="c521bbb32aed313c0170dd6e8361f934"/><dir name="Ppal"><file name="Plus.php" hash="a5d0c4bff153ed7536d50586c2c3d749"/></dir><file name="Router.php" hash="c2192f71044ee9fbcc5508537a032da5"/><file name="Shopgate.php" hash="f0d59e2a4369f7a22e47cf9c3bb9c44a"/><dir name="Simple"><file name="Billsafe.php" hash="d352d66d5101454f4cfec46e4fcaa88a"/><dir name="Cod"><file name="Abstract.php" hash="9b675841e3513b2bcb4e7fb5883b594b"/><file name="Msp.php" hash="5f9d4b4b9623025246a7ef9617d0020f"/><file name="Native.php" hash="ac835fa8062afb1d3c77e67bc7b87b3c"/><file name="Phoenix107.php" hash="c49a893aeeb2b53105751f92a33fefdd"/><file name="Phoenix108.php" hash="bf6b0f735be28263602a0f98220caebd"/></dir><file name="Cod.php" hash="13329a686494412b304364f0707dd024"/><file name="Invoice.php" hash="a86d8500a0dee3056e56b0ccfb1fae3d"/><dir name="Mws"><file name="Abstract.php" hash="b4a90287eafca0d87087f6dede80dd2c"/><file name="Mws.php" hash="e919cd10f5be16e404a2aac43211005b"/><file name="Mws15.php" hash="db272b23821ea5010fe0e19023b9ca81"/></dir><file name="Mws.php" hash="e19cdfee86d84d80a234138a5f86c5af"/><dir name="Paypal"><file name="Express.php" hash="6ce81c8cd6e73c0c30287c6085024e16"/><file name="Standard.php" hash="5281ddc90f8f560b6cffa2e97fe08304"/><file name="Standard1400.php" hash="d80d26e8189b12c9796929dfad77f6c8"/></dir><file name="Paypal.php" hash="f9d9361711099812b46ac8335efef454"/><dir name="Prepay"><file name="Abstract.php" hash="89767868690e40bc3d96f8bee4484880"/><file name="Checkmo.php" hash="781dd32522f7bc97c62313cb76429633"/><file name="Native.php" hash="48542e3e9ad2bafb504a200a6529eccc"/><file name="Phoenix.php" hash="7118e404d6f1755cdab35dbc2c8f058d"/></dir><file name="Prepay.php" hash="75a238298ab408184e109411a8cc08b0"/><file name="Shopgate.php" hash="5fb1a053ac9b69e5d38bc9f6631ee8f1"/><dir name="Sue"><file name="Abstract.php" hash="d07d6b3a5702b458ed4e5f4574e3ced9"/><file name="Sue118.php" hash="759f4a7e103f9f9f4457aa1d0694c26d"/><file name="Sue300.php" hash="c804244222e5fe67ead8916c5c1ffef1"/></dir><file name="Sue.php" hash="6802dc052e2088957329689b003a16f8"/></dir><file name="Simple.php" hash="e4f0b3cd8282c2661cb19eabdb77d075"/><file name="Usaepay.php" hash="30f17f5a6bf8d0a68b2c14cd1d013885"/><file name="Wspp.php" hash="dbcd289795c112f2f0dbabeda19fbc69"/></dir><dir name="Resource"><dir name="Core"><file name="Config.php" hash="0ee7969070ab0dddfdd3bb2cc404cd3c"/></dir><dir name="Customer"><file name="Collection.php" hash="2ddb7db1355100bc9e86f966f1d4612c"/></dir><file name="Customer.php" hash="69848842d4be07be4d66d700a7b6695b"/><file name="Product.php" hash="5c62ef4cfc3f0ebbbe5a9a46d1c25dfa"/><file name="Setup.php" hash="7b5cc0f99c857e9292638c1fbeb43969"/><dir name="Shopgate"><dir name="Connection"><file name="Collection.php" hash="f294d4239cee276b7e3c5e6e2109de66"/><dir name="Grid"><file name="Collection.php" hash="d499139d50dffbfe1b1e868b5aeeee0f"/></dir></dir><dir name="Order"><file name="Collection.php" hash="2c18a4ca248ca8719e7ead85f0c57619"/></dir><file name="Order.php" hash="1942eeb8268781c499f8cad384081b02"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><dir name="Total"><file name="ShopgatePaymentFee.php" hash="81be79a41c6e8f1c61007ce3d22bab79"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="ShopgatePaymentFee.php" hash="6432812cd7c4c6f6468a62ea6507625d"/></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="ShopgatePaymentFee.php" hash="dcdfb066b6ec3956e083d632eccc73a8"/></dir></dir></dir></dir><dir name="Search"><dir name="Shopgate"><file name="Order.php" hash="94dcf366528641687b89ab0c9f973ef5"/></dir></dir><dir name="Shopgate"><dir name="Cart"><dir name="Validation"><dir name="Stock"><file name="Bundle.php" hash="13180790586d19b04aa1cfcf1f88f0c8"/><file name="Simple.php" hash="b5af5f6906c75fa1148b4cbd355e595c"/></dir><file name="Stock.php" hash="03d8139aa9840d707c8e4cb991bca20f"/></dir></dir><file name="Connection.php" hash="ff0da764d444103f5892ef21e23ba353"/><file name="Order.php" hash="c477803a1bb9f8deb214d4c070cd22de"/><file name="Plugin.php" hash="5aa92a480944844b7e6679263f47bf54"/><dir name="Shipping"><dir name="Mapper"><file name="Carrier.php" hash="ef57904070fdf7921e51e88c3991c029"/><dir name="Method"><file name="Abstract.php" hash="bb402c49f3da66f7bd4baf5b215f989e"/><file name="Interface.php" hash="1bab00e6e0356184c3f213acfce601da"/><file name="Shopgate.php" hash="af8e1ade067d1b9fb0e5b493ad814576"/><file name="Usps.php" hash="fa7259d6751ce649e65159753c73fe60"/></dir></dir><file name="Mapper.php" hash="3ecd0aa8d8d16b6109c53ac8e636a672"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="8dfc3964b750aebac8db5f584559d5c3"/><dir name="Description"><file name="List.php" hash="c83f37019461ab7adc86a57400f63761"/></dir><file name="Description.php" hash="d0dcebc9d75fdb0bb80f3c3faba6397c"/><file name="Enabledisable.php" hash="7f189c26cd1c2c7f1cd6dc56379798b5"/><dir name="Item"><file name="Sort.php" hash="2dc75f9c1e8baaddbf895945acd2ff19"/></dir><dir name="Product"><file name="Image.php" hash="e9d0e7c5769446290094d2b67e5c468b"/><file name="Names.php" hash="98de8ee7ae9b3c504eb087f5e09d3afd"/><file name="Types.php" hash="007b54c2e095691380c21a5ab62846fc"/></dir><dir name="Redirect"><file name="Types.php" hash="c5d3c44ab1f5ba74224b41836b14afff"/></dir><file name="Server.php" hash="b569e24076ca68c4063729fb708b666a"/><file name="Store.php" hash="cb2998beb43ba8afeeaa5b64a5b5e946"/><dir name="Validation"><file name="Config.php" hash="64efaea0bcd38872b44e8fa5eb6ffa0d"/></dir><dir name="Variation"><dir name="Export"><file name="Type.php" hash="bb19358c2c2fbee3cb9776f3540faa20"/></dir></dir><dir name="Weight"><file name="Units.php" hash="10af44d670bcfdb559f4196c7006e893"/></dir></dir></dir></dir></dir><dir name="Test"><dir name="Controller"><dir name="FrameworkController"><dir name="fixtures"><file name="testPluginNotActive.yaml" hash="9e25f93814834419e9c83995021860c2"/></dir></dir><file name="FrameworkController.php" hash="f2332ffd91ff17cb73382210ba3301d7"/></dir><dir name="Helper"><dir name="Billsafe"><file name="ClientTest.php" hash="2e3427398bf45801753b32be01b07b26"/></dir><dir name="Data"><dir name="providers"><file name="testCalculateTaxRate.yaml" hash="2b1fb398f41a0d7706ab9701d77ce978"/></dir></dir><file name="Data.php" hash="e6892cda8a5c0a034657707ae6951317"/><dir name="Payment"><dir name="Wspp"><dir name="providers"><file name="testGetActionByStatus.yaml" hash="7c2d30f7e376da449185e19f3b2a642a"/><file name="testGetPaypalStatus.yaml" hash="8381a01d6d22190b4d1e5c14db984a5d"/></dir></dir><file name="Wspp.php" hash="8bda17bc29a6f006e51ec54063c7b42c"/></dir></dir><dir name="Model"><dir name="Export"><dir name="Product"><file name="XmlTest.php" hash="a18e34f11f4e8270014605593202dcf9"/></dir></dir><dir name="Modules"><dir name="Affiliate"><file name="RouterTest.php" hash="e84df3fe416472465a98742030f93662"/></dir></dir><file name="ObserverTest.php" hash="bd6dea886fed4a44f5a3f581621a833a"/><dir name="Payment"><dir name="Abstract"><dir name="fixtures"><file name="testIsDisabled.yaml" hash="53ed5e65872f20c2328430e0e395e70f"/><file name="testIsEnabled.yaml" hash="53ed5e65872f20c2328430e0e395e70f"/></dir></dir><file name="Abstract.php" hash="7dc37f4b6c2a911a726a0395ae5e49eb"/><dir name="Cc"><dir name="Abstract"><dir name="providers"><file name="testGetCcTypeName.yaml" hash="eaf5dc89060f82581dea1a116c58e5dc"/></dir></dir><file name="Abstract.php" hash="ccf09de30cde5ee26757794e2a509896"/><file name="Authn.php" hash="77306ad6afc450df8a45a1d6a177ff32"/><file name="AuthnAbstract.php" hash="11784c806b9ca43772af538a13dea371"/></dir><file name="Cc.php" hash="8da9d7be59ca374d8d69e587d6c47464"/><dir name="Pp"><file name="AbstractTest.php" hash="1369367e5198c8178a475eccd193da35"/></dir><dir name="Router"><file name="Exception.php" hash="f7619c0f81e3aec39171687b3fd44185"/><dir name="providers"><file name="testGetModelCombinations.yaml" hash="e74482392a5c0a767903c73628dbfc21"/><file name="testMethodPart.yaml" hash="f9e17d95fba5fed400d4bbfce722212d"/></dir></dir><file name="Router.php" hash="42c755b3d736deb853548db48e2cbe3f"/><file name="RouterAbstract.php" hash="8f3207a8c6db231f72c81d891919cdbd"/><dir name="Simple"><file name="Billsafe.php" hash="82672c2300658c22c6fe0165245b5590"/><dir name="Cod"><file name="Msp.php" hash="d87f920cb0db4267f7246ea5542c2867"/><file name="Native.php" hash="9699b7aa21466cb2014f27d924ac7717"/><file name="Phoenix107.php" hash="c482e1e2a78fc9c5d277d22c3e4271c2"/><file name="Phoenix108.php" hash="f0f6847ea8279388cb12915f7aeb6597"/><dir name="fixtures"><file name="testGetCodMspMethod.yaml" hash="877ac87663c27392723481e813adac94"/><file name="testGetCodNativeMethod.yaml" hash="78dec590236fda34a7baa1681f1f799b"/><file name="testGetCodPhoenixMethod.yaml" hash="d47bddf587fad20d43acec341eb97c55"/><file name="testGetNoCodMethod.yaml" hash="f598847006617b5ed14f83d677739951"/></dir></dir><file name="Cod.php" hash="03391eaa3b2233c8d51a020e09dacde4"/><file name="Invoice.php" hash="08161a51fab47b14b652da12819337bf"/><dir name="Mws"><file name="Mws.php" hash="ec0f5f5b20656367416e505213439819"/><file name="Mws15.php" hash="06b3ada52a543d31bbf877032450368e"/></dir><file name="Mws.php" hash="9645cc9098c989424644de6b2f8bcfbd"/><dir name="Paypal"><file name="Express.php" hash="23da162636ff6ccca1e703b1967c14cf"/><dir name="fixtures"><file name="testGetPpExpressMethod.yaml" hash="304d7be2dcefedfe925695b85ead1ef7"/><file name="testGetPpStandardMethod.yaml" hash="79830109fcd1f32140f97cfd0caf4ab3"/></dir></dir><file name="Paypal.php" hash="cce4b99dcf9ee10621af4c6b24538a8e"/><dir name="Prepay"><file name="Checkmo.php" hash="b4bf41747b9e20c76d22f39fdafe6318"/><file name="Native.php" hash="dd31b6d04518750a1d03a7f9b85510f0"/><file name="Phoenix.php" hash="c8c7a408d8bf13917083826eed369f12"/><dir name="fixtures"><file name="testGetAllPrepayEnabled.yaml" hash="f4fd365d15f4a72a27056abc86254d32"/><file name="testGetPrepayNativeMethod.yaml" hash="10fc3dd5a6ea63187eb11c0f8dfcdce4"/><file name="testGetPrepayPhoenixMethod.yaml" hash="e8e4ab7d7e995aea4e701e2aac72c9c0"/></dir></dir><file name="Prepay.php" hash="410b8d87c6c3c2d726cc3a4dd59e85fb"/><file name="Shopgate.php" hash="744c9424ad4db0917e437140662c6298"/><dir name="Sue"><file name="Sue118.php" hash="25daa525b66855a9c617d68f58818e1f"/><file name="Sue300.php" hash="38e4539f1adb242b67920f43d93a15fc"/></dir><file name="Sue.php" hash="c6b29f00dbf3e4177b1bc7da20c0af5c"/></dir><file name="Simple.php" hash="8f3d015f1f8e32ddef4ae60c681d6280"/></dir><file name="ProductUtility.php" hash="9f4401a00d0e45455ddfeebc9a40384b"/><file name="Utility.php" hash="f7b78aefc882670c716cbcf5cac4dc99"/></dir></dir><file name="changelog.txt" hash="942cf2d7114e7598c942f676ee69e450"/><dir name="controllers"><dir name="Adminhtml"><file name="ShopgateController.php" hash="b1bb6a24af72d5d151a6773be640c9e9"/></dir><file name="FrameworkController.php" hash="2152205bd372d999a56eb378ed810a8d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="ed53de480c8a0642b7ae75c59f1ff8df"/><file name="config.xml" hash="071fdf8dfb0fb91a8781f70f18d959e7"/><file name="system.xml" hash="c7f55765dac95c436147785275f4b362"/></dir><file name="licence.txt" hash="dec6ca25c420b36a2e400caf1541c923"/><dir name="sql"><dir name="shopgate_setup"><file name="mysql4-install-0.1.0.php" hash="069abba038757da43b2ca6c5a0c82aba"/><file name="mysql4-install-2.1.45.php" hash="eddddf157e55a87edc77361dde564463"/><file name="mysql4-install-2.2.0.php" hash="eddddf157e55a87edc77361dde564463"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="cc637fc1bc511e745f02a56d0b36e3be"/><file name="mysql4-upgrade-1.0.5-1.0.7.php" hash="1e800d9d235b817bf5be698288bc0129"/><file name="mysql4-upgrade-2.1.44-2.1.45.php" hash="134d0b665746c61d364f6fd93d83f46c"/><file name="mysql4-upgrade-2.1.49-2.1.50.php" hash="e0fd395bb9c25c0e544c455186cfe7c9"/><file name="mysql4-upgrade-2.4.28-2.4.29.php" hash="9c8c868ce90e42b56182b23b78d6fbe7"/><file name="mysql4-upgrade-2.4.29-2.4.30.php" hash="ca3ee1e2f337bcea26264a17f603548e"/><file name="mysql4-upgrade-2.7.5-2.8.0.php" hash="34393a58a0b4ec90b4e618d3ff4cc565"/><file name="mysql4-upgrade-2.9.15-2.9.16.php" hash="980e7cc83f912ef4f630ef8d1cb964d1"/><file name="mysql4-upgrade-2.9.36-2.9.37.php" hash="07dafdabd4764c9685f1317ebbbe842f"/><file name="mysql4-upgrade-2.9.4-2.9.5.php" hash="dc6770e94c31d2f79915528c0993d546"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Shopgate_Framework.csv" hash="eb25c8acdee6d7a4d6b51c354774e0ce"/></dir><dir name="de_CH"><file name="Shopgate_Framework.csv" hash="eb25c8acdee6d7a4d6b51c354774e0ce"/></dir><dir name="de_AT"><file name="Shopgate_Framework.csv" hash="2fb25887b4b9c89b2a241759ddc1590b"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="shopgate"><file name="logo.png" hash="b7139047ecc90b15a5710ab0fe77fc81"/><file name="logo_big.png" hash="b98bfcf09766589506a1cca24ca47972"/><file name="logo_small.png" hash="7abf7f774c592eb582c2856e027af798"/><file name="oauth_connect.js" hash="8e5c77d9ad1354f826445f03c91008f4"/><file name="shopgate_admin.css" hash="0fbc07171267b9fb5dba7004a0858f66"/><file name="target.js" hash="80484a4dae515f708c97545d9959673a"/></dir></dir></dir></dir></target><target name="magelib"><dir name="Shopgate"><dir name="assets"><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><file name="js_header.html" hash="7ff2c12f8b7c23542f3ff49b451720a8"/><file name="link_tag.html" hash="f7c53599b55d442fd49f970bd41eb2a4"/><file name="mobile_header.html" hash="17616650e160eaccd24e25729396c5a9"/></dir><file name="changelog.txt" hash="3645c862edb1c302ee6d6d4e967082ce"/><dir name="classes"><file name="apis.php" hash="7d38f4b73eea675ad192d9acedea3b4c"/><file name="configuration.php" hash="264d43767346d16fd8c1fcfdcbec0ca2"/><file name="core.php" hash="3a69225eff9b96b96ede1f561c149413"/><file name="customers.php" hash="24c9dbbcafe379c224fcce4b02d58ad2"/><file name="external_orders.php" hash="7239071113b5decc70ec9672bf6fc3fe"/><dir name="helper"><file name="DataStructure.php" hash="ece9e9f855756777f543d090f5ecc710"/><file name="Pricing.php" hash="fd4c74999abc3bfa05fd74994a2ce78f"/><file name="String.php" hash="10c9396b2975bf0bde86f171932c3074"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><dir name="redirect"><file name="KeywordsManager.php" hash="3e8233fa248cb795642b4306b3ebdd13"/><file name="KeywordsManagerInterface.php" hash="32cda83161084b4f5904eeb5f50a6547"/><file name="LinkBuilder.php" hash="52d193384a8ffed61fd83c5e1befd63c"/><file name="LinkBuilderInterface.php" hash="a755af7b57fda9b9ff1564a0059529d1"/><file name="MobileRedirect.php" hash="1f58517a45d5d8814514001b1e690312"/><file name="MobileRedirectInterface.php" hash="80b8da18c8bf498461c2b8e183bce326"/><file name="Redirector.php" hash="c0949b9bb227a1882fe324caf0bfc31a"/><file name="RedirectorInterface.php" hash="7d48c1bf54e4fb8371e403e90375cc13"/><file name="SettingsManager.php" hash="d1b1722715688da2a095fba8c607f45c"/><file name="SettingsManagerInterface.php" hash="ae16aa5ea4df7f0def80711f8cc14f70"/><file name="TagsGenerator.php" hash="de6e73da61a282d24226065671d67d6b"/><file name="TagsGeneratorInterface.php" hash="1a5c500631331a4ae970d2a442e5d7e2"/><file name="TemplateParser.php" hash="1e087c9ba5720c9065702d9ebfc5723a"/><file name="TemplateParserInterface.php" hash="d6897cd9e5622d1991bb7aab678e37f8"/></dir></dir><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><file name="items.php" hash="107f9bc5fcc0c0dbfe568a3b8235107c"/><dir name="models"><file name="Abstract.php" hash="a32633283eb403a55a166bbad70b3e2f"/><file name="AbstractExport.php" hash="f265f9e906208e1799994d117582be20"/><file name="XmlEmptyObject.php" hash="d6cfdae3bdd858d4f10fcebdb542f533"/><file name="XmlResultObject.php" hash="340804eb0f2ba6bcb6b05311b8bb1f11"/><dir name="catalog"><file name="Attribute.php" hash="28d8f3bc6c416661d1eaa77726ba7009"/><file name="AttributeGroup.php" hash="0270086ec8006ee8231c6b0baa8d6034"/><file name="Category.php" hash="beba58d2796cf7b4ca08ce68de65415b"/><file name="CategoryPath.php" hash="475869aef74c567c8569ee9953210faa"/><file name="Identifier.php" hash="d9a3b16d1fcdec641ca2b0fd77fbd625"/><file name="Input.php" hash="77df45fd89aec19565a5fae7178205bb"/><file name="Manufacturer.php" hash="e45f534f5f6acad118be24ffc63a0460"/><file name="Option.php" hash="fd95fe72bff985ae0b2861da115e2468"/><file name="Price.php" hash="3cb25372ae58bd0c71b342f9ef2dca73"/><file name="Product.php" hash="e0a8a1a9503671d51084a3caaef4239e"/><file name="Property.php" hash="5967f0403a606a27ea4fec71a8402327"/><file name="Relation.php" hash="263cde539af500af911baec4e354079e"/><file name="Review.php" hash="72c94cb1f2a54bafffdb5672d87ecd4d"/><file name="Shipping.php" hash="1fe425496bd9720dc18bd076e56aca9e"/><file name="Stock.php" hash="4e645877e778ec8d02ae98262bfa9663"/><file name="Tag.php" hash="39e7b845ab157d2f707707576e868d64"/><file name="TierPrice.php" hash="9dd757c9c3d193944a5727fbe5cf4704"/><file name="Validation.php" hash="0be71640c1df60ab809347194ec66457"/><file name="Visibility.php" hash="d60c6b8ec486da4afdc46a00d65ad172"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><dir name="media"><file name="Attachment.php" hash="c074ef3426c2506350cbf5ff0133c89d"/><file name="Image.php" hash="c9319f2a82811239313e328eaf7e2094"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><dir name="redirect"><file name="DeeplinkSuffix.php" hash="e6aebbb49db1b3b1d0bbb3a5f8e52927"/><file name="DeeplinkSuffixValue.php" hash="809684ff8f7d588d39060f5469e2c3b0"/><file name="DeeplinkSuffixValueDisabled.php" hash="83ff30aeeaf40c070f71b29b7f2bbbd8"/><file name="DeeplinkSuffixValueUnset.php" hash="1275996c7d012acfa3fbd6cbe43b08b3"/><file name="HtmlTag.php" hash="e5494a280dd090e3869445431e6c8c2a"/><file name="HtmlTagAttribute.php" hash="368c63b7c3043f7ae0bee107527152de"/><file name="HtmlTagVariable.php" hash="1484f93ec0e69b3f94313e4cac849e0f"/></dir></dir><file name="orders.php" hash="db9fb6643aafe97c93447e4fcc950b6b"/><file name="redirect.php" hash="75ba604b4a9885e861a96683e566ac5c"/></dir><dir name="config"><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name="index.php" hash="de19abc78063ea9a4112964c79946f1c"/><file name="shopgate.php" hash="248033be19931f7eccdc40d12e59d1bf"/><file name="shopgate_license.txt" hash="21fbb2f00b832416916b27c5e3f5d6d1"/><dir name="temp"><dir name="cache"><file name="index.php" hash="7573387748996e2dd9e02a237056f158"/></dir><file name="index.php" hash="7573387748996e2dd9e02a237056f158"/><dir name="logs"><file name="index.php" hash="7573387748996e2dd9e02a237056f158"/></dir></dir><dir name="tests"><dir name="classes"><dir name="helper"><dir name="redirect"><file name="KeywordsManagerTest.php" hash="185c285d78e7c4e25ede957918018fe6"/><file name="TemplateParserTest.php" hash="aa7aea33f78f0fda58437c83421d2f31"/></dir></dir></dir></dir><dir name="vendors"><file name="2d_is.php" hash="087decaca87ee85d548d8caaa43f1212"/><file name="BSD_license.txt" hash="2df4dd93533ca2c19f6f2d601bc3e0d5"/><file name="JSON.php" hash="cbb23366cd8c20319292458a87dc2870"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name=".htaccess" hash="34479bc8d9df775c38a980ecaf6f3f4b"/></dir></target><target name="mage"><dir name="app"><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="shopgate.xml" hash="608ba89093ef89e1c182cd6085dbf3b1"/></dir><dir name="template"><dir name="shopgate"><dir name="header"><file name="no_link.phtml" hash="66bf6065ceb392d996b774d710bdf504"/></dir><file name="mobile_website.phtml" hash="229cbefd12ea77676f8af9c7159528ea"/><dir name="payment"><file name="mobile_payment.phtml" hash="1e18979028fb13e99af7c595c75a5d27"/><file name="shopgate.phtml" hash="1e18979028fb13e99af7c595c75a5d27"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="shopgate.xml" hash="b7050c6ea4568887cbbc0fc7d8346f97"/></dir><dir name="template"><dir name="shopgate"><dir name="oauth"><dir name="config"><file name="connector.phtml" hash="478c309bdde7834bf20a48b65a4699fb"/></dir><dir name="connect"><file name="info.phtml" hash="4f75dc4311616081873a7d416b96c1c2"/><file name="overlay.phtml" hash="2a17d5b6ff8023568437b194f8a9d482"/></dir><file name="connect.phtml" hash="6956aa22eedf549c4565304b4e4a4ab9"/><file name="data.phtml" hash="09b4c5d83863f104db7a018510cdb315"/><file name="disconnect.phtml" hash="2858cebe9004c9fb5764f79faee46f87"/><file name="manage.phtml" hash="1f99255efbce4dbdc1ee781820d455b8"/></dir><dir name="payment"><file name="mobile_payment.phtml" hash="75ead900487da35bb0c3c837dea608fa"/><file name="notice.phtml" hash="750562568091454029dc6b4db1221b5e"/><file name="shopgate.phtml" hash="441cb5df625ee88099feb137cff9fc85"/></dir></dir></dir></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|