Lengow_Export - Version 2.0.1.3

Version Notes

New version of Lengow's Connector

Download this release

Release Info

Developer Ludovic
Extension Lengow_Export
Version 2.0.1.3
Comparing to
See all releases


Code changes from version 2.0.1.2 to 2.0.1.3

app/code/community/Lengow/Dashboard/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Lengow_Dashboard>
5
- <version>2.0.1.2</version>
6
  </Lengow_Dashboard>
7
  </modules>
8
  <admin>
2
  <config>
3
  <modules>
4
  <Lengow_Dashboard>
5
+ <version>2.0.1.3</version>
6
  </Lengow_Dashboard>
7
  </modules>
8
  <admin>
app/code/community/Lengow/Export/Helper/Data.php CHANGED
@@ -56,7 +56,8 @@ class Lengow_Export_Helper_Data extends Mage_Core_Helper_Abstract {
56
  public function cleanData($value, $convert = false) {
57
  if ($convert)
58
  $value = htmlentities($value);
59
-
 
60
  $value = nl2br($value);
61
  $value = Mage::helper('core/string')->cleanString($value);
62
  // Reject overly long 2 byte sequences, as well as characters above U+10000 and replace with blank
56
  public function cleanData($value, $convert = false) {
57
  if ($convert)
58
  $value = htmlentities($value);
59
+ if(is_array($value))
60
+ return $value;
61
  $value = nl2br($value);
62
  $value = Mage::helper('core/string')->cleanString($value);
63
  // Reject overly long 2 byte sequences, as well as characters above U+10000 and replace with blank
app/code/community/Lengow/Export/Model/Catalog/Product.php CHANGED
@@ -113,7 +113,7 @@ class Lengow_Export_Model_Catalog_Product extends Mage_Catalog_Model_Product {
113
  $productAttributeId = $productAttribute->getId();
114
  $attributeValue = $product_instance->getData($productAttribute->getAttributeCode());
115
  foreach($attribute->getPrices() as $priceChange) {
116
- if (array_key_exists('value_index', $price) && $price['value_index'] == $attributeValue) {
117
  $configurableOldPrice += (float) ( $priceChange['is_percent'] ? ( ( (float) $priceChange['pricing_value'] ) * $price / 100 ) : $priceChange['pricing_value'] );
118
  $configurablePrice += (float) ( $priceChange['is_percent'] ? ( ( (float) $priceChange['pricing_value'] ) * $finalPrice / 100 ) : $priceChange['pricing_value'] );
119
  }
@@ -213,16 +213,19 @@ class Lengow_Export_Model_Catalog_Product extends Mage_Catalog_Model_Product {
213
  return $data;
214
  }
215
 
216
- // TODO : Clean, don't understand the merge of images parents/childs
 
 
 
 
 
 
217
  public function getImages($images, $parentimages = false) {
218
- // Si des images du parent sont à exporter
219
- // On fusionne les deux listes, le reste du script fera le reste
220
  if($parentimages !== false) {
221
  $images = array_merge($parentimages, $images);
222
  $_images = array();
223
  $_ids = array();
224
- // Nettoyage du tableau
225
- foreach($images as $image) {
226
  if(array_key_exists('value_id', $image) && !in_array($image['value_id'], $_ids)) {
227
  $_ids[] = $image['value_id'];
228
  $_images[]['file'] = $image['file'];
113
  $productAttributeId = $productAttribute->getId();
114
  $attributeValue = $product_instance->getData($productAttribute->getAttributeCode());
115
  foreach($attribute->getPrices() as $priceChange) {
116
+ if (is_array($price) && array_key_exists('value_index', $price) && $price['value_index'] == $attributeValue) {
117
  $configurableOldPrice += (float) ( $priceChange['is_percent'] ? ( ( (float) $priceChange['pricing_value'] ) * $price / 100 ) : $priceChange['pricing_value'] );
118
  $configurablePrice += (float) ( $priceChange['is_percent'] ? ( ( (float) $priceChange['pricing_value'] ) * $finalPrice / 100 ) : $priceChange['pricing_value'] );
119
  }
213
  return $data;
214
  }
215
 
216
+ /**
217
+ * Merge images child with images' parents.
218
+ *
219
+ * @param array $images of child's product
220
+ * @param array $images of parent's product
221
+ * @return array images merged
222
+ */
223
  public function getImages($images, $parentimages = false) {
 
 
224
  if($parentimages !== false) {
225
  $images = array_merge($parentimages, $images);
226
  $_images = array();
227
  $_ids = array();
228
+ foreach($images['images'] as $image) {
 
229
  if(array_key_exists('value_id', $image) && !in_array($image['value_id'], $_ids)) {
230
  $_ids[] = $image['value_id'];
231
  $_images[]['file'] = $image['file'];
app/code/community/Lengow/Export/Model/Generate.php CHANGED
@@ -287,14 +287,16 @@ class Lengow_Export_Model_Generate extends Varien_Object {
287
  // Search product to export
288
  $products = $this->_product_model
289
  ->getCollection()
290
- ->addAttributeToSelect('sku');
 
 
291
  // Filter status
292
- if($status == 1)
293
- $products->addAttributeToFilter('status', 1);
294
- else if($status == 2)
295
- $products->addAttributeToFilter('status', 0);
296
- $products->addStoreFilter($this->_id_store)
297
- ->addAttributeToFilter('type_id', array('in' => $_types));
298
  // Export only selected products
299
  if($selected_products) {
300
  $products->addAttributeToFilter('lengow_product', 1);
287
  // Search product to export
288
  $products = $this->_product_model
289
  ->getCollection()
290
+ ->addAttributeToSelect('sku')
291
+ ->addStoreFilter($this->_id_store)
292
+ ->addAttributeToFilter('type_id', array('in' => $_types));
293
  // Filter status
294
+ if(is_null($status))
295
+ $status = $this->_config_model->get('global/productstatus');
296
+ if($status == Mage_Catalog_Model_Product_Status::STATUS_ENABLED)
297
+ $products->addAttributeToFilter('status', array('eq' => Mage_Catalog_Model_Product_Status::STATUS_ENABLED));
298
+ else if($status == Mage_Catalog_Model_Product_Status::STATUS_DISABLED)
299
+ $products->addAttributeToFilter('status', array('eq' => Mage_Catalog_Model_Product_Status::STATUS_DISABLED));
300
  // Export only selected products
301
  if($selected_products) {
302
  $products->addAttributeToFilter('lengow_product', 1);
app/code/community/Lengow/Export/Model/System/Config/Source/Status.php CHANGED
@@ -13,11 +13,11 @@ class Lengow_Export_Model_System_Config_Source_Status extends Mage_Core_Model_Co
13
 
14
  public function toOptionArray() {
15
  return array(
16
- array('value' => '1',
17
  'label' => Mage::helper('adminhtml')->__('Enabled')),
18
- array('value' => '2',
19
  'label' => Mage::helper('adminhtml')->__('Disabled')),
20
- array('value' => '1,2',
21
  'label' => Mage::helper('adminhtml')->__('Enable') . ', ' . Mage::helper('adminhtml')->__('Disabled')),
22
  );
23
  }
13
 
14
  public function toOptionArray() {
15
  return array(
16
+ array('value' => Mage_Catalog_Model_Product_Status::STATUS_ENABLED,
17
  'label' => Mage::helper('adminhtml')->__('Enabled')),
18
+ array('value' => Mage_Catalog_Model_Product_Status::STATUS_DISABLED,
19
  'label' => Mage::helper('adminhtml')->__('Disabled')),
20
+ array('value' => Mage_Catalog_Model_Product_Status::STATUS_ENABLED . ',' . Mage_Catalog_Model_Product_Status::STATUS_DISABLED,
21
  'label' => Mage::helper('adminhtml')->__('Enable') . ', ' . Mage::helper('adminhtml')->__('Disabled')),
22
  );
23
  }
app/code/community/Lengow/Export/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Lengow_Export>
5
- <version>2.0.1.2</version>
6
  </Lengow_Export>
7
  </modules>
8
  <admin>
2
  <config>
3
  <modules>
4
  <Lengow_Export>
5
+ <version>2.0.1.3</version>
6
  </Lengow_Export>
7
  </modules>
8
  <admin>
app/code/community/Lengow/Feed/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Lengow_Feed>
5
- <version>2.0.1.2</version>
6
  </Lengow_Feed>
7
  </modules>
8
  <admin>
2
  <config>
3
  <modules>
4
  <Lengow_Feed>
5
+ <version>2.0.1.3</version>
6
  </Lengow_Feed>
7
  </modules>
8
  <admin>
app/code/community/Lengow/Sync/Model/Connector.php CHANGED
@@ -50,7 +50,7 @@ class Lengow_Sync_Model_Connector {
50
  public static $CURL_OPTS = array(
51
  CURLOPT_CONNECTTIMEOUT => 10,
52
  CURLOPT_RETURNTRANSFER => true,
53
- CURLOPT_TIMEOUT => 60,
54
  CURLOPT_USERAGENT => 'lengow-api-1.0',
55
  );
56
 
50
  public static $CURL_OPTS = array(
51
  CURLOPT_CONNECTTIMEOUT => 10,
52
  CURLOPT_RETURNTRANSFER => true,
53
+ CURLOPT_TIMEOUT => 300,
54
  CURLOPT_USERAGENT => 'lengow-api-1.0',
55
  );
56
 
app/code/community/Lengow/Sync/Model/Import.php CHANGED
@@ -65,7 +65,7 @@ class Lengow_Sync_Model_Import extends Varien_Object {
65
  }
66
 
67
  /**
68
- * Makes the Orders API Url.
69
  *
70
  * @param array $args The arguments to request at the API
71
  */
@@ -135,7 +135,7 @@ class Lengow_Sync_Model_Import extends Varien_Object {
135
  } else if(($order_imported->current_state == $this->_config->getOrderState('process') // Change state process or shipped to cancel
136
  || $order_imported->current_state == $this->_config->getOrderState('shipped'))
137
  && $lengow_order->order_status->lengow == 'canceled') {
138
- $lengow_order->toCancel();
139
  $this->_helper->log('Order ' . $lengow_order_id . ' : update state to cancel');
140
  $count_orders_updated++;
141
  }
@@ -159,6 +159,13 @@ class Lengow_Sync_Model_Import extends Varien_Object {
159
  // Create order
160
  $order = $order->makeOrder($data, $quote);
161
  if($order) {
 
 
 
 
 
 
 
162
  // Sync to lengow
163
  if(!$this->_config->isDebugMode()) {
164
  $orders = $connector->api('getInternalOrderId', array(
@@ -183,8 +190,7 @@ class Lengow_Sync_Model_Import extends Varien_Object {
183
  ////*} catch(Exception $e) {
184
  //$this->_helper->log($e->getMessage(),$orderLw['IdOrder']);
185
  //Erase session for the next order
186
- //$this->getSession()->clear();
187
-
188
  //}*////
189
  } else {
190
  if($id_order_magento) {
65
  }
66
 
67
  /**
68
+ * Makes the Orders API Url and imports all orders
69
  *
70
  * @param array $args The arguments to request at the API
71
  */
135
  } else if(($order_imported->current_state == $this->_config->getOrderState('process') // Change state process or shipped to cancel
136
  || $order_imported->current_state == $this->_config->getOrderState('shipped'))
137
  && $lengow_order->order_status->lengow == 'canceled') {
138
+ $order_imported->toCancel();
139
  $this->_helper->log('Order ' . $lengow_order_id . ' : update state to cancel');
140
  $count_orders_updated++;
141
  }
159
  // Create order
160
  $order = $order->makeOrder($data, $quote);
161
  if($order) {
162
+ // Change order date
163
+ if($this->_config->get('orders/date_import')) {
164
+ $date = (string) $lengow_order->order_purchase_date . ' ' . (string) $lengow_order->order_purchase_heure;
165
+ $order->setCreatedAt($date);
166
+ $order->setUpdatedAt($date);
167
+ $order->save();
168
+ }
169
  // Sync to lengow
170
  if(!$this->_config->isDebugMode()) {
171
  $orders = $connector->api('getInternalOrderId', array(
190
  ////*} catch(Exception $e) {
191
  //$this->_helper->log($e->getMessage(),$orderLw['IdOrder']);
192
  //Erase session for the next order
193
+ //$this->getSession()->clear();
 
194
  //}*////
195
  } else {
196
  if($id_order_magento) {
app/code/community/Lengow/Sync/Model/Order.php CHANGED
@@ -62,12 +62,13 @@ class Lengow_Sync_Model_Order extends Mage_Sales_Model_Order {
62
  public function createQuote(SimpleXMLelement $data, Lengow_Sync_Model_Customer_Customer $customer) {
63
  $quote = new Mage_Sales_Model_Quote();
64
  $quote->setIsMultiShipping(false)
65
- //->setCheckoutMethod(Mage_Checkout_Model_Type_Onepage::METHOD_GUEST)
66
  ->setCustomerId($customer->getId())
67
  ->setCustomerEmail($customer->getEmail())
68
  ->setCustomerIsGuest(false)
69
- ->setCustomerGroupId(Mage_Customer_Model_Group::NOT_LOGGED_IN_ID)
70
- //->setCustomerGroupId(1)
 
71
  ->setStore(Mage::app()->getDefaultStoreView());
72
  // Add products to quote with data from Lengow
73
  foreach($data->cart->products->product as $lengow_product) {
62
  public function createQuote(SimpleXMLelement $data, Lengow_Sync_Model_Customer_Customer $customer) {
63
  $quote = new Mage_Sales_Model_Quote();
64
  $quote->setIsMultiShipping(false)
65
+ ->setCheckoutMethod(Mage_Checkout_Model_Type_Onepage::METHOD_CUSTOMER)
66
  ->setCustomerId($customer->getId())
67
  ->setCustomerEmail($customer->getEmail())
68
  ->setCustomerIsGuest(false)
69
+ ->setCustomerGroupId($this->getConfig()->get('customer_type'))
70
+ ->setCustomerFirstname($customer->getFirstname())
71
+ ->setCustomerLastname($customer->getLastname())
72
  ->setStore(Mage::app()->getDefaultStoreView());
73
  // Add products to quote with data from Lengow
74
  foreach($data->cart->products->product as $lengow_product) {
app/code/community/Lengow/Sync/Model/System/Config/Source/Customer/Group.php ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Lengow sync model systems config source customer group
4
+ * group of customer
5
+ *
6
+ * @category Lengow
7
+ * @package Lengow_Sync
8
+ * @author Ludovic Drin <ludovic@lengow.com>
9
+ * @copyright 2013 Lengow SAS
10
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
11
+ */
12
+ class Lengow_Sync_Model_System_Config_Source_Customer_Group extends Mage_Core_Model_Config_Data {
13
+
14
+ public function toOptionArray() {
15
+ $collection = Mage::getModel('customer/group')->getCollection();
16
+ $select = array();
17
+ foreach ($collection as $group) { /* @var $group Mage_Customer_Model_Group */
18
+ $select[$group->getCustomerGroupId()] = $group->getCustomerGroupCode();
19
+ }
20
+ return $select;
21
+ }
22
+
23
+ public function toSelectArray() {
24
+ $collection = Mage::getModel('customer/group')->getCollection();
25
+ $select = array();
26
+ foreach ($collection as $group) {
27
+ /* @var $group Mage_Customer_Model_Group */
28
+ $select[$group->getCustomerGroupId()] = $group->getCustomerGroupCode();
29
+ }
30
+ return $select;
31
+ }
32
+ }
app/code/community/Lengow/Sync/controllers/Adminhtml/Lengow/LogController.php CHANGED
@@ -27,7 +27,7 @@ class Lengow_Sync_Adminhtml_Lengow_LogController extends Mage_Adminhtml_Controll
27
  $collection = Mage::getModel('sync/log')->getCollection();
28
  foreach($collection as $log)
29
  $log->delete();
30
- $this->_getSession()->addSuccess(Mage::helper('Lengow_Order')->__('Log is empty'));
31
  $this->_redirect('*/*/index');
32
 
33
  }
27
  $collection = Mage::getModel('sync/log')->getCollection();
28
  foreach($collection as $log)
29
  $log->delete();
30
+ $this->_getSession()->addSuccess(Mage::helper('sync')->__('Log is empty'));
31
  $this->_redirect('*/*/index');
32
 
33
  }
app/code/community/Lengow/Sync/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Lengow_Sync>
5
- <version>2.0.1.2</version>
6
  </Lengow_Sync>
7
  </modules>
8
  <admin>
@@ -235,6 +235,7 @@
235
  <sync>
236
  <orders>
237
  <period>3</period>
 
238
  </orders>
239
  <hidden>
240
  <last_synchro>0000-00-00</last_synchro>
2
  <config>
3
  <modules>
4
  <Lengow_Sync>
5
+ <version>2.0.1.3</version>
6
  </Lengow_Sync>
7
  </modules>
8
  <admin>
235
  <sync>
236
  <orders>
237
  <period>3</period>
238
+ <customer_group>0</customer_group>
239
  </orders>
240
  <hidden>
241
  <last_synchro>0000-00-00</last_synchro>
app/code/community/Lengow/Sync/etc/marketplaces.xml CHANGED
@@ -285,6 +285,9 @@
285
  <state name="RefusedBySeller">
286
  <lengow>canceled</lengow>
287
  </state>
 
 
 
288
  </states>
289
  <additional_params>
290
  <param usedby="shipped">
@@ -525,6 +528,9 @@
525
  <api>https://wsdl.lengow.com/wsdl/monechelle/#ID_FLUX#/#ORDER_ID#/#ACTION#.xml</api>
526
  <states>
527
  <state name="new">
 
 
 
528
  <actions>
529
  <action type="refuse">refuseOrder</action>
530
  <action type="accept">acceptOrder</action>
285
  <state name="RefusedBySeller">
286
  <lengow>canceled</lengow>
287
  </state>
288
+ <state name="PickedUp">
289
+ <lengow>shipped</lengow>
290
+ </state>
291
  </states>
292
  <additional_params>
293
  <param usedby="shipped">
528
  <api>https://wsdl.lengow.com/wsdl/monechelle/#ID_FLUX#/#ORDER_ID#/#ACTION#.xml</api>
529
  <states>
530
  <state name="new">
531
+ <lengow>new</lengow>
532
+ </state>
533
+ <state name="processing">
534
  <actions>
535
  <action type="refuse">refuseOrder</action>
536
  <action type="accept">acceptOrder</action>
app/code/community/Lengow/Sync/etc/system.xml CHANGED
@@ -25,16 +25,35 @@
25
  <fields>
26
  <period>
27
  <label>Import orders from x days</label>
28
- <sort_order>21</sort_order>
29
  <show_in_default>1</show_in_default>
30
  <show_in_website>1</show_in_website>
31
  <show_in_store>1</show_in_store>
32
  <comment>Choose period for Sync order</comment>
33
  </period>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  <cron>
35
  <label>Auto import</label>
36
  <frontend_type>select</frontend_type>
37
- <sort_order>22</sort_order>
38
  <show_in_default>1</show_in_default>
39
  <show_in_website>1</show_in_website>
40
  <show_in_store>1</show_in_store>
@@ -45,7 +64,7 @@
45
  <label>Import with product's title from Lengow</label>
46
  <comment>Import an order with the product's name from marketplace</comment>
47
  <frontend_type>select</frontend_type>
48
- <sort_order>23</sort_order>
49
  <show_in_default>1</show_in_default>
50
  <show_in_website>1</show_in_website>
51
  <show_in_store>1</show_in_store>
@@ -54,7 +73,7 @@
54
  <debug>
55
  <label>Debug mode</label>
56
  <frontend_type>select</frontend_type>
57
- <sort_order>24</sort_order>
58
  <show_in_default>1</show_in_default>
59
  <show_in_website>1</show_in_website>
60
  <show_in_store>1</show_in_store>
25
  <fields>
26
  <period>
27
  <label>Import orders from x days</label>
28
+ <sort_order>20</sort_order>
29
  <show_in_default>1</show_in_default>
30
  <show_in_website>1</show_in_website>
31
  <show_in_store>1</show_in_store>
32
  <comment>Choose period for Sync order</comment>
33
  </period>
34
+ <customer_group>
35
+ <label>Customer group</label>
36
+ <frontend_type>select</frontend_type>
37
+ <sort_order>30</sort_order>
38
+ <show_in_default>1</show_in_default>
39
+ <show_in_website>1</show_in_website>
40
+ <show_in_store>1</show_in_store>
41
+ <source_model>sync/system_config_source_customer_group</source_model>
42
+ </customer_group>
43
+ <date_import>
44
+ <label>Use the real date of import's order</label>
45
+ <frontend_type>select</frontend_type>
46
+ <sort_order>40</sort_order>
47
+ <show_in_default>1</show_in_default>
48
+ <show_in_website>1</show_in_website>
49
+ <show_in_store>1</show_in_store>
50
+ <source_model>adminhtml/system_config_source_yesno</source_model>
51
+ <comment>To change the date of import's order with the date of marketplace</comment>
52
+ </date_import>
53
  <cron>
54
  <label>Auto import</label>
55
  <frontend_type>select</frontend_type>
56
+ <sort_order>40</sort_order>
57
  <show_in_default>1</show_in_default>
58
  <show_in_website>1</show_in_website>
59
  <show_in_store>1</show_in_store>
64
  <label>Import with product's title from Lengow</label>
65
  <comment>Import an order with the product's name from marketplace</comment>
66
  <frontend_type>select</frontend_type>
67
+ <sort_order>50</sort_order>
68
  <show_in_default>1</show_in_default>
69
  <show_in_website>1</show_in_website>
70
  <show_in_store>1</show_in_store>
73
  <debug>
74
  <label>Debug mode</label>
75
  <frontend_type>select</frontend_type>
76
+ <sort_order>60</sort_order>
77
  <show_in_default>1</show_in_default>
78
  <show_in_website>1</show_in_website>
79
  <show_in_store>1</show_in_store>
app/code/community/Lengow/Tracker/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Lengow_Tracker>
5
- <version>2.0.1.2</version>
6
  </Lengow_Tracker>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Lengow_Tracker>
5
+ <version>2.0.1.3</version>
6
  </Lengow_Tracker>
7
  </modules>
8
  <global>
app/code/community/Lengow/Tracker/etc/plugins.xml CHANGED
@@ -5,8 +5,8 @@
5
  <release_date>2014-01-30</release_date>
6
  </plugin>
7
  <plugin name="magento">
8
- <version>2.0.1.2</version>
9
- <release_date>2014-02-26</release_date>
10
  </plugin>
11
  <plugin name="woomcommerce">
12
  <version>1.0.0.0</version>
5
  <release_date>2014-01-30</release_date>
6
  </plugin>
7
  <plugin name="magento">
8
+ <version>2.0.1.3</version>
9
+ <release_date>2014-03-17</release_date>
10
  </plugin>
11
  <plugin name="woomcommerce">
12
  <version>1.0.0.0</version>
app/locale/fr_FR/Lengow_Connector.csv CHANGED
@@ -145,4 +145,7 @@
145
  "Import with product's title from Lengow","Importer les produits avec les titres provenant de Lengow"
146
  "Import an order with the product's name from marketplace","Importe les commandes avec le nom de produit provenant des Marketplaces"
147
  "See the export feed","Voir le flux d'export"
148
- "Change Lengow's publication","Changer la publication sur Lengow"
 
 
 
145
  "Import with product's title from Lengow","Importer les produits avec les titres provenant de Lengow"
146
  "Import an order with the product's name from marketplace","Importe les commandes avec le nom de produit provenant des Marketplaces"
147
  "See the export feed","Voir le flux d'export"
148
+ "Change Lengow's publication","Changer la publication sur Lengow"
149
+ "Customer group","Groupe client"
150
+ "Use the real date of import's order","Utiliser la date des commandes pour l'import"
151
+ "To change the date of import's order with the date of marketplace","Changer la date d'import de la commande avec la date d'achat sur les places de marchés"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Lengow_Export</name>
4
- <version>2.0.1.2</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
@@ -11,9 +11,9 @@
11
  Export your catalog, import your orders from all Marketplaces.</description>
12
  <notes>New version of Lengow's Connector</notes>
13
  <authors><author><name>Ludovic</name><user>ludo</user><email>ludovic@lengow.com</email></author><author><name>Romain</name><user>romain</user><email>romain@lengow.com</email></author></authors>
14
- <date>2014-03-06</date>
15
- <time>14:53:32</time>
16
- <contents><target name="magecommunity"><dir name="Lengow"><dir name="Dashboard"><dir name="Block"><dir name="Adminhtml"><dir name="Dashboard"><file name="Charts.php" hash="dae1bbed1ede93b06f62589e93857396"/><file name="Diagrams.php" hash="001995ea1916ca192021ba52c155a466"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="7129af0e9ab390e0695f84865a02fdb5"/></dir><dir name="Model"><file name="Config.php" hash="9ac1d092bffd109f02518885f89142c7"/></dir><dir name="etc"><file name="config.xml" hash="af2a5f6194309122ef21aac04fa63bde"/></dir></dir><dir name="Export"><dir name="Block"><dir name="Adminhtml"><dir name="Product"><file name="Grid.php" hash="5ceb46d0b2ba6ab2e64e95eacad57cf4"/></dir><file name="Product.php" hash="b4802cfa8249bfe8c7378d65a5147c1b"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Data.php" hash="837edcfbf4d83096f5a23339a11ae9c0"/><file name="Security.php" hash="3ad6b6925ef05884a1501afa6e64a685"/></dir><dir name="Model"><dir name="Catalog"><file name="Product.php" hash="3adf8ff033a599a93a99c2d4626ec15c"/></dir><file name="Config.php" hash="99e3221d774542191026baff3776f8b6"/><dir name="Convert"><dir name="Parser"><file name="Product.php" hash="bc664380ca9d37256460613ecdbd8f92"/></dir></dir><dir name="Export"><dir name="Rewrite"><dir name="Catalog"><file name="Config.php" hash="e192cd30c6ed7e4cc370953c3ecd2367"/></dir></dir></dir><dir name="Feed"><file name="Abstract.php" hash="ed13409ab1c507b48b9460c8886bef8d"/><file name="Csv.php" hash="9e53191b25324292f962dec130c0c80a"/><file name="Json.php" hash="4df743bce6647eea36d2677ab7f6a9a8"/><file name="Xml.php" hash="dee5abfe1fa6f066a89a7de9ca3c9f3e"/><file name="Yaml.php" hash="f0c24bd481039c4fc13fa26ef7a4d1b9"/></dir><file name="Generate.php" hash="7b3c5f921ec254ba08089012f6a880ce"/><file name="Observer.php" hash="df1db3722a4621a0b96f8a94c60cdbe7"/><dir name="Shipping"><dir name="Carrier"><file name="Lengow.php" hash="685809c2367ec3509ecbf9f4d07f4661"/></dir></dir><dir name="Source"><file name="Attributes.php" hash="95b485a452aee5b27af0af618211f13c"/><file name="Types.php" hash="6b125e9e5c0dfd5c93cf304441ed47ac"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Apikey.php" hash="111617eb86ef8dd7374efa0d4eabf781"/></dir><dir name="Source"><dir name="Category"><file name="Level.php" hash="b35d3367815682e0ed2827ae8c722e9a"/></dir><file name="Format.php" hash="fd069f484cc3ae0d914fb7a965789d9f"/><file name="Getattributes.php" hash="9ed9accf926ee7ad15a361d45eae5ff6"/><file name="Images.php" hash="e6ec93f301599ea91d69a1f4847e240d"/><file name="Status.php" hash="c848476436a961877def6ae5ea0b16d8"/><file name="Types.php" hash="56de65acbb13ee5425b95cc5f9c3f2d2"/></dir></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Lengow"><file name="ExportController.php" hash="a9945fb7906fb30523599d19b97ef3a1"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name="FeedController.php" hash="e8fe620214eb352ff4d7cfbb06547a33"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="etc"><file name="config.xml" hash="7efec4c0fcd66c6b14bcd53e4e5bf8ae"/><file name="system.xml" hash="0fc8294856d3d5ef5288af7c9b0d4e06"/></dir></dir><dir name="Feed"><dir name="Block"><dir name="Adminhtml"><dir name="Feed"><file name="Grid.php" hash="164d0069752cf6327128e2da873c6466"/><dir name="Renderer"><file name="Migrate.php" hash="e59d5a72241165ec1c8194fc257d6e11"/><file name="Select.php" hash="78808e9061b7a5aa73c2273f18bc0746"/><file name="Url.php" hash="c9060f99ffa7f47140392c4392f793e7"/></dir></dir><file name="Feed.php" hash="96aa5aa6ed7c9e4a708df5b391621421"/></dir></dir><dir name="Helper"><file name="Data.php" hash="23ab67ab3d66ce8c35cfe9c8bff76f76"/></dir><dir name="Model"><file name="Config.php" hash="7487c73a3fe292614c9f4a2b66d8a664"/><file name="Feed.php" hash="75e01d41749b61db15f2603ed00f09a4"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Lengow"><file name="FeedController.php" hash="7a5f760a1768ddd6dca7b04affb1681f"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="7ef4df5b01868a514760bbdf4868f664"/><file name="system.xml" hash="22ba605f2529396e4edb41c5ec8e65e6"/></dir></dir><dir name="Sync"><dir name="Block"><dir name="Adminhtml"><file name="Import.php" hash="832bc82dde18ae4bc886933b28f41885"/><dir name="Log"><file name="Grid.php" hash="ca9a55f848bccb6e8a34e0217cf905f5"/></dir><file name="Log.php" hash="c8434ba0a97fb13c25fbfbc4f1841b53"/><dir name="Order"><file name="Grid.php" hash="f5423e0e9f88c29a39e494e8ce72c0e1"/><file name="Tab.php" hash="4c913f7d42506bd3e60e10a5142d9b8a"/></dir><file name="Order.php" hash="2ddb7553c4c67faf0bae5bbbe1be16fe"/></dir><dir name="Payment"><dir name="Info"><file name="Purchaseorder.php" hash="72bbeb480299903b16e505ffdd5d73fe"/></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Data.php" hash="05e0c035a6400f6b4b56b33e6bbf424d"/></dir><dir name="Model"><file name="Config.php" hash="e356e499cd34db77a17954fb52443a4f"/><dir name="Connector"><file name="Exception.php" hash="de1fa1b69e24fe7b976c03f1ed1ca7f7"/></dir><file name="Connector.php" hash="63b645168b51d6cbb0cf748f3159d35e"/><dir name="Customer"><file name="Customer.php" hash="e195621601071a4f15d0724839e9aaaa"/></dir><file name="Import.php" hash="4a7e3d1c3c7dba329987afd34d7e9479"/><file name="Log.php" hash="3dd56825227289f380bf5c0e2f8e848e"/><dir name="Marketplace"><file name="Exception.php" hash="bd7ab8db94e241d022cd6e467e8596ec"/></dir><file name="Marketplace.php" hash="40f6243e4e106a7f4f77f0985b775d6a"/><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="e3c7a389004afa2a116560e5501cb9fa"/></dir><file name="Log.php" hash="3cc46747828dc075638b115cb8bdbf68"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name="Observer.php" hash="b798657837ade214c3bf3e8a4b53ec64"/><file name="Order.php" hash="4c0926676218ad2af71053a6afe30002"/><dir name="Payment"><dir name="Method"><file name="Lengow.php" hash="41344a615275c14d06707ed63ec58e59"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Quote"><file name="Item.php" hash="30f9faf6b299ef64f10785ba16030a17"/></dir><dir name="Shipping"><dir name="Carrier"><file name="Lengow.php" hash="64627df21b7d1d089ce7caa6fb3837a9"/></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Lengow"><file name="LogController.php" hash="2eb76e322af63ee3639364ec4bb44017"/><file name="OrderController.php" hash="6d348a79987f24919d32beb454fa9b13"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name="ApiController.php" hash="7386c653ad093a891ffc75f0326d163f"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="etc"><file name="config.xml" hash="7b0c218d2e0b308d5975cae7f56c55fc"/><file name="marketplaces.xml" hash="2eb3aa3b0ba89abf0de8802c6957e6a2"/><file name="system.xml" hash="be59409e1daec954eeb3b9422fa01b9f"/><file name="wsdl.xml" hash="d299fecf68e9f795e26037be4f2115b3"/></dir><dir name="sql"><dir name="lengow_setup"><file name="mysql4-install-2.0.0.0.php" hash="ec6f4fbc56eb98d2439d9e53a6d5906f"/><file name="mysql4-upgrade-2.0.0.0-2.0.0.1.php" hash="8a452156d98da3e2508e7e67fd6b3006"/></dir></dir><file name=".DS_Store" hash="dc971dc7108101d485bfc11f9d1bd4c0"/></dir><dir name="Tracker"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Check"><file name="Point.php" hash="b1b7be8e668e789ddfa26a615b4a5040"/></dir><file name="Check.php" hash="bc55760cc20b6ef21bf894f49454ea1e"/></dir></dir></dir><dir name="Tag"><file name="Capsule.php" hash="14256e8019240284092096ec888a4f58"/><file name="Simple.php" hash="5cae14470caf8393ed8eaf0b7b006996"/></dir><file name="Tracker.php" hash="b12dc4b32f1de2fb396620f317ce63bb"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Check.php" hash="8ac8d07d45494fb39bec90ec9f11cdf9"/><file name="Data.php" hash="e526694354fe760f266bf925e5e4ac39"/></dir><dir name="Model"><file name="Capsule.php" hash="55504d0b6398f5a88b5977bf54f5b54b"/><file name="Config.php" hash="d475fd6dd049ed712f69e4a1bfc2036c"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Identifiant.php" hash="51943c288cab9456c62a2130405b695b"/><file name="Tracker.php" hash="8fdc4f1d9f02300525aeb295e9cd3dfc"/></dir></dir></dir><file name="Tracker.php" hash="8897c38fe557f52bbaaf8532529f149c"/></dir><dir name="etc"><file name="config.xml" hash="5f8bebab2071098e602c97a7e5d0f043"/><file name="plugins.xml" hash="afea3f2dd9e0aa063f4ce652b5f414d9"/><file name="system.xml" hash="79f9f43e00295f51c428023e8349ac0d"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="lengow.xml" hash="8bd6d3c25e5911481a5f105fe55833f1"/></dir><dir name="template"><dir name="lengow"><dir name="check"><file name="point.phtml" hash="8e221f846b0731f8e3f1a6229e342166"/></dir><dir name="dashboard"><file name="charts.phtml" hash="e03c9e77fe69066ed335669c38d56266"/></dir><dir name="export"><file name="product.phtml" hash="fcab2dbf0f9ff81992d9b1e75cc1b5c5"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="feed"><file name="grid.phtml" hash="7e965f793beb4847fad559506865a35e"/></dir><dir name="sales"><dir name="order"><dir name="tab"><file name="info.phtml" hash="fd76ca51399fd00b52f8430acce8555c"/></dir></dir><dir name="payment"><dir name="info"><file name="purchaseorder.phtml" hash="8e9e7a287ef57fe72023e28747fb0864"/></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="lengow.xml" hash="823da63da3444c91f7e0197cc3f57225"/></dir><dir name="template"><dir name="lengow"><dir name="tracker"><file name="simpletag.phtml" hash="2b761f6da02185a6931b30fddd679d64"/><file name="tag.phtml" hash="619f7bc6fe20c3dd6c1d82cdf12811b5"/><file name="tagcapsule.phtml" hash="2916e7693ef8ec9fcce5f5a8079d2beb"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Lengow_Connector.csv" hash="f8b456f0213aa71cb3c5ad18494c8545"/></dir></target><target name="mageetc"><dir name="modules"><file name="Lengow_Connector.xml" hash="34b39beecc725740ea1e0bc8d339287a"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="lengow"><dir name="css"><file name="admin.css" hash="aa78dc26e735d8110b88d9974f72a502"/></dir><dir name="js"><file name="charts.min.js" hash="6806368c6a0bf73a5236b452fd5c2332"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="lengow"><dir name="js"><file name="tracker.js" hash="6402a4fbbb81a3b0587ec8c4c375e0a0"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
19
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Lengow_Export</name>
4
+ <version>2.0.1.3</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
11
  Export your catalog, import your orders from all Marketplaces.</description>
12
  <notes>New version of Lengow's Connector</notes>
13
  <authors><author><name>Ludovic</name><user>ludo</user><email>ludovic@lengow.com</email></author><author><name>Romain</name><user>romain</user><email>romain@lengow.com</email></author></authors>
14
+ <date>2014-03-17</date>
15
+ <time>11:20:33</time>
16
+ <contents><target name="magecommunity"><dir name="Lengow"><dir name="Dashboard"><dir name="Block"><dir name="Adminhtml"><dir name="Dashboard"><file name="Charts.php" hash="dae1bbed1ede93b06f62589e93857396"/><file name="Diagrams.php" hash="001995ea1916ca192021ba52c155a466"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="7129af0e9ab390e0695f84865a02fdb5"/></dir><dir name="Model"><file name="Config.php" hash="9ac1d092bffd109f02518885f89142c7"/></dir><dir name="etc"><file name="config.xml" hash="daa7dcee32a0d093d9e660e0c7a839ad"/></dir></dir><dir name="Export"><dir name="Block"><dir name="Adminhtml"><dir name="Product"><file name="Grid.php" hash="5ceb46d0b2ba6ab2e64e95eacad57cf4"/></dir><file name="Product.php" hash="b4802cfa8249bfe8c7378d65a5147c1b"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Data.php" hash="622a7252f4b7fa358c22dc8763ad1b39"/><file name="Security.php" hash="3ad6b6925ef05884a1501afa6e64a685"/></dir><dir name="Model"><dir name="Catalog"><file name="Product.php" hash="1617a1fd0176e9785eb4182a9a460d00"/></dir><file name="Config.php" hash="99e3221d774542191026baff3776f8b6"/><dir name="Convert"><dir name="Parser"><file name="Product.php" hash="bc664380ca9d37256460613ecdbd8f92"/></dir></dir><dir name="Export"><dir name="Rewrite"><dir name="Catalog"><file name="Config.php" hash="e192cd30c6ed7e4cc370953c3ecd2367"/></dir></dir></dir><dir name="Feed"><file name="Abstract.php" hash="ed13409ab1c507b48b9460c8886bef8d"/><file name="Csv.php" hash="9e53191b25324292f962dec130c0c80a"/><file name="Json.php" hash="4df743bce6647eea36d2677ab7f6a9a8"/><file name="Xml.php" hash="dee5abfe1fa6f066a89a7de9ca3c9f3e"/><file name="Yaml.php" hash="f0c24bd481039c4fc13fa26ef7a4d1b9"/></dir><file name="Generate.php" hash="f2ef1f6fce7c34e4143ced99500dd2b8"/><file name="Observer.php" hash="df1db3722a4621a0b96f8a94c60cdbe7"/><dir name="Shipping"><dir name="Carrier"><file name="Lengow.php" hash="685809c2367ec3509ecbf9f4d07f4661"/></dir></dir><dir name="Source"><file name="Attributes.php" hash="95b485a452aee5b27af0af618211f13c"/><file name="Types.php" hash="6b125e9e5c0dfd5c93cf304441ed47ac"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Apikey.php" hash="111617eb86ef8dd7374efa0d4eabf781"/></dir><dir name="Source"><dir name="Category"><file name="Level.php" hash="b35d3367815682e0ed2827ae8c722e9a"/></dir><file name="Format.php" hash="fd069f484cc3ae0d914fb7a965789d9f"/><file name="Getattributes.php" hash="9ed9accf926ee7ad15a361d45eae5ff6"/><file name="Images.php" hash="e6ec93f301599ea91d69a1f4847e240d"/><file name="Status.php" hash="15db435978f73431541b66db57a91506"/><file name="Types.php" hash="56de65acbb13ee5425b95cc5f9c3f2d2"/></dir></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Lengow"><file name="ExportController.php" hash="a9945fb7906fb30523599d19b97ef3a1"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name="FeedController.php" hash="e8fe620214eb352ff4d7cfbb06547a33"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="etc"><file name="config.xml" hash="61ecd0d49063ce9224bc33354d103a12"/><file name="system.xml" hash="0fc8294856d3d5ef5288af7c9b0d4e06"/></dir></dir><dir name="Feed"><dir name="Block"><dir name="Adminhtml"><dir name="Feed"><file name="Grid.php" hash="164d0069752cf6327128e2da873c6466"/><dir name="Renderer"><file name="Migrate.php" hash="e59d5a72241165ec1c8194fc257d6e11"/><file name="Select.php" hash="78808e9061b7a5aa73c2273f18bc0746"/><file name="Url.php" hash="c9060f99ffa7f47140392c4392f793e7"/></dir></dir><file name="Feed.php" hash="96aa5aa6ed7c9e4a708df5b391621421"/></dir></dir><dir name="Helper"><file name="Data.php" hash="23ab67ab3d66ce8c35cfe9c8bff76f76"/></dir><dir name="Model"><file name="Config.php" hash="7487c73a3fe292614c9f4a2b66d8a664"/><file name="Feed.php" hash="75e01d41749b61db15f2603ed00f09a4"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Lengow"><file name="FeedController.php" hash="7a5f760a1768ddd6dca7b04affb1681f"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="6dc1efafcceeabff6ca544c8b38d5364"/><file name="system.xml" hash="22ba605f2529396e4edb41c5ec8e65e6"/></dir></dir><dir name="Sync"><dir name="Block"><dir name="Adminhtml"><file name="Import.php" hash="832bc82dde18ae4bc886933b28f41885"/><dir name="Log"><file name="Grid.php" hash="ca9a55f848bccb6e8a34e0217cf905f5"/></dir><file name="Log.php" hash="c8434ba0a97fb13c25fbfbc4f1841b53"/><dir name="Order"><file name="Grid.php" hash="f5423e0e9f88c29a39e494e8ce72c0e1"/><file name="Tab.php" hash="4c913f7d42506bd3e60e10a5142d9b8a"/></dir><file name="Order.php" hash="2ddb7553c4c67faf0bae5bbbe1be16fe"/></dir><dir name="Payment"><dir name="Info"><file name="Purchaseorder.php" hash="72bbeb480299903b16e505ffdd5d73fe"/></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Data.php" hash="05e0c035a6400f6b4b56b33e6bbf424d"/></dir><dir name="Model"><file name="Config.php" hash="e356e499cd34db77a17954fb52443a4f"/><dir name="Connector"><file name="Exception.php" hash="de1fa1b69e24fe7b976c03f1ed1ca7f7"/></dir><file name="Connector.php" hash="7d3af652eec85aedd2d7d836a73a4513"/><dir name="Customer"><file name="Customer.php" hash="e195621601071a4f15d0724839e9aaaa"/></dir><file name="Import.php" hash="e0e4cd8691b6b17158dcd6f2b3284033"/><file name="Log.php" hash="3dd56825227289f380bf5c0e2f8e848e"/><dir name="Marketplace"><file name="Exception.php" hash="bd7ab8db94e241d022cd6e467e8596ec"/></dir><file name="Marketplace.php" hash="40f6243e4e106a7f4f77f0985b775d6a"/><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="e3c7a389004afa2a116560e5501cb9fa"/></dir><file name="Log.php" hash="3cc46747828dc075638b115cb8bdbf68"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name="Observer.php" hash="b798657837ade214c3bf3e8a4b53ec64"/><file name="Order.php" hash="23f4aef35689e08b0b30305df5eea3fb"/><dir name="Payment"><dir name="Method"><file name="Lengow.php" hash="41344a615275c14d06707ed63ec58e59"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Quote"><file name="Item.php" hash="30f9faf6b299ef64f10785ba16030a17"/></dir><dir name="Shipping"><dir name="Carrier"><file name="Lengow.php" hash="64627df21b7d1d089ce7caa6fb3837a9"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Customer"><file name="Group.php" hash="640638dcee398949ec4d0c1e2731005d"/></dir></dir></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Lengow"><file name="LogController.php" hash="37ced95b8c2bb8ac9d5e865feee8a3d3"/><file name="OrderController.php" hash="6d348a79987f24919d32beb454fa9b13"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name="ApiController.php" hash="7386c653ad093a891ffc75f0326d163f"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="etc"><file name="config.xml" hash="67d16dee513f249b0d87f1539ff82e68"/><file name="marketplaces.xml" hash="484c97c5081604acdc0a3b300685ee1b"/><file name="system.xml" hash="ed101051303c9bc20ae3ee7c02df09f7"/><file name="wsdl.xml" hash="d299fecf68e9f795e26037be4f2115b3"/></dir><dir name="sql"><dir name="lengow_setup"><file name="mysql4-install-2.0.0.0.php" hash="ec6f4fbc56eb98d2439d9e53a6d5906f"/><file name="mysql4-upgrade-2.0.0.0-2.0.0.1.php" hash="8a452156d98da3e2508e7e67fd6b3006"/></dir></dir><file name=".DS_Store" hash="dc971dc7108101d485bfc11f9d1bd4c0"/></dir><dir name="Tracker"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Check"><file name="Point.php" hash="b1b7be8e668e789ddfa26a615b4a5040"/></dir><file name="Check.php" hash="bc55760cc20b6ef21bf894f49454ea1e"/></dir></dir></dir><dir name="Tag"><file name="Capsule.php" hash="14256e8019240284092096ec888a4f58"/><file name="Simple.php" hash="5cae14470caf8393ed8eaf0b7b006996"/></dir><file name="Tracker.php" hash="b12dc4b32f1de2fb396620f317ce63bb"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Check.php" hash="8ac8d07d45494fb39bec90ec9f11cdf9"/><file name="Data.php" hash="e526694354fe760f266bf925e5e4ac39"/></dir><dir name="Model"><file name="Capsule.php" hash="55504d0b6398f5a88b5977bf54f5b54b"/><file name="Config.php" hash="d475fd6dd049ed712f69e4a1bfc2036c"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Identifiant.php" hash="51943c288cab9456c62a2130405b695b"/><file name="Tracker.php" hash="8fdc4f1d9f02300525aeb295e9cd3dfc"/></dir></dir></dir><file name="Tracker.php" hash="8897c38fe557f52bbaaf8532529f149c"/></dir><dir name="etc"><file name="config.xml" hash="9a303500d667b9544fee8b6ed50cbc3c"/><file name="plugins.xml" hash="1e7c7bb1f31ece66e9d61adfcc9aabd8"/><file name="system.xml" hash="79f9f43e00295f51c428023e8349ac0d"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="lengow.xml" hash="8bd6d3c25e5911481a5f105fe55833f1"/></dir><dir name="template"><dir name="lengow"><dir name="check"><file name="point.phtml" hash="8e221f846b0731f8e3f1a6229e342166"/></dir><dir name="dashboard"><file name="charts.phtml" hash="e03c9e77fe69066ed335669c38d56266"/></dir><dir name="export"><file name="product.phtml" hash="fcab2dbf0f9ff81992d9b1e75cc1b5c5"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="feed"><file name="grid.phtml" hash="7e965f793beb4847fad559506865a35e"/></dir><dir name="sales"><dir name="order"><dir name="tab"><file name="info.phtml" hash="fd76ca51399fd00b52f8430acce8555c"/></dir></dir><dir name="payment"><dir name="info"><file name="purchaseorder.phtml" hash="8e9e7a287ef57fe72023e28747fb0864"/></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="lengow.xml" hash="823da63da3444c91f7e0197cc3f57225"/></dir><dir name="template"><dir name="lengow"><dir name="tracker"><file name="simpletag.phtml" hash="2b761f6da02185a6931b30fddd679d64"/><file name="tag.phtml" hash="619f7bc6fe20c3dd6c1d82cdf12811b5"/><file name="tagcapsule.phtml" hash="2916e7693ef8ec9fcce5f5a8079d2beb"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Lengow_Connector.csv" hash="fc9d13f3b25c8aaf83b906f6d02dad0c"/></dir></target><target name="mageetc"><dir name="modules"><file name="Lengow_Connector.xml" hash="34b39beecc725740ea1e0bc8d339287a"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="lengow"><dir name="css"><file name="admin.css" hash="aa78dc26e735d8110b88d9974f72a502"/></dir><dir name="js"><file name="charts.min.js" hash="6806368c6a0bf73a5236b452fd5c2332"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="lengow"><dir name="js"><file name="tracker.js" hash="6402a4fbbb81a3b0587ec8c4c375e0a0"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
19
  </package>