Profileolabs_Shoppingflux - Version 0.7.9

Version Notes

- Minor bugfixes & improvements

Download this release

Release Info

Developer ShoppingFlux
Extension Profileolabs_Shoppingflux
Version 0.7.9
Comparing to
See all releases


Code changes from version 0.7.8 to 0.7.9

app/code/community/Profileolabs/Shoppingflux/Block/Export/Flux.php CHANGED
@@ -2,6 +2,16 @@
2
 
3
  class Profileolabs_Shoppingflux_Block_Export_Flux extends Mage_Core_Block_Template {
4
 
 
 
 
 
 
 
 
 
 
 
5
  protected function _toHtml() {
6
  $useAllStores = $this->getForceMultiStores() || $this->getConfig()->getUseAllStoreProducts();
7
  if ($this->getProductSku() && $this->getRequest()->getParam('update') == 1) {
2
 
3
  class Profileolabs_Shoppingflux_Block_Export_Flux extends Mage_Core_Block_Template {
4
 
5
+ protected function _loadCache() {
6
+ return false;
7
+ }
8
+
9
+ protected function _saveCache($data)
10
+ {
11
+ return;
12
+ }
13
+
14
+
15
  protected function _toHtml() {
16
  $useAllStores = $this->getForceMultiStores() || $this->getConfig()->getUseAllStoreProducts();
17
  if ($this->getProductSku() && $this->getRequest()->getParam('update') == 1) {
app/code/community/Profileolabs/Shoppingflux/Model/Export/Flux.php CHANGED
@@ -113,7 +113,9 @@ class Profileolabs_Shoppingflux_Model_Export_Flux extends Mage_Core_Model_Abstra
113
  if (!$store_id || $store_id == $storeId) {
114
  if(!$isCurrentStore) {
115
  $appEmulation = Mage::getSingleton('core/app_emulation');
116
- $initialEnvironmentInfo = $appEmulation->startEnvironmentEmulation($storeId);
 
 
117
  }
118
  try {
119
  $collection = Mage::getModel('profileolabs_shoppingflux/export_flux')->getCollection();
@@ -126,11 +128,11 @@ class Profileolabs_Shoppingflux_Model_Export_Flux extends Mage_Core_Model_Abstra
126
  $this->updateProductInFlux($item->getSku(), $storeId);
127
  }
128
  $this->checkForMissingProducts($storeId, $maxImportLimit);
129
- if(!$isCurrentStore) {
130
  $appEmulation->stopEnvironmentEmulation($initialEnvironmentInfo);
131
  }
132
  } catch(Exception $e) {
133
- if(!$isCurrentStore) {
134
  $appEmulation->stopEnvironmentEmulation($initialEnvironmentInfo);
135
  }
136
  }
@@ -176,6 +178,15 @@ class Profileolabs_Shoppingflux_Model_Export_Flux extends Mage_Core_Model_Abstra
176
 
177
  if ($product->getTypeId() == 'simple') {
178
  $parentIds = Mage::getResourceSingleton('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
 
 
 
 
 
 
 
 
 
179
  if (!empty($parentIds))
180
  return false;
181
  }
@@ -283,14 +294,16 @@ class Profileolabs_Shoppingflux_Model_Export_Flux extends Mage_Core_Model_Abstra
283
  try {
284
  if(!$isCurrentStore) {
285
  $appEmulation = Mage::getSingleton('core/app_emulation');
286
- $initialEnvironmentInfo = $appEmulation->startEnvironmentEmulation($storeId);
 
 
287
  }
288
  $this->updateProductInFlux($productSku, $storeId);
289
- if(!$isCurrentStore) {
290
  $appEmulation->stopEnvironmentEmulation($initialEnvironmentInfo);
291
  }
292
  } catch(Exception $e) {
293
- if(!$isCurrentStore) {
294
  $appEmulation->stopEnvironmentEmulation($initialEnvironmentInfo);
295
  }
296
  }
@@ -334,7 +347,7 @@ class Profileolabs_Shoppingflux_Model_Export_Flux extends Mage_Core_Model_Abstra
334
  }
335
  $data = array(
336
  'id' => $product->getId(),
337
- 'sku' => $product->getSku(),
338
  'product-url' => $this->cleanUrl($product->getProductUrl(false)),
339
  'is-in-stock' => $_manageStock ? $product->getStockItem()->getIsInStock() : 1,
340
  'qty' => $_manageStock ? round($product->getStockItem()->getQty()) : 100,
113
  if (!$store_id || $store_id == $storeId) {
114
  if(!$isCurrentStore) {
115
  $appEmulation = Mage::getSingleton('core/app_emulation');
116
+ if($appEmulation) { // not available in 1.4
117
+ $initialEnvironmentInfo = $appEmulation->startEnvironmentEmulation($storeId);
118
+ }
119
  }
120
  try {
121
  $collection = Mage::getModel('profileolabs_shoppingflux/export_flux')->getCollection();
128
  $this->updateProductInFlux($item->getSku(), $storeId);
129
  }
130
  $this->checkForMissingProducts($storeId, $maxImportLimit);
131
+ if(!$isCurrentStore && $appEmulation) {
132
  $appEmulation->stopEnvironmentEmulation($initialEnvironmentInfo);
133
  }
134
  } catch(Exception $e) {
135
+ if(!$isCurrentStore && $appEmulation) {
136
  $appEmulation->stopEnvironmentEmulation($initialEnvironmentInfo);
137
  }
138
  }
178
 
179
  if ($product->getTypeId() == 'simple') {
180
  $parentIds = Mage::getResourceSingleton('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
181
+
182
+ //FIX Added on 2014-08-14 to solve a case : unexistant parent found, so product is never exported...
183
+ foreach($parentIds as $k=>$parentId) {
184
+ if(!Mage::getModel('catalog/product')->getCollection()->addFieldToFilter('entity_id', $parentId)->count()) {
185
+ unset($parentIds[$k]);
186
+ }
187
+ }
188
+ //END FIX
189
+
190
  if (!empty($parentIds))
191
  return false;
192
  }
294
  try {
295
  if(!$isCurrentStore) {
296
  $appEmulation = Mage::getSingleton('core/app_emulation');
297
+ if($appEmulation) {
298
+ $initialEnvironmentInfo = $appEmulation->startEnvironmentEmulation($storeId);
299
+ }
300
  }
301
  $this->updateProductInFlux($productSku, $storeId);
302
+ if(!$isCurrentStore && $appEmulation) {
303
  $appEmulation->stopEnvironmentEmulation($initialEnvironmentInfo);
304
  }
305
  } catch(Exception $e) {
306
+ if(!$isCurrentStore && $appEmulation) {
307
  $appEmulation->stopEnvironmentEmulation($initialEnvironmentInfo);
308
  }
309
  }
347
  }
348
  $data = array(
349
  'id' => $product->getId(),
350
+ 'mage-sku' => $product->getSku(),
351
  'product-url' => $this->cleanUrl($product->getProductUrl(false)),
352
  'is-in-stock' => $_manageStock ? $product->getStockItem()->getIsInStock() : 1,
353
  'qty' => $_manageStock ? round($product->getStockItem()->getQty()) : 100,
app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Order.php CHANGED
@@ -432,8 +432,15 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Order extends Varien_Object {
432
  foreach ($productsToIterate as $key => $productSf) {
433
 
434
  $sku = $productSf['SKU'];
 
 
 
 
 
 
 
435
 
436
- if (($productId = $this->getProductModel()->getResource()->getIdBySku($sku)) != false) {
437
  $product = Mage::getModel('profileolabs_shoppingflux/manageorders_product')->load($productId); // $this->getProductModel()->reset()->load($productId);
438
 
439
  $request = new Varien_Object(array('qty' => $productSf['Quantity']));
432
  foreach ($productsToIterate as $key => $productSf) {
433
 
434
  $sku = $productSf['SKU'];
435
+ $useProductId = $this->getConfig()->getConfigData('shoppingflux_mo/manageorders/use_product_id');
436
+
437
+ if($useProductId) {
438
+ $productId = $sku;
439
+ } else {
440
+ $productId = $this->getProductModel()->getResource()->getIdBySku($sku);
441
+ }
442
 
443
+ if ($productId != false) {
444
  $product = Mage::getModel('profileolabs_shoppingflux/manageorders_product')->load($productId); // $this->getProductModel()->reset()->load($productId);
445
 
446
  $request = new Varien_Object(array('qty' => $productSf['Quantity']));
app/code/community/Profileolabs/Shoppingflux/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Profileolabs_Shoppingflux>
5
- <version>0.7.8</version>
6
  </Profileolabs_Shoppingflux>
7
  </modules>
8
  <admin>
@@ -435,6 +435,7 @@
435
  <dimension>dimension</dimension>
436
  </attributes_unknow>
437
  <attributes_know>
 
438
  <name>name</name>
439
  <description>description</description>
440
  <short_description>short_description</short_description>
2
  <config>
3
  <modules>
4
  <Profileolabs_Shoppingflux>
5
+ <version>0.7.9</version>
6
  </Profileolabs_Shoppingflux>
7
  </modules>
8
  <admin>
435
  <dimension>dimension</dimension>
436
  </attributes_unknow>
437
  <attributes_know>
438
+ <sku>name</sku>
439
  <name>name</name>
440
  <description>description</description>
441
  <short_description>short_description</short_description>
app/code/community/Profileolabs/Shoppingflux/etc/system.xml CHANGED
@@ -132,6 +132,16 @@
132
  <show_in_website>1</show_in_website>
133
  <show_in_store>0</show_in_store>
134
  </processing_order_status>
 
 
 
 
 
 
 
 
 
 
135
  </fields>
136
  </manageorders>
137
  <import_customer translate="label" module="profileolabs_shoppingflux">
@@ -1240,6 +1250,17 @@
1240
  <show_in_store>1</show_in_store>
1241
  <sort_order>30</sort_order>
1242
  <fields>
 
 
 
 
 
 
 
 
 
 
 
1243
  <name>
1244
  <label>Product name</label>
1245
  <comment></comment>
132
  <show_in_website>1</show_in_website>
133
  <show_in_store>0</show_in_store>
134
  </processing_order_status>
135
+ <use_product_id>
136
+ <label>Use Product ID's instead of SKU ?</label>
137
+ <comment>Should be yes in most cases.</comment>
138
+ <frontend_type>select</frontend_type>
139
+ <sort_order>25</sort_order>
140
+ <show_in_default>1</show_in_default>
141
+ <show_in_website>1</show_in_website>
142
+ <show_in_store>1</show_in_store>
143
+ <source_model>adminhtml/system_config_source_yesno</source_model>
144
+ </use_product_id>
145
  </fields>
146
  </manageorders>
147
  <import_customer translate="label" module="profileolabs_shoppingflux">
1250
  <show_in_store>1</show_in_store>
1251
  <sort_order>30</sort_order>
1252
  <fields>
1253
+ <sku>
1254
+ <label>Product SKU</label>
1255
+ <comment></comment>
1256
+ <frontend_type>select</frontend_type>
1257
+ <source_model>profileolabs_shoppingflux/export_source_attributes</source_model>
1258
+ <backend_model>profileolabs_shoppingflux/system_config_backend_refresh</backend_model>
1259
+ <sort_order>0</sort_order>
1260
+ <show_in_default>1</show_in_default>
1261
+ <show_in_website>1</show_in_website>
1262
+ <show_in_store>1</show_in_store>
1263
+ </sku>
1264
  <name>
1265
  <label>Product name</label>
1266
  <comment></comment>
app/locale/en_US/Profileolabs_Shoppingflux.csv CHANGED
@@ -201,4 +201,6 @@
201
  "Other attributes to export","Other attributes to export"
202
  "Orders","Orders"
203
  "Enable background generation ?","Enable background generation ?"
204
- "Update feed on background if needed.","Update feed on background if needed."
 
 
201
  "Other attributes to export","Other attributes to export"
202
  "Orders","Orders"
203
  "Enable background generation ?","Enable background generation ?"
204
+ "Update feed on background if needed.","Update feed on background if needed."
205
+ "Use Product ID's instead of SKU ?","Use Product ID's instead of SKU ?"
206
+ "Should be yes in most cases.","Should be yes in most cases."
app/locale/fr_FR/Profileolabs_Shoppingflux.csv CHANGED
@@ -201,4 +201,6 @@
201
  "Other attributes to export","Autres attributs à exporter"
202
  "Orders","Commandes"
203
  "Enable background generation ?","Activer la génération en tache de fond ?"
204
- "Update feed on background if needed.","Mets à jour le flux en tache de fond."
 
 
201
  "Other attributes to export","Autres attributs à exporter"
202
  "Orders","Commandes"
203
  "Enable background generation ?","Activer la génération en tache de fond ?"
204
+ "Update feed on background if needed.","Mets à jour le flux en tache de fond."
205
+ "Use Product ID's instead of SKU ?","Utiliser l'ID produit au lieu du SKU ?"
206
+ "Should be yes in most cases.","Doit être à oui dans la majorité des cas."
package.xml CHANGED
@@ -1,21 +1,19 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Profileolabs_Shoppingflux</name>
4
- <version>0.7.8</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>
8
  <extends/>
9
  <summary>Export your products on price comparison sites and marketplaces, with lift controls.</summary>
10
  <description>This module will allow you to connect your Magento Shopping-Flux (monthly subscription from 79 &#x20AC; / month) to export your products on price comparison sites and marketplaces, with managing your commands directly into your Magento. You'll increase your sales by making available on: . Google Shopping . LeGuide.com . Shopping . Shopzilla . Twenga (and over a hundred other price comparison sites and buying guides) . eBay . Rue Du Commerce . C Market (CDsicount) . PixPlace (Pixmania) . Amazon . PriceMinister (and all, more than a dozen marketplaces) With rise in orders directly into your Magento for a quick and easy management of your orders for your products and the most profitable. with Shopping Flux, you can also create Adwords campaigns for each of your product descriptions, create a shop on FaceBook, etc. ... Shopping Flux Technology is the most innovative of the French market and has many Ecommer&#xE7;ants Magento. Ask a free trial for 1 month on our website : www.shopping-flux.com</description>
11
- <notes>- Background generation is now optional&#xD;
12
- - Update translations&#xD;
13
- - Minor bugfixes &amp; improvements&#xD;
14
  </notes>
15
  <authors><author><name>ShoppingFlux</name><user>ShoppingFlux</user><email>olivier.levy@gmail.com</email></author></authors>
16
- <date>2014-07-21</date>
17
- <time>17:51:19</time>
18
- <contents><target name="magecommunity"><dir name="Profileolabs"><dir name="Shoppingflux"><dir name="Block"><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="b66202a43cdb1e3b178287aa1d7c1d2a"/></dir></dir></dir><file name="Feed.php" hash="02274fcb2c95199c826d8e22be5bb16a"/><file name="Process.php" hash="d5cd1471abfc8ea7f364dfb4610e4fd4"/><dir name="Product"><file name="Grid.php" hash="70febb2c9ecef5a9ec41a12e06df02b5"/></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="aed0df354559ecb9d36d3ddf854c301a"/><file name="Flux.php" hash="c592023b56306258439287d28edf6c85"/><file name="Tracking.php" hash="a01f384121dda81f8ee3faa80ee3a32a"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></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><file name="Order.php" hash="a6d45eb0146fb448f72348724c3151df"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><dir name="Shipping"><file name="Method.php" hash="e4cca2caf90ef55f13c3d55aff5c72bb"/></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="e24753fee3f9da7913a72b7bd0d5be9b"/></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><file name="Config.php" hash="13ccabd19d75028862d951a73dc405d0"/><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="d5b40c0802590151690e69419e587c9d"/><file name="Observer.php" hash="81bccc00143e4e188cc0c3477a026886"/><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="bf113c8f1c7abc94cdabe467a7a1bdd7"/><file name="Attributesprice.php" hash="6cddf3b9562c8dbc56e670b377e341c1"/><dir name="Category"><file name="Level.php" hash="477d3dccefe5720eedc6b5d7a7110c9a"/></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="8da7acf7a455e27e4bb94396f4c85e1b"/></dir><dir name="Export"><file name="Shipments.php" hash="20e617e183366ef5447ea653aa989065"/></dir><file name="Log.php" hash="392d1811b56df12bccb2e7986e588f3d"/><file name="Observer.php" hash="2d34910c331e4bc911a59e5470ad851b"/><file name="Order.php" hash="1dc6b36b8b68a36ca40d67beb2ff4629"/><file name="OrderOLD.php" hash="f25b3ce2d3610eecf201e2d2421aa460"/><dir name="Payment"><dir name="Method"><file name="Purchaseorder.php" hash="4ed46b995590d286b3154e0bbf7ebc63"/></dir></dir><file name="Product.php" hash="0041c5ebcd0aa8ca17f5c1a4f07ec03d"/><dir name="Shipping"><dir name="Carrier"><file name="Shoppingflux.php" hash="1d56b8eac4d74d6f9cce1e8c5a6613bb"/></dir><file name="Method.php" hash="a71d621b210ecdb1e69290f3e0c6f6d2"/></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="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="7eb049ce0997fba04dbf44be95be7997"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Apikey.php" hash="90036cf58c627fcc68920af912171a0c"/><file name="Refresh.php" hash="d53cbdc6ae73c146af67ef5f20d9e4e8"/></dir></dir></dir><file name=".DS_Store" hash="e7218be203fbe7f5c2243a9dea3bf55e"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="GeneralController.php" hash="8086191aa502cb3996f7a154c7926718"/></dir><dir name="Export"><dir name="Adminhtml"><file name="CategoryController.php" hash="d882797e1e0fbff25b312768c6569f04"/><file name="ExportController.php" hash="b496415fe06e284c62692813d8000250"/></dir><file name="FluxController.php" hash="dd529a8f698136fe1612dd53becdf016"/></dir><dir name="Manageorders"><dir name="Adminhtml"><file name="CronController.php" hash="9c43b1b18fb883b4140aaa1d3f82cb1c"/><file name="ImportController.php" hash="e79d3545f9413dde430d703bb13f6a3e"/><file name="LogController.php" hash="f744619a2283468d03e8a3f7f8f0c080"/><file name="OrderController.php" hash="acec967d5c7fa44fd3f716fc48f500a6"/></dir></dir></dir><dir name="doc"><file name="doc_module_1.4.pdf" hash="5590a49838bd67f70f0cacf9605cea2b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="fa2e007d1511d96ca9b37fe92eab2604"/><file name="config.xml" hash="50143bcce32798eae017e29953557b09"/><file name="system.xml" hash="0c7b8f848538b51fd820a95315542a20"/></dir><dir name="sql"><dir name="profileolabs_shoppingflux_setup"><file name="mysql4-install-0.1.0.php" hash="87c47ba97a55bd71dada152b52736be2"/><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"/></dir></dir><file name=".DS_Store" hash="a4ce32669416edb46ed2eff780ea35e8"/></dir><file name=".DS_Store" hash="07ed8102ec80073338a7364c2ac2c414"/></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="df14cd3eca562f5c75e685e15470a653"/></dir><dir name="fr_FR"><file name="Profileolabs_Shoppingflux.csv" hash="84b10feb5c62fbb94e77125427c8a7f2"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="7787fbcc03edc0b4b68d51e211e82049"/></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="af3d64c7cb4b179cbf75b2def62d31f1"/><file name="feed.phtml" hash="1cb4146ef5910af093fe928f48332652"/><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"><file name="total.phtml" hash="ded51585527ad918412dd5f0d0a9b2a7"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="672feff0a0895f920d4037ff131bf5ac"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="672feff0a0895f920d4037ff131bf5ac"/></dir></dir></dir></dir></target></contents>
19
  <compatible/>
20
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
21
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Profileolabs_Shoppingflux</name>
4
+ <version>0.7.9</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>
8
  <extends/>
9
  <summary>Export your products on price comparison sites and marketplaces, with lift controls.</summary>
10
  <description>This module will allow you to connect your Magento Shopping-Flux (monthly subscription from 79 &#x20AC; / month) to export your products on price comparison sites and marketplaces, with managing your commands directly into your Magento. You'll increase your sales by making available on: . Google Shopping . LeGuide.com . Shopping . Shopzilla . Twenga (and over a hundred other price comparison sites and buying guides) . eBay . Rue Du Commerce . C Market (CDsicount) . PixPlace (Pixmania) . Amazon . PriceMinister (and all, more than a dozen marketplaces) With rise in orders directly into your Magento for a quick and easy management of your orders for your products and the most profitable. with Shopping Flux, you can also create Adwords campaigns for each of your product descriptions, create a shop on FaceBook, etc. ... Shopping Flux Technology is the most innovative of the French market and has many Ecommer&#xE7;ants Magento. Ask a free trial for 1 month on our website : www.shopping-flux.com</description>
11
+ <notes>- Minor bugfixes &amp; improvements&#xD;
 
 
12
  </notes>
13
  <authors><author><name>ShoppingFlux</name><user>ShoppingFlux</user><email>olivier.levy@gmail.com</email></author></authors>
14
+ <date>2014-09-03</date>
15
+ <time>09:25:06</time>
16
+ <contents><target name="magecommunity"><dir name="Profileolabs"><dir name="Shoppingflux"><dir name="Block"><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="b66202a43cdb1e3b178287aa1d7c1d2a"/></dir></dir></dir><file name="Feed.php" hash="02274fcb2c95199c826d8e22be5bb16a"/><file name="Process.php" hash="d5cd1471abfc8ea7f364dfb4610e4fd4"/><dir name="Product"><file name="Grid.php" hash="70febb2c9ecef5a9ec41a12e06df02b5"/></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="aed0df354559ecb9d36d3ddf854c301a"/><file name="Flux.php" hash="69ebd2ff37b6e24adf5f90fc3a7e1f48"/><file name="Tracking.php" hash="a01f384121dda81f8ee3faa80ee3a32a"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></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><file name="Order.php" hash="a6d45eb0146fb448f72348724c3151df"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><dir name="Shipping"><file name="Method.php" hash="e4cca2caf90ef55f13c3d55aff5c72bb"/></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="e24753fee3f9da7913a72b7bd0d5be9b"/></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><file name="Config.php" hash="13ccabd19d75028862d951a73dc405d0"/><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="c49fa4363de922707ed928c0bfc26558"/><file name="Observer.php" hash="81bccc00143e4e188cc0c3477a026886"/><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="bf113c8f1c7abc94cdabe467a7a1bdd7"/><file name="Attributesprice.php" hash="6cddf3b9562c8dbc56e670b377e341c1"/><dir name="Category"><file name="Level.php" hash="477d3dccefe5720eedc6b5d7a7110c9a"/></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="8da7acf7a455e27e4bb94396f4c85e1b"/></dir><dir name="Export"><file name="Shipments.php" hash="20e617e183366ef5447ea653aa989065"/></dir><file name="Log.php" hash="392d1811b56df12bccb2e7986e588f3d"/><file name="Observer.php" hash="2d34910c331e4bc911a59e5470ad851b"/><file name="Order.php" hash="eb403feb4c278e49e9c7346dacbf482f"/><file name="OrderOLD.php" hash="f25b3ce2d3610eecf201e2d2421aa460"/><dir name="Payment"><dir name="Method"><file name="Purchaseorder.php" hash="4ed46b995590d286b3154e0bbf7ebc63"/></dir></dir><file name="Product.php" hash="0041c5ebcd0aa8ca17f5c1a4f07ec03d"/><dir name="Shipping"><dir name="Carrier"><file name="Shoppingflux.php" hash="1d56b8eac4d74d6f9cce1e8c5a6613bb"/></dir><file name="Method.php" hash="a71d621b210ecdb1e69290f3e0c6f6d2"/></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="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="7eb049ce0997fba04dbf44be95be7997"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Apikey.php" hash="90036cf58c627fcc68920af912171a0c"/><file name="Refresh.php" hash="d53cbdc6ae73c146af67ef5f20d9e4e8"/></dir></dir></dir><file name=".DS_Store" hash="e7218be203fbe7f5c2243a9dea3bf55e"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="GeneralController.php" hash="8086191aa502cb3996f7a154c7926718"/></dir><dir name="Export"><dir name="Adminhtml"><file name="CategoryController.php" hash="d882797e1e0fbff25b312768c6569f04"/><file name="ExportController.php" hash="b496415fe06e284c62692813d8000250"/></dir><file name="FluxController.php" hash="dd529a8f698136fe1612dd53becdf016"/></dir><dir name="Manageorders"><dir name="Adminhtml"><file name="CronController.php" hash="9c43b1b18fb883b4140aaa1d3f82cb1c"/><file name="ImportController.php" hash="e79d3545f9413dde430d703bb13f6a3e"/><file name="LogController.php" hash="f744619a2283468d03e8a3f7f8f0c080"/><file name="OrderController.php" hash="acec967d5c7fa44fd3f716fc48f500a6"/></dir></dir></dir><dir name="doc"><file name="doc_module_1.4.pdf" hash="5590a49838bd67f70f0cacf9605cea2b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="fa2e007d1511d96ca9b37fe92eab2604"/><file name="config.xml" hash="3c1dc092fd3e4d6e11bbf3512b7a7901"/><file name="system.xml" hash="1f1077833ee000e30643f9b5bbb0f531"/></dir><dir name="sql"><dir name="profileolabs_shoppingflux_setup"><file name="mysql4-install-0.1.0.php" hash="87c47ba97a55bd71dada152b52736be2"/><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"/></dir></dir><file name=".DS_Store" hash="a4ce32669416edb46ed2eff780ea35e8"/></dir><file name=".DS_Store" hash="07ed8102ec80073338a7364c2ac2c414"/></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="2dbb4b4f0221286b023eabe362aea52e"/></dir><dir name="fr_FR"><file name="Profileolabs_Shoppingflux.csv" hash="7daa0b7c989419cf96ccf622fff7a0d7"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="7787fbcc03edc0b4b68d51e211e82049"/></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="af3d64c7cb4b179cbf75b2def62d31f1"/><file name="feed.phtml" hash="1cb4146ef5910af093fe928f48332652"/><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"><file name="total.phtml" hash="ded51585527ad918412dd5f0d0a9b2a7"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="672feff0a0895f920d4037ff131bf5ac"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="672feff0a0895f920d4037ff131bf5ac"/></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>