Version Notes
- Minor bugfixes & improvements
Download this release
Release Info
Developer | ShoppingFlux |
Extension | Profileolabs_Shoppingflux |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
- app/code/community/Profileolabs/Shoppingflux/Model/Catalog/Resource/Eav/Attribute.php +1 -2
- app/code/community/Profileolabs/Shoppingflux/Model/Export/Flux.php +1 -0
- app/code/community/Profileolabs/Shoppingflux/Model/Export/Observer.php +6 -2
- app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Convert/Customer.php +1 -0
- app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Observer.php +1 -2
- app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Order.php +22 -10
- app/code/community/Profileolabs/Shoppingflux/Model/Service.php +5 -6
- app/code/community/Profileolabs/Shoppingflux/controllers/Export/FluxController.php +8 -3
- app/code/community/Profileolabs/Shoppingflux/controllers/Manageorders/LaunchController.php +16 -0
- app/code/community/Profileolabs/Shoppingflux/etc/config.xml +1 -4
- app/code/community/Profileolabs/Shoppingflux/etc/system.xml +6 -0
- package.xml +4 -4
app/code/community/Profileolabs/Shoppingflux/Model/Catalog/Resource/Eav/Attribute.php
CHANGED
@@ -1,6 +1,5 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
class Profileolabs_Shoppingflux_Model_Catalog_Resource_Eav_Attribute extends Mage_Eav_Model_Entity_Attribute {
|
5 |
|
6 |
public function getSourceModel() {
|
1 |
<?php
|
2 |
+
|
|
|
3 |
class Profileolabs_Shoppingflux_Model_Catalog_Resource_Eav_Attribute extends Mage_Eav_Model_Entity_Attribute {
|
4 |
|
5 |
public function getSourceModel() {
|
app/code/community/Profileolabs/Shoppingflux/Model/Export/Flux.php
CHANGED
@@ -1068,6 +1068,7 @@ class Profileolabs_Shoppingflux_Model_Export_Flux extends Mage_Core_Model_Abstra
|
|
1068 |
|
1069 |
$usedProductsArray[$usedProduct->getId()]['child']["sku"] = $usedProduct->getSku();
|
1070 |
$usedProductsArray[$usedProduct->getId()]['child']["id"] = $usedProduct->getId();
|
|
|
1071 |
$usedProductsArray[$usedProduct->getId()]['child']["price-ttc"] = $price;
|
1072 |
$usedProductsArray[$usedProduct->getId()]['child']["price-before-discount"] = $priceBeforeDiscount;
|
1073 |
$usedProductsArray[$usedProduct->getId()]['child']["discount-amount"] = $discountAmount;
|
1068 |
|
1069 |
$usedProductsArray[$usedProduct->getId()]['child']["sku"] = $usedProduct->getSku();
|
1070 |
$usedProductsArray[$usedProduct->getId()]['child']["id"] = $usedProduct->getId();
|
1071 |
+
$usedProductsArray[$usedProduct->getId()]['child']["child-url"] = $this->cleanUrl($usedProduct->getProductUrl(false));
|
1072 |
$usedProductsArray[$usedProduct->getId()]['child']["price-ttc"] = $price;
|
1073 |
$usedProductsArray[$usedProduct->getId()]['child']["price-before-discount"] = $priceBeforeDiscount;
|
1074 |
$usedProductsArray[$usedProduct->getId()]['child']["discount-amount"] = $discountAmount;
|
app/code/community/Profileolabs/Shoppingflux/Model/Export/Observer.php
CHANGED
@@ -235,8 +235,12 @@ class Profileolabs_Shoppingflux_Model_Export_Observer {
|
|
235 |
$collection->addItem($object);
|
236 |
$apiKey = $this->getConfig()->getApiKey($data['store_id']);
|
237 |
$wsUri = $this->getConfig()->getWsUri();
|
238 |
-
|
239 |
-
|
|
|
|
|
|
|
|
|
240 |
/* * SCHEDULED* */
|
241 |
/*
|
242 |
$data['updated_at'] = date('Y-m-d H:i:s');
|
235 |
$collection->addItem($object);
|
236 |
$apiKey = $this->getConfig()->getApiKey($data['store_id']);
|
237 |
$wsUri = $this->getConfig()->getWsUri();
|
238 |
+
try {
|
239 |
+
$service = new Profileolabs_Shoppingflux_Model_Service($apiKey, $wsUri);
|
240 |
+
$service->updateProducts($collection);
|
241 |
+
} catch(Exception $e) {
|
242 |
+
|
243 |
+
}
|
244 |
/* * SCHEDULED* */
|
245 |
/*
|
246 |
$data['updated_at'] = date('Y-m-d H:i:s');
|
app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Convert/Customer.php
CHANGED
@@ -74,6 +74,7 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Convert_Customer extends Vari
|
|
74 |
if ($address->getTelephone() == "" && $data['PhoneMobile'])
|
75 |
$address->setTelephone($data['PhoneMobile']);
|
76 |
|
|
|
77 |
|
78 |
if($data['PhoneMobile'] && strlen(trim($data['PhoneMobile'])) >= 9) {
|
79 |
if(Mage::getSingleton('profileolabs_shoppingflux/config')->getMobilePhoneAttribute($storeId)) {
|
74 |
if ($address->getTelephone() == "" && $data['PhoneMobile'])
|
75 |
$address->setTelephone($data['PhoneMobile']);
|
76 |
|
77 |
+
$address->setStreet(array($data['Street1'], $data['Street2']));
|
78 |
|
79 |
if($data['PhoneMobile'] && strlen(trim($data['PhoneMobile'])) >= 9) {
|
80 |
if(Mage::getSingleton('profileolabs_shoppingflux/config')->getMobilePhoneAttribute($storeId)) {
|
app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Observer.php
CHANGED
@@ -26,10 +26,9 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Observer {
|
|
26 |
$trackUrl = '';
|
27 |
if (is_array($tracks) && !empty($tracks)) {
|
28 |
$firstTrack = array_shift($tracks);
|
29 |
-
if
|
30 |
$carrierInstance = Mage::getSingleton('shipping/config')->getCarrierInstance($firstTrack->getCarrierCode());
|
31 |
if ($carrierInstance) {
|
32 |
-
// Gestion du cas Owebia Shipping
|
33 |
$trackingInfo = $carrierInstance->getTrackingInfo($firstTrack->getData('number'));
|
34 |
$status = $trackingInfo->getStatus();
|
35 |
if (preg_match('%href="(.*)"%i', $status, $regs)) {
|
26 |
$trackUrl = '';
|
27 |
if (is_array($tracks) && !empty($tracks)) {
|
28 |
$firstTrack = array_shift($tracks);
|
29 |
+
if($firstTrack) {
|
30 |
$carrierInstance = Mage::getSingleton('shipping/config')->getCarrierInstance($firstTrack->getCarrierCode());
|
31 |
if ($carrierInstance) {
|
|
|
32 |
$trackingInfo = $carrierInstance->getTrackingInfo($firstTrack->getData('number'));
|
33 |
$status = $trackingInfo->getStatus();
|
34 |
if (preg_match('%href="(.*)"%i', $status, $regs)) {
|
app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Order.php
CHANGED
@@ -298,6 +298,9 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Order extends Varien_Object {
|
|
298 |
public function clearOldOrderFlagFiles() {
|
299 |
$config = new Mage_Core_Model_Config();
|
300 |
$orderFlags = Mage::getStoreConfig('shoppingflux/order_flags');
|
|
|
|
|
|
|
301 |
foreach($orderFlags as $orderId => $importDate) {
|
302 |
if(strtotime($importDate) < time()-3*60*60) {
|
303 |
$config->deleteConfig('shoppingflux/order_flags/' . $orderId);
|
@@ -394,18 +397,20 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Order extends Varien_Object {
|
|
394 |
else
|
395 |
$order = $this->_saveOrder13($orderSf, $storeId);
|
396 |
|
397 |
-
|
398 |
-
|
|
|
399 |
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
|
|
406 |
}
|
407 |
-
}
|
408 |
|
|
|
409 |
//Erase session for the next order
|
410 |
$this->getSession()->clear();
|
411 |
} catch (Exception $e) {
|
@@ -637,6 +642,13 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Order extends Varien_Object {
|
|
637 |
"store_currency_code" => isset($orderSf['Currency'])?$orderSf['Currency']:'EUR',
|
638 |
|
639 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
640 |
|
641 |
$shippingMethod = $this->getConfig()->getShippingMethodFor($orderSf['Marketplace'], $orderSf['ShippingMethod'], $storeId);
|
642 |
if($shippingMethod) {
|
@@ -665,7 +677,7 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Order extends Varien_Object {
|
|
665 |
throw $e;
|
666 |
}
|
667 |
try {
|
668 |
-
$quote->setIsActive(0)->save();
|
669 |
} catch (Exception $ex) {
|
670 |
|
671 |
}
|
298 |
public function clearOldOrderFlagFiles() {
|
299 |
$config = new Mage_Core_Model_Config();
|
300 |
$orderFlags = Mage::getStoreConfig('shoppingflux/order_flags');
|
301 |
+
if(!$orderFlags || empty($orderFlags)) {
|
302 |
+
return;
|
303 |
+
}
|
304 |
foreach($orderFlags as $orderId => $importDate) {
|
305 |
if(strtotime($importDate) < time()-3*60*60) {
|
306 |
$config->deleteConfig('shoppingflux/order_flags/' . $orderId);
|
397 |
else
|
398 |
$order = $this->_saveOrder13($orderSf, $storeId);
|
399 |
|
400 |
+
if($order) {
|
401 |
+
$this->getHelper()->log('Order ' . $orderSf['IdOrder'] . ' has been created (' . $order->getIncrementId() . ' / ' . Mage::app()->getStore()->getId() . ')');
|
402 |
+
$this->_nb_orders_imported++;
|
403 |
|
404 |
+
if (!is_null($order) && $order->getId()) {
|
405 |
+
$useMarketplaceDate = $this->getConfig()->getConfigFlag('shoppingflux_mo/manageorders/use_marketplace_date');
|
406 |
+
//$orderDate = date('Y-m-d H:i:s', Mage::getModel('core/date')->timestamp(time()));
|
407 |
+
if($useMarketplaceDate) {
|
408 |
+
$orderDate = $orderSf['OrderDate'];
|
409 |
+
$this->_changeDateCreatedAt($order, $orderDate);
|
410 |
+
}
|
411 |
}
|
|
|
412 |
|
413 |
+
}
|
414 |
//Erase session for the next order
|
415 |
$this->getSession()->clear();
|
416 |
} catch (Exception $e) {
|
642 |
"store_currency_code" => isset($orderSf['Currency'])?$orderSf['Currency']:'EUR',
|
643 |
|
644 |
);
|
645 |
+
|
646 |
+
if(isset($orderSf['ShippingAddress'][0]['RelayID']) && $orderSf['ShippingAddress'][0]['RelayID']) {
|
647 |
+
if($additionalData['other_shoppingflux']) {
|
648 |
+
$additionalData['other_shoppingflux'] .= '<br/>';
|
649 |
+
}
|
650 |
+
$additionalData['other_shoppingflux'] .= 'Relay ID : ' . $orderSf['ShippingAddress'][0]['RelayID'];
|
651 |
+
}
|
652 |
|
653 |
$shippingMethod = $this->getConfig()->getShippingMethodFor($orderSf['Marketplace'], $orderSf['ShippingMethod'], $storeId);
|
654 |
if($shippingMethod) {
|
677 |
throw $e;
|
678 |
}
|
679 |
try {
|
680 |
+
$quote->setIsActive(0)->setUpdatedAt(date('Y-m-d H:i:s', strtotime('-1 year')))->save();
|
681 |
} catch (Exception $ex) {
|
682 |
|
683 |
}
|
app/code/community/Profileolabs/Shoppingflux/Model/Service.php
CHANGED
@@ -105,7 +105,7 @@ class Profileolabs_Shoppingflux_Model_Service extends Varien_Object {
|
|
105 |
|
106 |
$responseText = $response->getBody();
|
107 |
|
108 |
-
|
109 |
<Result>
|
110 |
<Request>
|
111 |
<Date>2015-06-02T11:08:42+01:00</Date><Call>GetOrders</Call><Token>bezeezra17ee07d2a87e444827c18a77e01d</Token><Mode>Sandbox</Mode><Version>2</Version>
|
@@ -113,7 +113,7 @@ class Profileolabs_Shoppingflux_Model_Service extends Varien_Object {
|
|
113 |
<Response>
|
114 |
<Orders>
|
115 |
<Order>
|
116 |
-
<IdOrder>402-
|
117 |
<Marketplace>Amazon</Marketplace>
|
118 |
<Currency>EUR</Currency>
|
119 |
<TotalAmount>299.00</TotalAmount>
|
@@ -121,14 +121,14 @@ class Profileolabs_Shoppingflux_Model_Service extends Varien_Object {
|
|
121 |
<TotalShipping>0.00</TotalShipping>
|
122 |
<TotalFees>0.49</TotalFees>
|
123 |
<NumberOfProducts>1</NumberOfProducts>
|
124 |
-
<OrderDate>2015-
|
125 |
<Other></Other>
|
126 |
<ShippingMethod>Nouvelle Shipping method</ShippingMethod>
|
127 |
<BillingAddress><LastName>moon chan kim</LastName><FirstName></FirstName><Phone>0698750828</Phone><PhoneMobile></PhoneMobile><Street><![CDATA[121 rue du faubourg du temple etg 2, porte droit]]></Street><Street1><![CDATA[121 rue du faubourg du temple]]></Street1><Street2><![CDATA[etg 2, porte droit]]></Street2><Company><![CDATA[]]></Company><PostalCode>75010</PostalCode><Town><![CDATA[paris]]></Town><Country>FR</Country><Email>vbdels5s4sfpc98p7@marketplace.amazon.fr</Email></BillingAddress>
|
128 |
-
<ShippingAddress><LastName>moon chan kim</LastName><FirstName></FirstName><Phone>0698750828</Phone><PhoneMobile></PhoneMobile><Street><![CDATA[121 rue du faubourg du temple etg 2, porte droit]]></Street><Street1><![CDATA[121 rue du faubourg du temple]]></Street1><Street2><![CDATA[etg 2, porte droit]]></Street2><Company><![CDATA[]]></Company><PostalCode>75010</PostalCode><Town><![CDATA[paris]]></Town><Country>FR</Country><Email>vbldes5s4sfpc98p7@marketplace.amazon.fr</Email></ShippingAddress>
|
129 |
<Products>
|
130 |
<Product>
|
131 |
-
<SKU>
|
132 |
<Quantity>1</Quantity>
|
133 |
<Price>8.000000</Price>
|
134 |
<Ecotax>0</Ecotax>
|
@@ -138,7 +138,6 @@ class Profileolabs_Shoppingflux_Model_Service extends Varien_Object {
|
|
138 |
</Orders>
|
139 |
</Response>
|
140 |
</Result>';
|
141 |
-
*
|
142 |
*/
|
143 |
|
144 |
|
105 |
|
106 |
$responseText = $response->getBody();
|
107 |
|
108 |
+
/* $responseText = '<?xml version="1.0" encoding="utf-8"?>
|
109 |
<Result>
|
110 |
<Request>
|
111 |
<Date>2015-06-02T11:08:42+01:00</Date><Call>GetOrders</Call><Token>bezeezra17ee07d2a87e444827c18a77e01d</Token><Mode>Sandbox</Mode><Version>2</Version>
|
113 |
<Response>
|
114 |
<Orders>
|
115 |
<Order>
|
116 |
+
<IdOrder>402-81an7840e085-1568300</IdOrder>
|
117 |
<Marketplace>Amazon</Marketplace>
|
118 |
<Currency>EUR</Currency>
|
119 |
<TotalAmount>299.00</TotalAmount>
|
121 |
<TotalShipping>0.00</TotalShipping>
|
122 |
<TotalFees>0.49</TotalFees>
|
123 |
<NumberOfProducts>1</NumberOfProducts>
|
124 |
+
<OrderDate>2015-11-05T13:09:41+01:00</OrderDate>
|
125 |
<Other></Other>
|
126 |
<ShippingMethod>Nouvelle Shipping method</ShippingMethod>
|
127 |
<BillingAddress><LastName>moon chan kim</LastName><FirstName></FirstName><Phone>0698750828</Phone><PhoneMobile></PhoneMobile><Street><![CDATA[121 rue du faubourg du temple etg 2, porte droit]]></Street><Street1><![CDATA[121 rue du faubourg du temple]]></Street1><Street2><![CDATA[etg 2, porte droit]]></Street2><Company><![CDATA[]]></Company><PostalCode>75010</PostalCode><Town><![CDATA[paris]]></Town><Country>FR</Country><Email>vbdels5s4sfpc98p7@marketplace.amazon.fr</Email></BillingAddress>
|
128 |
+
<ShippingAddress><RelayID>1234</RelayID><LastName>moon chan kim</LastName><FirstName></FirstName><Phone>0698750828</Phone><PhoneMobile></PhoneMobile><Street><![CDATA[121 rue du faubourg du temple etg 2, porte droit]]></Street><Street1><![CDATA[121 rue du faubourg du temple]]></Street1><Street2><![CDATA[etg 2, porte droit]]></Street2><Company><![CDATA[]]></Company><PostalCode>75010</PostalCode><Town><![CDATA[paris]]></Town><Country>FR</Country><Email>vbldes5s4sfpc98p7@marketplace.amazon.fr</Email></ShippingAddress>
|
129 |
<Products>
|
130 |
<Product>
|
131 |
+
<SKU>CLAVIER</SKU>
|
132 |
<Quantity>1</Quantity>
|
133 |
<Price>8.000000</Price>
|
134 |
<Ecotax>0</Ecotax>
|
138 |
</Orders>
|
139 |
</Response>
|
140 |
</Result>';
|
|
|
141 |
*/
|
142 |
|
143 |
|
app/code/community/Profileolabs/Shoppingflux/controllers/Export/FluxController.php
CHANGED
@@ -9,7 +9,7 @@ class Profileolabs_Shoppingflux_Export_FluxController extends Mage_Core_Controll
|
|
9 |
public function testAction() {
|
10 |
ini_set('display_errors', 1);
|
11 |
|
12 |
-
|
13 |
//Mage::app()->cleanCache();
|
14 |
$resource = Mage::getSingleton('core/resource');
|
15 |
$readConnection = $resource->getConnection('core_read');
|
@@ -23,8 +23,13 @@ ALTER TABLE `{$installer->getTable('shoppingflux_export_flux')}` ADD INDEX ( `
|
|
23 |
");*/
|
24 |
//$results = $readConnection->fetchAll('SHOW COLUMNS FROM '.$installer->getTable('shoppingflux_export_flux'));
|
25 |
// $results = $readConnection->fetchAll("SHOW INDEXES FROM shoppingflux_export_flux");
|
26 |
-
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
|
30 |
//Mage::getModel('profileolabs_shoppingflux/export_flux')->checkForDeletedProducts();
|
9 |
public function testAction() {
|
10 |
ini_set('display_errors', 1);
|
11 |
|
12 |
+
die();
|
13 |
//Mage::app()->cleanCache();
|
14 |
$resource = Mage::getSingleton('core/resource');
|
15 |
$readConnection = $resource->getConnection('core_read');
|
23 |
");*/
|
24 |
//$results = $readConnection->fetchAll('SHOW COLUMNS FROM '.$installer->getTable('shoppingflux_export_flux'));
|
25 |
// $results = $readConnection->fetchAll("SHOW INDEXES FROM shoppingflux_export_flux");
|
26 |
+
$results = $readConnection->fetchAll("SELECT * FROM sales_flat_shipment_track where track_number ='CD108646420BE'");
|
27 |
+
var_dump($results);
|
28 |
+
//die();
|
29 |
+
|
30 |
+
$track = Mage::getModel('sales/order_shipment_track')->load(8294);
|
31 |
+
var_dump($track->getData(), $track->getStatus(), $track->getUrl());
|
32 |
+
die();
|
33 |
|
34 |
|
35 |
//Mage::getModel('profileolabs_shoppingflux/export_flux')->checkForDeletedProducts();
|
app/code/community/Profileolabs/Shoppingflux/controllers/Manageorders/LaunchController.php
CHANGED
@@ -5,10 +5,26 @@ class Profileolabs_Shoppingflux_Manageorders_LaunchController extends Mage_Core_
|
|
5 |
|
6 |
|
7 |
public function getordersAction() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
Mage::getModel('profileolabs_shoppingflux/manageorders_order')->manageOrders();
|
9 |
}
|
10 |
|
11 |
public function updateordersAction() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
Mage::getModel('profileolabs_shoppingflux/manageorders_observer')->sendScheduledShipments();
|
13 |
}
|
14 |
|
5 |
|
6 |
|
7 |
public function getordersAction() {
|
8 |
+
$forceStore = $this->getRequest()->getParam('force_store', false);
|
9 |
+
|
10 |
+
if($forceStore) {
|
11 |
+
$appEmulation = Mage::getSingleton('core/app_emulation');
|
12 |
+
if ($appEmulation) { // not available in 1.4
|
13 |
+
$appEmulation->startEnvironmentEmulation($forceStore);
|
14 |
+
}
|
15 |
+
}
|
16 |
Mage::getModel('profileolabs_shoppingflux/manageorders_order')->manageOrders();
|
17 |
}
|
18 |
|
19 |
public function updateordersAction() {
|
20 |
+
$forceStore = $this->getRequest()->getParam('force_store', false);
|
21 |
+
|
22 |
+
if($forceStore) {
|
23 |
+
$appEmulation = Mage::getSingleton('core/app_emulation');
|
24 |
+
if ($appEmulation) { // not available in 1.4
|
25 |
+
$appEmulation->startEnvironmentEmulation($forceStore);
|
26 |
+
}
|
27 |
+
}
|
28 |
Mage::getModel('profileolabs_shoppingflux/manageorders_observer')->sendScheduledShipments();
|
29 |
}
|
30 |
|
app/code/community/Profileolabs/Shoppingflux/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Profileolabs_Shoppingflux>
|
5 |
-
<version>1.0.
|
6 |
</Profileolabs_Shoppingflux>
|
7 |
</modules>
|
8 |
<admin>
|
@@ -37,9 +37,6 @@
|
|
37 |
<Company>
|
38 |
<to_customer_address>company</to_customer_address>
|
39 |
</Company>
|
40 |
-
<Street>
|
41 |
-
<to_customer_address>street_full</to_customer_address>
|
42 |
-
</Street>
|
43 |
<PostalCode>
|
44 |
<to_customer_address>postcode</to_customer_address>
|
45 |
</PostalCode>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Profileolabs_Shoppingflux>
|
5 |
+
<version>1.0.2</version>
|
6 |
</Profileolabs_Shoppingflux>
|
7 |
</modules>
|
8 |
<admin>
|
37 |
<Company>
|
38 |
<to_customer_address>company</to_customer_address>
|
39 |
</Company>
|
|
|
|
|
|
|
40 |
<PostalCode>
|
41 |
<to_customer_address>postcode</to_customer_address>
|
42 |
</PostalCode>
|
app/code/community/Profileolabs/Shoppingflux/etc/system.xml
CHANGED
@@ -107,6 +107,9 @@
|
|
107 |
<comment>Limit number of orders imported. 10 by default</comment>
|
108 |
</limit_orders>
|
109 |
<new_order_status translate="label">
|
|
|
|
|
|
|
110 |
<label>New order status</label>
|
111 |
<frontend_type>select</frontend_type>
|
112 |
<source_model>adminhtml/system_config_source_order_status_new</source_model>
|
@@ -127,6 +130,9 @@
|
|
127 |
</create_invoice>
|
128 |
<processing_order_status translate="label">
|
129 |
<label>Invoiced order status</label>
|
|
|
|
|
|
|
130 |
<frontend_type>select</frontend_type>
|
131 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
132 |
<sort_order>80</sort_order>
|
107 |
<comment>Limit number of orders imported. 10 by default</comment>
|
108 |
</limit_orders>
|
109 |
<new_order_status translate="label">
|
110 |
+
<depends>
|
111 |
+
<create_invoice>0</create_invoice>
|
112 |
+
</depends>
|
113 |
<label>New order status</label>
|
114 |
<frontend_type>select</frontend_type>
|
115 |
<source_model>adminhtml/system_config_source_order_status_new</source_model>
|
130 |
</create_invoice>
|
131 |
<processing_order_status translate="label">
|
132 |
<label>Invoiced order status</label>
|
133 |
+
<depends>
|
134 |
+
<create_invoice>1</create_invoice>
|
135 |
+
</depends>
|
136 |
<frontend_type>select</frontend_type>
|
137 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
138 |
<sort_order>80</sort_order>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Profileolabs_Shoppingflux</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
@@ -11,9 +11,9 @@
|
|
11 |
<notes>- Minor bugfixes & improvements
|
12 |
</notes>
|
13 |
<authors><author><name>ShoppingFlux</name><user>ShoppingFlux</user><email>olivier.levy@gmail.com</email></author></authors>
|
14 |
-
<date>
|
15 |
-
<time>
|
16 |
-
<contents><target name="magecommunity"><dir name="Profileolabs"><dir name="Shoppingflux"><dir name="Block"><dir name="Adminhtml"><dir name="Register"><file name="Notification.php" hash="13c5b3fccfd09dca376d4bc03f883384"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Abstract.php" hash="9046ac88c58d7768d28047c5102789ae"/></dir></dir></dir></dir></dir><dir name="Export"><dir name="Adminhtml"><dir name="Catalog"><dir name="Category"><dir name="Edit"><file name="Form.php" hash="da466a657f2b80567ef576711a190805"/></dir><dir name="Tab"><file name="Default.php" hash="da1c24f56e463d6e93488633fc41539d"/></dir></dir></dir><file name="Feed.php" hash="a6bfac2be7c99ba5631626404e231ab0"/><file name="Process.php" hash="d5cd1471abfc8ea7f364dfb4610e4fd4"/><dir name="Product"><file name="Grid.php" hash="03b7aa3a458a0405d5d22ce7c0566033"/></dir><file name="Product.php" hash="f71a0d0f25e2484f74f1ceaeee514d3f"/><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Bool.php" hash="2717fd3964299bb372c355427c8136d7"/></dir></dir></dir></dir></dir><file name="Flow.php" hash="51cfa87ab0417ff26669a33bd22b50fa"/><file name="Flux.php" hash="c6da5407ccd3df3c5cd34883f02b9490"/><file name="Tracking.php" hash="a01f384121dda81f8ee3faa80ee3a32a"/></dir><dir name="Manageorders"><dir name="Adminhtml"><dir name="Cron"><file name="Grid.php" hash="ddfd5d9374446afafef1f545839e869e"/></dir><file name="Cron.php" hash="1a6a4042d3270b56e2dadc80f5c12cfa"/><file name="Import.php" hash="0d675a1731ca646ba57989b8545f4682"/><dir name="Log"><file name="Grid.php" hash="9170b01b3a6d3d558801faeba745390f"/></dir><file name="Log.php" hash="3336bc53002b82b4ab16d18a4e68e0cb"/><dir name="Order"><file name="Grid.php" hash="00cc7d1bb20437d8f7a547e0acfd7f9c"/><dir name="View"><dir name="Tab"><file name="Shoppingflux.php" hash="c0039acf525620c14cc8a1945d44150e"/></dir></dir></dir><file name="Order.php" hash="a6d45eb0146fb448f72348724c3151df"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><dir name="Customer"><file name="Group.php" hash="73164d7a0c51a0577dcb0d5496661f35"/></dir><dir name="Shipping"><dir name="Method"><file name="Extra.php" hash="2f1787d3f7dfdc39b1e5252e48b3f2c2"/></dir><file name="Method.php" hash="520a9e6e1170098764a54ead38233c70"/></dir></dir></dir></dir></dir></dir><dir name="Payment"><dir name="Info"><file name="Purchaseorder.php" hash="df942f5c9a19506ef2bf70ca1d4da809"/></dir></dir></dir><dir name="Tracking"><file name="Buyline.php" hash="a60b19ed533b265a7a2aafe75c03c0fa"/><file name="Roi.php" hash="e34e26dffead694a35798d0397782d55"/></dir></dir><dir name="Helper"><file name="Data.php" hash="11abb1054197fbb3e329f3114a17bba2"/></dir><dir name="Model"><dir name="Attribute"><dir name="Source"><file name="Category.php" hash="49f1f7959c4741c22bbf79b7e0bd24e7"/></dir></dir><dir name="Catalog"><dir name="Product"><file name="Collection.php" hash="8c3a5fe7c329059b6b85a1e0e5ee48fd"/></dir><dir name="Resource"><dir name="Eav"><file name="Attribute.php" hash="e0a9b926e138b9043f05d2da3e973883"/></dir></dir></dir><file name="Config.php" hash="74d82e33dabb7a09d0ba1c1d52e8e3f3"/><dir name="Export"><dir name="Convert"><dir name="Parser"><file name="Product.php" hash="4e50613b82ba84c35eb87f991645c118"/></dir></dir><file name="Flow.php" hash="842fa4b4a49ea86bdeb1cb0441433ccd"/><file name="Flux.php" hash="8d2d66053332bc3072826351d933fdc0"/><file name="Observer.php" hash="1c110fc1e4f81e26661f4ef42e431731"/><dir name="Rewrite"><dir name="Catalog"><file name="Config.php" hash="c87b13b0141123b80cb1ac33eaf75715"/></dir><dir name="CatalogInventory"><dir name="Stock"><file name="Item.php" hash="5249964f31fda6d5b7ff9587e713ca81"/></dir></dir></dir><dir name="Source"><file name="Attributes.php" hash="7c86df4782b77b69c59204a39766a787"/><file name="Attributesprice.php" hash="6cddf3b9562c8dbc56e670b377e341c1"/><dir name="Category"><file name="Level.php" hash="477d3dccefe5720eedc6b5d7a7110c9a"/></dir><dir name="Tracking"><file name="Delay.php" hash="9f375db7fac8d245dd72dc416d20ae28"/></dir><file name="Visibility.php" hash="c2a1494bc2e554074d19c58523c450b2"/></dir><file name="Updates.php" hash="6a12528f1ba69f0e0240ba471b471578"/><file name="Xml.php" hash="d6574955d2a108a91c1ebf84feb1b02b"/><file name="Xmlflow.deprecated.php" hash="960d81e05b332cdb16449029b07f0eca"/><file name="Xmlflow.php" hash="82815362cf6b2127ef961be79e48c127"/></dir><dir name="Manageorders"><dir name="Convert"><file name="Customer.php" hash="ad8f3406a1d5e9b7c093eaed069b39c6"/></dir><dir name="Export"><file name="Shipments.php" hash="20e617e183366ef5447ea653aa989065"/></dir><file name="Log.php" hash="a6c88fc107c3fa207265c97b8568c757"/><file name="Observer.php" hash="e947db8b12fc2f083a4431a3d6eaf14c"/><file name="Order.php" hash="bc4dde07f4159bdb9ff3e7ea853f153f"/><dir name="Payment"><dir name="Method"><file name="Purchaseorder.php" hash="5f04df4c6792a54ba1358f1020f4415f"/></dir></dir><file name="Product.php" hash="0041c5ebcd0aa8ca17f5c1a4f07ec03d"/><dir name="Shipping"><dir name="Carrier"><file name="Shoppingflux.php" hash="7a94de78175c833705386ae1c5ddbe3d"/></dir><file name="Method.php" hash="a71d621b210ecdb1e69290f3e0c6f6d2"/></dir><dir name="Source"><file name="Attributes.php" hash="c9207872ddd962d6b0166d35cfe98626"/></dir></dir><dir name="Mysql4"><dir name="Export"><dir name="Flux"><file name="Collection.php" hash="25a6420bb66aeefb6a8ac0a9e6fc538f"/></dir><file name="Flux.php" hash="6140eeee9d40615eaaba736377aba17e"/><dir name="Updates"><file name="Collection.php" hash="21b355b1db82e4b8a5d1950ac2ffbd18"/></dir><file name="Updates.php" hash="02ef11d051020470231e470f3232f862"/></dir><dir name="Manageorders"><dir name="Export"><dir name="Shipments"><file name="Collection.php" hash="fcdf3c607a8d479beb10a53a618aa225"/></dir><file name="Shipments.php" hash="e06dfaf254a5fd3d8649685b56874258"/></dir><dir name="Log"><file name="Collection.php" hash="0efd8c68937edf98cc9f9bb35bd76f79"/></dir><file name="Log.php" hash="b30bbf3ead209d69993546b29f72ecd7"/><dir name="Shipping"><dir name="Method"><file name="Collection.php" hash="7b2c8fb56625953ea8cd79cc7ddcc9df"/></dir><file name="Method.php" hash="a919a6c61ad6ddefd19ffc287eaa7325"/></dir></dir></dir><dir name="Sales"><dir name="Service"><file name="Quote.php" hash="ebd9c8bd918e12d0c77c26a3ce42ccb5"/></dir></dir><dir name="Service"><dir name="Http"><dir name="Client"><dir name="Adapter"><file name="Curl.php" hash="659ab165cdd8492fdc7ee08b515732ac"/><file name="Stream.php" hash="c3a61972f5ffb625dba59ba53365965d"/></dir></dir></dir></dir><file name="Service.php" hash="274fa05cf7a504acf93c9434b6653de9"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Apikey.php" hash="90036cf58c627fcc68920af912171a0c"/><file name="Category.php" hash="7d25e1953c33d3176b2b510f5d0be381"/><file name="Refresh.php" hash="d53cbdc6ae73c146af67ef5f20d9e4e8"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Shoppingfeed"><dir name="Export"><file name="CategoryController.php" hash="7aa5537d9aedd58aa6fdbcac31f8e10d"/></dir><file name="ExportController.php" hash="de6c4a519b3076946134858d6ddb8df2"/><file name="GeneralController.php" hash="9ac32875ecb62f0befad7993456d46d7"/><dir name="Order"><file name="CronController.php" hash="abb88558c15f2446ba09ca8a1cb48111"/><file name="ImportController.php" hash="2e2822fb67e89465eaae85bf254849b6"/><file name="LogController.php" hash="8905b421f3f12f4d1fd41a7e124826be"/></dir><file name="OrderController.php" hash="78b60bb37f0e43f23ee77d463458d5ae"/></dir></dir><dir name="Export"><file name="FluxController.php" hash="c444e0fbf3675c7e86073b0849328ba0"/></dir><dir name="Manageorders"><file name="LaunchController.php" hash="38c4741a204c55c1b2225a2279f578bc"/></dir></dir><dir name="doc"><file name="ShoppingFeed_US.pdf" hash="0cd685730056d5f2f9c9f8292dead3ae"/><file name="ShoppingFlux_FR.pdf" hash="5590a49838bd67f70f0cacf9605cea2b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="385b2a7b1f745e8958c0e160a9df3514"/><file name="config.xml" hash="5797be2504e667f6b3d6cb354e671f58"/><file name="marketplaces.csv" hash="98b4ca91bd42a1277a91f6a2a59f9603"/><file name="system.xml" hash="9b2385127692010dd211a0219dba536f"/></dir><dir name="sql"><dir name="profileolabs_shoppingflux_setup"><file name="mysql4-install-0.1.0.php" hash="87c47ba97a55bd71dada152b52736be2"/><file name="mysql4-install-0.8.0.php" hash="48e14fe6bea37e0813d4e8011d97f9a9"/><file name="mysql4-install-0.8.5.php" hash="1aae90e495b0a281bb6916d425561620"/><file name="mysql4-install-0.8.6.php" hash="ae6e23c12465b3b091c3235598c20b0e"/><file name="mysql4-install-0.8.7.php" hash="7672f1e89056b6bd476bf7443937dd73"/><file name="mysql4-install-0.9.3.php" hash="33a66ff8e8d4505e0c68f2f027a00750"/><file name="mysql4-install-0.9.9.php" hash="c0f1233e4196ca2012c8c4f3838fd883"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="0f95646d855413c52928ed4c258aacb1"/><file name="mysql4-upgrade-0.3.13-0.3.14.php" hash="4f6a5399ad06457f0ebf57b33353ebe2"/><file name="mysql4-upgrade-0.3.14-0.3.15.php" hash="6215917eef61544fc6f4193d31956df4"/><file name="mysql4-upgrade-0.3.17-0.3.18.php" hash="112b34baecd80300682bda9ba69c8970"/><file name="mysql4-upgrade-0.4.2-0.4.3.php" hash="2322a9d2b5130bc78699c1953df87a04"/><file name="mysql4-upgrade-0.4.6-0.5.0.php" hash="02be6c02a8c77e642ef3e40ded1ba8be"/><file name="mysql4-upgrade-0.5.1-0.5.2.php" hash="0e5414628efee519deff6aff301651c7"/><file name="mysql4-upgrade-0.5.3-0.5.4.php" hash="9dfb5e5895a9a2973dba57a049d9d379"/><file name="mysql4-upgrade-0.5.5-0.5.6.php" hash="e0ebe03688b7eac8252efa0d5b9b4258"/><file name="mysql4-upgrade-0.6.5-0.6.6.php" hash="c58a1219b2858d50a3d72e77ac6ee43c"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="0804f52786bdd97024dee79eb4b68695"/><file name="mysql4-upgrade-0.7.9-0.8.0.php" hash="7fdd68eda7f3162e979995ed2d7f847d"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="edb5ea0572bdc0e75fd402aeaefc4858"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="a80ecd198b298fecbf6807eba980361e"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="b2f8a980fbace011ff9632198ae6c0a5"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="d8c3ba1dd0bbd12c20fc221e03ff2391"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="5e611f9c8f337cbee764e692721520e4"/></dir></dir></dir><file name=".DS_Store" hash="d3146c6d782e4b3220b6aaa51d65eccc"/></dir></target><target name="mageetc"><dir name="modules"><file name="Profileolabs_Shoppingflux.xml" hash="73ec83cf32c72884815a3cac9f754a54"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Profileolabs_Shoppingflux.csv" hash="e1102a462aa9b70b7a268c1ac2fc4151"/></dir><dir name="fr_FR"><file name="Profileolabs_Shoppingflux.csv" hash="e9318215b9447a637bd69f48d03abad3"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="d2ffb38fd9146dd1af653b8a3f45738b"/></dir><dir name="template"><dir name="profileolabs"><dir name="shoppingflux"><dir name="export"><dir name="category"><file name="edit.phtml" hash="8af812638245a0aa59a1c90aa6c20a4f"/></dir><file name="edit.phtml" hash="49c3739d62374c64cd9002d74c890a22"/><file name="feed.phtml" hash="e380f0fa763f112ff153976b97dc3704"/><file name="process.phtml" hash="1dee42b2f14c0862446e5b475aaccad3"/><file name="product.phtml" hash="3d93144b8eb1e16672d610d9c0c35092"/></dir><dir name="manageorders"><file name="import.phtml" hash="6fd3bca397be66fc17d340cfae558fe9"/><dir name="payment"><dir name="info"><file name="purchaseorder.phtml" hash="782768b0e4836b25f46443dda098db29"/></dir></dir><dir name="sales"><dir name="order"><dir name="invoice"><file name="total.phtml" hash="0d8d4aec814c41f80b9d9c475b5da3ae"/></dir><file name="total.phtml" hash="ad58dad0fd4007764f03c74cc5a6ca57"/><dir name="view"><dir name="tab"><file name="shoppingflux.phtml" hash="7492846bef04ca1f0419cd804e7c4599"/></dir></dir></dir></dir></dir><dir name="register"><file name="notification.phtml" hash="80e22e32016bbbfea1c4b8e66ba18579"/></dir><file name="register.phtml" hash="614dfd40a4e74c0db2667ba30aeb71e3"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="7fd081f5a153c3912b924fe5258cc468"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="7fd081f5a153c3912b924fe5258cc468"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="shoppingflux"><file name="ad.png" hash="b76c0f3e4a7084a88ba0527be9fdcc25"/><file name="ad.png.txt" hash="4b54b44ffcb31c68e84f9a553e7fac28"/><file name="logo_us.jpg" hash="cae9e6bcba9814193a59bb07d541edb6"/><file name="s_shoppingfeed.png" hash="8782818108e316533ad090c5b078866f"/><file name="s_shoppingfeed_1.jpg" hash="50b18c2dcbe3bbfa6d0bdb55787da06b"/></dir></dir><dir name="css"><file name="shoppingflux.css" hash="b607a6c8ed09795fdf9fe4876c6ca2d6"/></dir></dir></dir></dir></target><target name="magelocal"><dir name="Varien"><dir name="Data"><dir name="Form"><dir name="Element"><file name="Wcmultiselect.php" hash="304b59d32ecdd9205af1716e528ae4bd"/></dir></dir></dir></dir></target></contents>
|
17 |
<compatible/>
|
18 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
19 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Profileolabs_Shoppingflux</name>
|
4 |
+
<version>1.0.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
11 |
<notes>- Minor bugfixes & improvements
|
12 |
</notes>
|
13 |
<authors><author><name>ShoppingFlux</name><user>ShoppingFlux</user><email>olivier.levy@gmail.com</email></author></authors>
|
14 |
+
<date>2016-01-18</date>
|
15 |
+
<time>18:29:44</time>
|
16 |
+
<contents><target name="magecommunity"><dir name="Profileolabs"><dir name="Shoppingflux"><dir name="Block"><dir name="Adminhtml"><dir name="Register"><file name="Notification.php" hash="13c5b3fccfd09dca376d4bc03f883384"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Abstract.php" hash="9046ac88c58d7768d28047c5102789ae"/></dir></dir></dir></dir></dir><dir name="Export"><dir name="Adminhtml"><dir name="Catalog"><dir name="Category"><dir name="Edit"><file name="Form.php" hash="da466a657f2b80567ef576711a190805"/></dir><dir name="Tab"><file name="Default.php" hash="da1c24f56e463d6e93488633fc41539d"/></dir></dir></dir><file name="Feed.php" hash="a6bfac2be7c99ba5631626404e231ab0"/><file name="Process.php" hash="d5cd1471abfc8ea7f364dfb4610e4fd4"/><dir name="Product"><file name="Grid.php" hash="03b7aa3a458a0405d5d22ce7c0566033"/></dir><file name="Product.php" hash="f71a0d0f25e2484f74f1ceaeee514d3f"/><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Bool.php" hash="2717fd3964299bb372c355427c8136d7"/></dir></dir></dir></dir></dir><file name="Flow.php" hash="51cfa87ab0417ff26669a33bd22b50fa"/><file name="Flux.php" hash="c6da5407ccd3df3c5cd34883f02b9490"/><file name="Tracking.php" hash="a01f384121dda81f8ee3faa80ee3a32a"/></dir><dir name="Manageorders"><dir name="Adminhtml"><dir name="Cron"><file name="Grid.php" hash="ddfd5d9374446afafef1f545839e869e"/></dir><file name="Cron.php" hash="1a6a4042d3270b56e2dadc80f5c12cfa"/><file name="Import.php" hash="0d675a1731ca646ba57989b8545f4682"/><dir name="Log"><file name="Grid.php" hash="9170b01b3a6d3d558801faeba745390f"/></dir><file name="Log.php" hash="3336bc53002b82b4ab16d18a4e68e0cb"/><dir name="Order"><file name="Grid.php" hash="00cc7d1bb20437d8f7a547e0acfd7f9c"/><dir name="View"><dir name="Tab"><file name="Shoppingflux.php" hash="c0039acf525620c14cc8a1945d44150e"/></dir></dir></dir><file name="Order.php" hash="a6d45eb0146fb448f72348724c3151df"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><dir name="Customer"><file name="Group.php" hash="73164d7a0c51a0577dcb0d5496661f35"/></dir><dir name="Shipping"><dir name="Method"><file name="Extra.php" hash="2f1787d3f7dfdc39b1e5252e48b3f2c2"/></dir><file name="Method.php" hash="520a9e6e1170098764a54ead38233c70"/></dir></dir></dir></dir></dir></dir><dir name="Payment"><dir name="Info"><file name="Purchaseorder.php" hash="df942f5c9a19506ef2bf70ca1d4da809"/></dir></dir></dir><dir name="Tracking"><file name="Buyline.php" hash="a60b19ed533b265a7a2aafe75c03c0fa"/><file name="Roi.php" hash="e34e26dffead694a35798d0397782d55"/></dir></dir><dir name="Helper"><file name="Data.php" hash="11abb1054197fbb3e329f3114a17bba2"/></dir><dir name="Model"><dir name="Attribute"><dir name="Source"><file name="Category.php" hash="49f1f7959c4741c22bbf79b7e0bd24e7"/></dir></dir><dir name="Catalog"><dir name="Product"><file name="Collection.php" hash="8c3a5fe7c329059b6b85a1e0e5ee48fd"/></dir><dir name="Resource"><dir name="Eav"><file name="Attribute.php" hash="b72c8ac57ecbc88ccf13a930838e2866"/></dir></dir></dir><file name="Config.php" hash="74d82e33dabb7a09d0ba1c1d52e8e3f3"/><dir name="Export"><dir name="Convert"><dir name="Parser"><file name="Product.php" hash="4e50613b82ba84c35eb87f991645c118"/></dir></dir><file name="Flow.php" hash="842fa4b4a49ea86bdeb1cb0441433ccd"/><file name="Flux.php" hash="12ebb21927551c535180da91922cc0cd"/><file name="Observer.php" hash="795d11dd754b5767c6352f078793206a"/><dir name="Rewrite"><dir name="Catalog"><file name="Config.php" hash="c87b13b0141123b80cb1ac33eaf75715"/></dir><dir name="CatalogInventory"><dir name="Stock"><file name="Item.php" hash="5249964f31fda6d5b7ff9587e713ca81"/></dir></dir></dir><dir name="Source"><file name="Attributes.php" hash="7c86df4782b77b69c59204a39766a787"/><file name="Attributesprice.php" hash="6cddf3b9562c8dbc56e670b377e341c1"/><dir name="Category"><file name="Level.php" hash="477d3dccefe5720eedc6b5d7a7110c9a"/></dir><dir name="Tracking"><file name="Delay.php" hash="9f375db7fac8d245dd72dc416d20ae28"/></dir><file name="Visibility.php" hash="c2a1494bc2e554074d19c58523c450b2"/></dir><file name="Updates.php" hash="6a12528f1ba69f0e0240ba471b471578"/><file name="Xml.php" hash="d6574955d2a108a91c1ebf84feb1b02b"/><file name="Xmlflow.deprecated.php" hash="960d81e05b332cdb16449029b07f0eca"/><file name="Xmlflow.php" hash="82815362cf6b2127ef961be79e48c127"/></dir><dir name="Manageorders"><dir name="Convert"><file name="Customer.php" hash="07babe9af53a6b2006eac1d6e2d94cc5"/></dir><dir name="Export"><file name="Shipments.php" hash="20e617e183366ef5447ea653aa989065"/></dir><file name="Log.php" hash="a6c88fc107c3fa207265c97b8568c757"/><file name="Observer.php" hash="767a0ceb95f28f9090d342e343e7d1f1"/><file name="Order.php" hash="47ae8d4c5e5475ee9b4e0f70630d1b17"/><dir name="Payment"><dir name="Method"><file name="Purchaseorder.php" hash="5f04df4c6792a54ba1358f1020f4415f"/></dir></dir><file name="Product.php" hash="0041c5ebcd0aa8ca17f5c1a4f07ec03d"/><dir name="Shipping"><dir name="Carrier"><file name="Shoppingflux.php" hash="7a94de78175c833705386ae1c5ddbe3d"/></dir><file name="Method.php" hash="a71d621b210ecdb1e69290f3e0c6f6d2"/></dir><dir name="Source"><file name="Attributes.php" hash="c9207872ddd962d6b0166d35cfe98626"/></dir></dir><dir name="Mysql4"><dir name="Export"><dir name="Flux"><file name="Collection.php" hash="25a6420bb66aeefb6a8ac0a9e6fc538f"/></dir><file name="Flux.php" hash="6140eeee9d40615eaaba736377aba17e"/><dir name="Updates"><file name="Collection.php" hash="21b355b1db82e4b8a5d1950ac2ffbd18"/></dir><file name="Updates.php" hash="02ef11d051020470231e470f3232f862"/></dir><dir name="Manageorders"><dir name="Export"><dir name="Shipments"><file name="Collection.php" hash="fcdf3c607a8d479beb10a53a618aa225"/></dir><file name="Shipments.php" hash="e06dfaf254a5fd3d8649685b56874258"/></dir><dir name="Log"><file name="Collection.php" hash="0efd8c68937edf98cc9f9bb35bd76f79"/></dir><file name="Log.php" hash="b30bbf3ead209d69993546b29f72ecd7"/><dir name="Shipping"><dir name="Method"><file name="Collection.php" hash="7b2c8fb56625953ea8cd79cc7ddcc9df"/></dir><file name="Method.php" hash="a919a6c61ad6ddefd19ffc287eaa7325"/></dir></dir></dir><dir name="Sales"><dir name="Service"><file name="Quote.php" hash="ebd9c8bd918e12d0c77c26a3ce42ccb5"/></dir></dir><dir name="Service"><dir name="Http"><dir name="Client"><dir name="Adapter"><file name="Curl.php" hash="659ab165cdd8492fdc7ee08b515732ac"/><file name="Stream.php" hash="c3a61972f5ffb625dba59ba53365965d"/></dir></dir></dir></dir><file name="Service.php" hash="393a1491aa779d016d01362ef90b29d2"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Apikey.php" hash="90036cf58c627fcc68920af912171a0c"/><file name="Category.php" hash="7d25e1953c33d3176b2b510f5d0be381"/><file name="Refresh.php" hash="d53cbdc6ae73c146af67ef5f20d9e4e8"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Shoppingfeed"><dir name="Export"><file name="CategoryController.php" hash="7aa5537d9aedd58aa6fdbcac31f8e10d"/></dir><file name="ExportController.php" hash="de6c4a519b3076946134858d6ddb8df2"/><file name="GeneralController.php" hash="9ac32875ecb62f0befad7993456d46d7"/><dir name="Order"><file name="CronController.php" hash="abb88558c15f2446ba09ca8a1cb48111"/><file name="ImportController.php" hash="2e2822fb67e89465eaae85bf254849b6"/><file name="LogController.php" hash="8905b421f3f12f4d1fd41a7e124826be"/></dir><file name="OrderController.php" hash="78b60bb37f0e43f23ee77d463458d5ae"/></dir></dir><dir name="Export"><file name="FluxController.php" hash="e0dd11e65ad348c7552553e17f8f6a4c"/></dir><dir name="Manageorders"><file name="LaunchController.php" hash="62a6abb2582bcd345fd451a0d38c7c0f"/></dir></dir><dir name="doc"><file name="ShoppingFeed_US.pdf" hash="0cd685730056d5f2f9c9f8292dead3ae"/><file name="ShoppingFlux_FR.pdf" hash="5590a49838bd67f70f0cacf9605cea2b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="385b2a7b1f745e8958c0e160a9df3514"/><file name="config.xml" hash="57919a85aa5dff1361d6e28aa4ae5d3c"/><file name="marketplaces.csv" hash="98b4ca91bd42a1277a91f6a2a59f9603"/><file name="system.xml" hash="9a1ed75ed5ea69a47da4b73e7ee88a15"/></dir><dir name="sql"><dir name="profileolabs_shoppingflux_setup"><file name="mysql4-install-0.1.0.php" hash="87c47ba97a55bd71dada152b52736be2"/><file name="mysql4-install-0.8.0.php" hash="48e14fe6bea37e0813d4e8011d97f9a9"/><file name="mysql4-install-0.8.5.php" hash="1aae90e495b0a281bb6916d425561620"/><file name="mysql4-install-0.8.6.php" hash="ae6e23c12465b3b091c3235598c20b0e"/><file name="mysql4-install-0.8.7.php" hash="7672f1e89056b6bd476bf7443937dd73"/><file name="mysql4-install-0.9.3.php" hash="33a66ff8e8d4505e0c68f2f027a00750"/><file name="mysql4-install-0.9.9.php" hash="c0f1233e4196ca2012c8c4f3838fd883"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="0f95646d855413c52928ed4c258aacb1"/><file name="mysql4-upgrade-0.3.13-0.3.14.php" hash="4f6a5399ad06457f0ebf57b33353ebe2"/><file name="mysql4-upgrade-0.3.14-0.3.15.php" hash="6215917eef61544fc6f4193d31956df4"/><file name="mysql4-upgrade-0.3.17-0.3.18.php" hash="112b34baecd80300682bda9ba69c8970"/><file name="mysql4-upgrade-0.4.2-0.4.3.php" hash="2322a9d2b5130bc78699c1953df87a04"/><file name="mysql4-upgrade-0.4.6-0.5.0.php" hash="02be6c02a8c77e642ef3e40ded1ba8be"/><file name="mysql4-upgrade-0.5.1-0.5.2.php" hash="0e5414628efee519deff6aff301651c7"/><file name="mysql4-upgrade-0.5.3-0.5.4.php" hash="9dfb5e5895a9a2973dba57a049d9d379"/><file name="mysql4-upgrade-0.5.5-0.5.6.php" hash="e0ebe03688b7eac8252efa0d5b9b4258"/><file name="mysql4-upgrade-0.6.5-0.6.6.php" hash="c58a1219b2858d50a3d72e77ac6ee43c"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="0804f52786bdd97024dee79eb4b68695"/><file name="mysql4-upgrade-0.7.9-0.8.0.php" hash="7fdd68eda7f3162e979995ed2d7f847d"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="edb5ea0572bdc0e75fd402aeaefc4858"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="a80ecd198b298fecbf6807eba980361e"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="b2f8a980fbace011ff9632198ae6c0a5"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="d8c3ba1dd0bbd12c20fc221e03ff2391"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="5e611f9c8f337cbee764e692721520e4"/></dir></dir></dir><file name=".DS_Store" hash="d3146c6d782e4b3220b6aaa51d65eccc"/></dir></target><target name="mageetc"><dir name="modules"><file name="Profileolabs_Shoppingflux.xml" hash="73ec83cf32c72884815a3cac9f754a54"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Profileolabs_Shoppingflux.csv" hash="e1102a462aa9b70b7a268c1ac2fc4151"/></dir><dir name="fr_FR"><file name="Profileolabs_Shoppingflux.csv" hash="e9318215b9447a637bd69f48d03abad3"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="d2ffb38fd9146dd1af653b8a3f45738b"/></dir><dir name="template"><dir name="profileolabs"><dir name="shoppingflux"><dir name="export"><dir name="category"><file name="edit.phtml" hash="8af812638245a0aa59a1c90aa6c20a4f"/></dir><file name="edit.phtml" hash="49c3739d62374c64cd9002d74c890a22"/><file name="feed.phtml" hash="e380f0fa763f112ff153976b97dc3704"/><file name="process.phtml" hash="1dee42b2f14c0862446e5b475aaccad3"/><file name="product.phtml" hash="3d93144b8eb1e16672d610d9c0c35092"/></dir><dir name="manageorders"><file name="import.phtml" hash="6fd3bca397be66fc17d340cfae558fe9"/><dir name="payment"><dir name="info"><file name="purchaseorder.phtml" hash="782768b0e4836b25f46443dda098db29"/></dir></dir><dir name="sales"><dir name="order"><dir name="invoice"><file name="total.phtml" hash="0d8d4aec814c41f80b9d9c475b5da3ae"/></dir><file name="total.phtml" hash="ad58dad0fd4007764f03c74cc5a6ca57"/><dir name="view"><dir name="tab"><file name="shoppingflux.phtml" hash="7492846bef04ca1f0419cd804e7c4599"/></dir></dir></dir></dir></dir><dir name="register"><file name="notification.phtml" hash="80e22e32016bbbfea1c4b8e66ba18579"/></dir><file name="register.phtml" hash="614dfd40a4e74c0db2667ba30aeb71e3"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="7fd081f5a153c3912b924fe5258cc468"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="7fd081f5a153c3912b924fe5258cc468"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="shoppingflux"><file name="ad.png" hash="b76c0f3e4a7084a88ba0527be9fdcc25"/><file name="ad.png.txt" hash="4b54b44ffcb31c68e84f9a553e7fac28"/><file name="logo_us.jpg" hash="cae9e6bcba9814193a59bb07d541edb6"/><file name="s_shoppingfeed.png" hash="8782818108e316533ad090c5b078866f"/><file name="s_shoppingfeed_1.jpg" hash="50b18c2dcbe3bbfa6d0bdb55787da06b"/></dir></dir><dir name="css"><file name="shoppingflux.css" hash="b607a6c8ed09795fdf9fe4876c6ca2d6"/></dir></dir></dir></dir></target><target name="magelocal"><dir name="Varien"><dir name="Data"><dir name="Form"><dir name="Element"><file name="Wcmultiselect.php" hash="304b59d32ecdd9205af1716e528ae4bd"/></dir></dir></dir></dir></target></contents>
|
17 |
<compatible/>
|
18 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
19 |
</package>
|