MondialRelay_Pointsrelais - Version 1.3.2

Version Notes

validation de la 1.4.2
correction de la grille d'impression.

Download this release

Release Info

Developer Magento Core Team
Extension MondialRelay_Pointsrelais
Version 1.3.2
Comparing to
See all releases


Code changes from version 1.3.1 to 1.3.2

app/code/community/MondialRelay/Pointsrelais/Block/Sales/Shipment/Grid.php CHANGED
@@ -53,8 +53,11 @@ class MondialRelay_Pointsrelais_Block_Sales_Shipment_Grid extends Mage_Adminhtml
53
  protected function _prepareCollection()
54
  {
55
  $collection = Mage::getResourceModel($this->_getCollectionClass());
 
56
  $collection->getSelect()->columns(array('shipment_created_at' => 'main_table.created_at'));
57
- $collection->getSelect()->joinInner(array('ost' => $collection->getTable('sales/shipment_track')), 'main_table.order_id = ost.parent_id');
 
 
58
  $this->setCollection($collection);
59
  return parent::_prepareCollection();
60
  }
@@ -96,11 +99,6 @@ class MondialRelay_Pointsrelais_Block_Sales_Shipment_Grid extends Mage_Adminhtml
96
  'type' => 'number',
97
  ));
98
 
99
- $this->addColumn('title', array(
100
- 'header' => Mage::helper('sales')->__('Mode de transport'),
101
- 'index' => 'title',
102
- 'type' => 'text',
103
- ));
104
 
105
  $this->addColumn('action',
106
  array(
53
  protected function _prepareCollection()
54
  {
55
  $collection = Mage::getResourceModel($this->_getCollectionClass());
56
+ $collection->distinct(true);
57
  $collection->getSelect()->columns(array('shipment_created_at' => 'main_table.created_at'));
58
+ $collection->getSelect()->join(array('ost' => $collection->getTable('sales/shipment_track')), 'main_table.entity_id = ost.parent_id');
59
+ $collection->addFieldToFilter('ost.carrier_code', array('like' => 'pointsrelais%'));
60
+ $collection->getSelect()->group('main_table.entity_id');
61
  $this->setCollection($collection);
62
  return parent::_prepareCollection();
63
  }
99
  'type' => 'number',
100
  ));
101
 
 
 
 
 
 
102
 
103
  $this->addColumn('action',
104
  array(
app/code/community/MondialRelay/Pointsrelais/Block/Sales/Shipment/Grid.php.old DELETED
@@ -1,175 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category Mage
22
- * @package Mage_Adminhtml
23
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
24
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
- */
26
-
27
- /**
28
- * Adminhtml sales orders grid
29
- *
30
- * @author Magento Core Team <core@magentocommerce.com>
31
- */
32
- class MondialRelay_Pointsrelais_Block_Sales_Shipment_Grid extends Mage_Adminhtml_Block_Widget_Grid
33
- {
34
-
35
- public function __construct()
36
- {
37
- parent::__construct();
38
- $this->setId('sales_shipment_grid');
39
- $this->setDefaultSort('created_at');
40
- $this->setDefaultDir('DESC');
41
- }
42
-
43
- // protected function _prepareCollection()
44
- // {
45
- // $collection = Mage::getResourceModel('sales/order_shipment_collection')
46
- // ->addAttributeToSelect('increment_id')
47
- // ->addAttributeToSelect('created_at')
48
- // ->addAttributeToSelect('total_qty')
49
- // ->joinAttribute('shipping_firstname', 'order_address/firstname', 'shipping_address_id', null, 'left')
50
- // ->joinAttribute('shipping_lastname', 'order_address/lastname', 'shipping_address_id', null, 'left')
51
- // ->joinAttribute('order_increment_id', 'order/increment_id', 'order_id', null, 'left')
52
- // ->joinAttribute('order_created_at', 'order/created_at', 'order_id', null, 'left')
53
- // ->joinAttribute('shipping_carrier', 'order/shipping_method', 'order_id', null, 'left')
54
- // ->addAttributeToFilter('shipping_carrier',array('like'=>'pointsrelais%'))
55
- // ;
56
- // $this->setCollection($collection);
57
- // return parent::_prepareCollection();
58
- // }
59
-
60
- /**
61
- * Retrieve collection class
62
- *
63
- * @return string
64
- */
65
- protected function _getCollectionClass()
66
- {
67
- return 'sales/order_shipment_track_collection';
68
- }
69
-
70
- protected function _prepareCollection()
71
- {
72
- $collection = Mage::getResourceModel($this->_getCollectionClass());
73
- $collection->addAttributeToFilter('carrier_code',array('like'=>'pointsrelais%'))
74
- ->joinAttribute('order_increment_id', 'order/increment_id', 'order_id', null, 'left')
75
- ->joinAttribute('shipping_firstname', 'order_address/firstname', 'shipping_address_id', null, 'left')
76
- ->joinAttribute('shipping_lastname', 'order_address/lastname', 'shipping_address_id', null, 'left');
77
- $collection->load();
78
- // $collection->addAttributeToSelect('shipping_method');
79
- // Mage::Log($collection->getSelect());
80
- $this->setCollection($collection);
81
- return parent::_prepareCollection();
82
- }
83
-
84
- protected function _prepareColumns()
85
- {
86
- $this->addColumn('parent_id', array(
87
- 'header' => Mage::helper('sales')->__('Shipment #'),
88
- 'index' => 'parent_id',
89
- 'type' => 'text',
90
- ));
91
-
92
- $this->addColumn('created_at', array(
93
- 'header' => Mage::helper('sales')->__('Date Shipped'),
94
- 'index' => 'created_at',
95
- 'type' => 'datetime',
96
- ));
97
-
98
- $this->addColumn('order_increment_id', array(
99
- 'header' => Mage::helper('sales')->__('Order #'),
100
- 'index' => 'order_increment_id',
101
- 'type' => 'text',
102
- ));
103
-
104
- $this->addColumn('order_created_at', array(
105
- 'header' => Mage::helper('sales')->__('Order Date'),
106
- 'index' => 'order_created_at',
107
- 'type' => 'datetime',
108
- ));
109
-
110
- $this->addColumn('shipping_firstname', array(
111
- 'header' => Mage::helper('sales')->__('Firstname'),
112
- 'index' => 'shipping_firstname',
113
- ));
114
-
115
- $this->addColumn('shipping_lastname', array(
116
- 'header' => Mage::helper('sales')->__('Lastname'),
117
- 'index' => 'shipping_lastname',
118
- ));
119
-
120
- $this->addColumn('number', array(
121
- 'header' => Mage::helper('sales')->__('Tracking'),
122
- 'index' => 'number',
123
- ));
124
-
125
-
126
- $this->addColumn('download', array(
127
- 'header' => Mage::helper('pointsrelais')->__('Etiquettes'),
128
- 'type' => 'action',
129
- 'getter' => 'getParentId',
130
- 'actions' => array(
131
- array(
132
- 'caption' => Mage::helper('pointsrelais')->__('Imprimer'),
133
- 'url' => array(
134
- 'base'=>'pointsrelais/sales_impression/print'
135
- ),
136
- 'field' => 'shipment_id'
137
- )
138
- ),
139
- 'filter' => false,
140
- 'sortable' => false,
141
- 'index' => 'stores'
142
- ));
143
-
144
- return parent::_prepareColumns();
145
- }
146
-
147
- public function getRowUrl($row)
148
- {
149
- return $this->getUrl('adminhtml/sales_shipment/view',
150
- array(
151
- 'shipment_id'=> $row->getParentId(),
152
- )
153
- );
154
- }
155
-
156
- protected function _prepareMassaction()
157
- {
158
- $this->setMassactionIdField('entity_id');
159
- $this->getMassactionBlock()->setFormFieldName('shipment_ids');
160
-
161
- // Impression des étiquettes
162
- $this->getMassactionBlock()->addItem('pdfshipments_order', array(
163
- 'label'=> Mage::helper('sales')->__('Imprimer les étiquettes'),
164
- 'url' => $this->getUrl('pointsrelais/sales_impression/printMass'),
165
- ));
166
-
167
- return $this;
168
- }
169
-
170
- public function getGridUrl()
171
- {
172
- return $this->getUrl('adminhtml/sales_shipment/*', array('_current' => true));
173
- }
174
-
175
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/MondialRelay/Pointsrelais/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <MondialRelay_Pointsrelais>
5
- <version>1.3.1</version>
6
  <depends>
7
  <Mage_Adminhtml />
8
  <Mage_Shipping />
2
  <config>
3
  <modules>
4
  <MondialRelay_Pointsrelais>
5
+ <version>1.3.2</version>
6
  <depends>
7
  <Mage_Adminhtml />
8
  <Mage_Shipping />
package.xml CHANGED
@@ -1,22 +1,19 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>MondialRelay_Pointsrelais</name>
4
- <version>1.3.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Module de livraison Mondial Relay</summary>
10
  <description>Module de livraison Mondial Relay</description>
11
- <notes>correction du num&#xE9;ro de t&#xE9;l&#xE9;phone.
12
-
13
- version sp&#xE9;cifique a magento &gt;= 1.4.1
14
- ajout de colisDrive
15
- ajout d'une option fdp gratuit a partir d'un certain montant.</notes>
16
  <authors><author><name>cyrille guillaud</name><user>auto-converted</user><email>cguillaud@cg-consulting.fr</email></author></authors>
17
- <date>2011-01-10</date>
18
- <time>06:55:08</time>
19
- <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="mondialrelay"><dir name="template"><dir name="sales"><dir name="order"><dir name="invoice"><dir name="create"><file name="form.phtml" hash="195ad76f25d4100df2461709e2eb6afa"/><file name="tracking.phtml" hash="a30e1d66bd837b4e11d63ee578c2be87"/></dir></dir><dir name="shipment"><dir name="create"><file name="form.phtml" hash="a0180e191534e9e92db20808327abe51"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="pointsrelais.xml" hash="cecd44caa45a4124f3ed64a36137fd17"/></dir><dir name="template"><dir name="pointsrelais"><file name="baseurl.phtml" hash="ddbe6d60de42248171c32ac6279ae46d"/><file name="info.phtml" hash="bd616597f35a48a71bcd7bd1e4ad6575"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><file name="pointsrelais.css" hash="229d09977ee2eac2e72dcb89bf8eb05c"/></dir><dir name="images"><dir name="mondialrelay"><file name="img_fermer.gif" hash="5901eaf779aa6fa3eac84d1dd9520113"/><file name="img_fleche.gif" hash="908f8a69124b7b16e3ec2caefc78d948"/><file name="logo_PR_01.gif" hash="7066eb60e2645b304d1b926d0a4c31e2"/><file name="Thumbs.db" hash="51da41310be9652f9360715494dc6b03"/></dir></dir><dir name="js"><file name="pointsrelais.js" hash="8008e112e4dd2f468b5726c561a5f8b4"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="MondialRelay_Pointsrelais.csv" hash="64ed2a0c6bde5f02862e24a0697a6109"/></dir></target><target name="mageetc"><dir name="modules"><file name="MondialRelay_All.xml" hash="8257e76c52b260553f8ce663c2a8b3d1"/></dir></target><target name="magecommunity"><dir name="MondialRelay"><dir name="Pointsrelais"><dir name="Block"><dir name="Sales"><dir name="Order"><dir name="Shipment"><file name="View.php" hash="f27d3b193dd33dcd94a5a83f57502e78"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="bbe6793c04695371e22019334e2268e2"/><file name="Grid.php.old" hash="f9357e7514c3b653e15c4e705c121dac"/></dir><file name="Impression.php" hash="0685fabf03cb81a76a643e2fbc7d90bd"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Exportpointsrelais.php" hash="770095d552bf84b666577c64ce867404"/><file name="Exportpointsrelaiscd.php" hash="90f3ced57bf858b6e69795055b724009"/><file name="Exportpointsrelaisld1.php" hash="04bbf4fbf5f6015c618ef6e8780a896a"/><file name="Exportpointsrelaislds.php" hash="a82da5ceaaf45eafeb71d14dd691fc4c"/></dir></dir><file name="Form.php" hash="2fe314af15d89324aa020e7be2c9c492"/></dir></dir><file name="Info.php" hash="d24bd6bcffe1eae00144d320f595d40d"/></dir><dir name="controllers"><dir name="Sales"><dir name="Order"><file name="ShipmentController.php" hash="e0a7682994918e3669421f07e0b37486"/></dir><file name="ImpressionController.php" hash="2b5f808c845c1306ba16a82493e6cc95"/></dir><dir name="System"><file name="ConfigController.php" hash="291a57f80a7e1d6a6e2c757dea54869a"/></dir><file name="IndexController.php" hash="0b3068c6075d1ad50f32f802a91bdf38"/></dir><dir name="etc"><file name="config.xml" hash="62e1079d977de246399d2b707be8fa20"/><file name="system.xml" hash="f0d59b6905c82f871263fbd0d42c708b"/></dir><dir name="Helper"><file name="Data.php" hash="1aa9920b55f6cba7fd2d0fd57be0db13"/></dir><dir name="Model"><dir name="Carrier"><file name="Pointsrelais.php" hash="28fbd326bd914ae12a1c856972c601a4"/><file name="Pointsrelaiscd.php" hash="5226ae8f885de7cbe1c3f89401da8854"/><file name="Pointsrelaisld1.php" hash="c71c209cd2699a40eb51198465a90645"/><file name="Pointsrelaislds.php" hash="57af150f69fe9bb6fed91c0ff26463fb"/></dir><dir name="Mysql4"><dir name="Carrier"><dir name="Pointsrelais"><file name="Collection.php" hash="8c7735c2b69a53f234628b8ac0d946cd"/></dir><dir name="Pointsrelaiscd"><file name="Collection.php" hash="94e736c84e3a30561c8032551aecb9b7"/></dir><dir name="Pointsrelaisld1"><file name="Collection.php" hash="a844776e9aaa2b90ac2a491f2c2c3013"/></dir><dir name="Pointsrelaislds"><file name="Collection.php" hash="2d9338b9f0d9b2e4e7aa5baed24780b9"/></dir><file name="Pointsrelais.php" hash="c1d5c5f50611d060612ad557111152ce"/><file name="Pointsrelaiscd.php" hash="3b54fad46a50ea4a0d84cef8881738f4"/><file name="Pointsrelaisld1.php" hash="4db6f346ff99567b6eafdeac201c7726"/><file name="Pointsrelaislds.php" hash="64957492e8b2ce9b6e2ab0e6f5b6c7b0"/></dir></dir><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Shipping"><file name="Pointsrelais.php" hash="39881a493e895b1921f27b3b144450ee"/><file name="Pointsrelaiscd.php" hash="a03f6c213c222ea48652a9d885794682"/><file name="Pointsrelaisld1.php" hash="0ed2ee4ee8c3c725fa5f3c1cde0c6626"/><file name="Pointsrelaislds.php" hash="b1bbea361c6aeb38528af5892237d791"/></dir></dir><dir name="Source"><dir name="Shipping"><file name="Pointsrelais.php" hash="a75b6978fea52d78b0aabce1401cf9d3"/><file name="Pointsrelaiscd.php" hash="e68ff21b790e9c14fe7bc7c645fbfd02"/><file name="Pointsrelaisld1.php" hash="b8e21537df53d6eaba905855d0c459f2"/><file name="Pointsrelaislds.php" hash="9af32669854321d6136f2fa368566411"/></dir></dir></dir></dir><file name="Observer.php" hash="1538e54242450741dc7a64a74174584b"/></dir><dir name="sql"><dir name="pointsrelais_setup"><file name="mysql4-install-0.1.0.php" hash="bcef01a55bfd48286a132bba6a202ac4"/><file name="mysql4-install-1.2.0.php" hash="4b752ac0e50c7046f0c95516f17d6984"/><file name="mysql4-uninstall-1.2.0.php" hash="ddba123ff4181617d314cdb61dfd2f62"/><file name="mysql4-upgrade-0.1.0-1.0.4.php" hash="caf165761a59a5a9e5caf71c3654ce94"/><file name="mysql4-upgrade-1.0.4-1.2.0.php" hash="5e725e4377df89a26d7a6ff1cc8f32d6"/><file name="mysql4-upgrade-1.2.4-1.3.0.php" hash="b3eb7947cf0056d5e0a081329fc93d86"/></dir></dir></dir></dir></target></contents>
20
  <compatible/>
21
  <dependencies/>
22
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>MondialRelay_Pointsrelais</name>
4
+ <version>1.3.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Module de livraison Mondial Relay</summary>
10
  <description>Module de livraison Mondial Relay</description>
11
+ <notes>validation de la 1.4.2
12
+ correction de la grille d'impression.</notes>
 
 
 
13
  <authors><author><name>cyrille guillaud</name><user>auto-converted</user><email>cguillaud@cg-consulting.fr</email></author></authors>
14
+ <date>2011-01-19</date>
15
+ <time>08:55:18</time>
16
+ <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="mondialrelay"><dir name="template"><dir name="sales"><dir name="order"><dir name="invoice"><dir name="create"><file name="form.phtml" hash="195ad76f25d4100df2461709e2eb6afa"/><file name="tracking.phtml" hash="a30e1d66bd837b4e11d63ee578c2be87"/></dir></dir><dir name="shipment"><dir name="create"><file name="form.phtml" hash="a0180e191534e9e92db20808327abe51"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="pointsrelais.xml" hash="cecd44caa45a4124f3ed64a36137fd17"/></dir><dir name="template"><dir name="pointsrelais"><file name="baseurl.phtml" hash="ddbe6d60de42248171c32ac6279ae46d"/><file name="info.phtml" hash="bd616597f35a48a71bcd7bd1e4ad6575"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><file name="pointsrelais.css" hash="229d09977ee2eac2e72dcb89bf8eb05c"/></dir><dir name="images"><dir name="mondialrelay"><file name="img_fermer.gif" hash="5901eaf779aa6fa3eac84d1dd9520113"/><file name="img_fleche.gif" hash="908f8a69124b7b16e3ec2caefc78d948"/><file name="logo_PR_01.gif" hash="7066eb60e2645b304d1b926d0a4c31e2"/><file name="Thumbs.db" hash="51da41310be9652f9360715494dc6b03"/></dir></dir><dir name="js"><file name="pointsrelais.js" hash="8008e112e4dd2f468b5726c561a5f8b4"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="MondialRelay_Pointsrelais.csv" hash="64ed2a0c6bde5f02862e24a0697a6109"/></dir></target><target name="mageetc"><dir name="modules"><file name="MondialRelay_All.xml" hash="8257e76c52b260553f8ce663c2a8b3d1"/></dir></target><target name="magecommunity"><dir name="MondialRelay"><dir name="Pointsrelais"><dir name="Block"><dir name="Sales"><dir name="Order"><dir name="Shipment"><file name="View.php" hash="f27d3b193dd33dcd94a5a83f57502e78"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="158adf3519e15f65977fafddc566613c"/></dir><file name="Impression.php" hash="0685fabf03cb81a76a643e2fbc7d90bd"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Exportpointsrelais.php" hash="770095d552bf84b666577c64ce867404"/><file name="Exportpointsrelaiscd.php" hash="90f3ced57bf858b6e69795055b724009"/><file name="Exportpointsrelaisld1.php" hash="04bbf4fbf5f6015c618ef6e8780a896a"/><file name="Exportpointsrelaislds.php" hash="a82da5ceaaf45eafeb71d14dd691fc4c"/></dir></dir><file name="Form.php" hash="2fe314af15d89324aa020e7be2c9c492"/></dir></dir><file name="Info.php" hash="d24bd6bcffe1eae00144d320f595d40d"/></dir><dir name="controllers"><dir name="Sales"><dir name="Order"><file name="ShipmentController.php" hash="e0a7682994918e3669421f07e0b37486"/></dir><file name="ImpressionController.php" hash="2b5f808c845c1306ba16a82493e6cc95"/></dir><dir name="System"><file name="ConfigController.php" hash="291a57f80a7e1d6a6e2c757dea54869a"/></dir><file name="IndexController.php" hash="0b3068c6075d1ad50f32f802a91bdf38"/></dir><dir name="etc"><file name="config.xml" hash="1fde28f602f73615af23601d34b1d759"/><file name="system.xml" hash="f0d59b6905c82f871263fbd0d42c708b"/></dir><dir name="Helper"><file name="Data.php" hash="1aa9920b55f6cba7fd2d0fd57be0db13"/></dir><dir name="Model"><dir name="Carrier"><file name="Pointsrelais.php" hash="28fbd326bd914ae12a1c856972c601a4"/><file name="Pointsrelaiscd.php" hash="5226ae8f885de7cbe1c3f89401da8854"/><file name="Pointsrelaisld1.php" hash="c71c209cd2699a40eb51198465a90645"/><file name="Pointsrelaislds.php" hash="57af150f69fe9bb6fed91c0ff26463fb"/></dir><dir name="Mysql4"><dir name="Carrier"><dir name="Pointsrelais"><file name="Collection.php" hash="8c7735c2b69a53f234628b8ac0d946cd"/></dir><dir name="Pointsrelaiscd"><file name="Collection.php" hash="94e736c84e3a30561c8032551aecb9b7"/></dir><dir name="Pointsrelaisld1"><file name="Collection.php" hash="a844776e9aaa2b90ac2a491f2c2c3013"/></dir><dir name="Pointsrelaislds"><file name="Collection.php" hash="2d9338b9f0d9b2e4e7aa5baed24780b9"/></dir><file name="Pointsrelais.php" hash="c1d5c5f50611d060612ad557111152ce"/><file name="Pointsrelaiscd.php" hash="3b54fad46a50ea4a0d84cef8881738f4"/><file name="Pointsrelaisld1.php" hash="4db6f346ff99567b6eafdeac201c7726"/><file name="Pointsrelaislds.php" hash="64957492e8b2ce9b6e2ab0e6f5b6c7b0"/></dir></dir><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Shipping"><file name="Pointsrelais.php" hash="39881a493e895b1921f27b3b144450ee"/><file name="Pointsrelaiscd.php" hash="a03f6c213c222ea48652a9d885794682"/><file name="Pointsrelaisld1.php" hash="0ed2ee4ee8c3c725fa5f3c1cde0c6626"/><file name="Pointsrelaislds.php" hash="b1bbea361c6aeb38528af5892237d791"/></dir></dir><dir name="Source"><dir name="Shipping"><file name="Pointsrelais.php" hash="a75b6978fea52d78b0aabce1401cf9d3"/><file name="Pointsrelaiscd.php" hash="e68ff21b790e9c14fe7bc7c645fbfd02"/><file name="Pointsrelaisld1.php" hash="b8e21537df53d6eaba905855d0c459f2"/><file name="Pointsrelaislds.php" hash="9af32669854321d6136f2fa368566411"/></dir></dir></dir></dir><file name="Observer.php" hash="1538e54242450741dc7a64a74174584b"/></dir><dir name="sql"><dir name="pointsrelais_setup"><file name="mysql4-install-0.1.0.php" hash="bcef01a55bfd48286a132bba6a202ac4"/><file name="mysql4-install-1.2.0.php" hash="4b752ac0e50c7046f0c95516f17d6984"/><file name="mysql4-uninstall-1.2.0.php" hash="ddba123ff4181617d314cdb61dfd2f62"/><file name="mysql4-upgrade-0.1.0-1.0.4.php" hash="caf165761a59a5a9e5caf71c3654ce94"/><file name="mysql4-upgrade-1.0.4-1.2.0.php" hash="5e725e4377df89a26d7a6ff1cc8f32d6"/><file name="mysql4-upgrade-1.2.4-1.3.0.php" hash="b3eb7947cf0056d5e0a081329fc93d86"/></dir></dir></dir></dir></target></contents>
17
  <compatible/>
18
  <dependencies/>
19
  </package>