Eabi_DpdEE - Version 0.1.33

Version Notes

- added weight, qty, order_id to tracking info

Download this release

Release Info

Developer Matis Matis
Extension Eabi_DpdEE
Version 0.1.33
Comparing to
See all releases


Code changes from version 0.1.32 to 0.1.33

app/code/community/Eabi/DpdEE/CHANGELOG.txt CHANGED
@@ -105,4 +105,7 @@
105
  - Fixed XML variable generation
106
 
107
  0.1.32
108
- - Fixed bug in XML variable generation
 
 
 
105
  - Fixed XML variable generation
106
 
107
  0.1.32
108
+ - Fixed bug in XML variable generation
109
+
110
+ 0.1.33
111
+ - added weight, qty, order_id to tracking info
app/code/community/Eabi/DpdEE/Model/Observer.php CHANGED
@@ -82,7 +82,10 @@ class Eabi_DpdEE_Model_Observer {
82
  ->setNumber($trackingNumber)
83
  ->setCarrierCode($shippingMethodInstance->getCarrierCode())
84
  ->setTitle($shippingMethodInstance->getConfigData('title'))
85
- ->setShipment($shipment);
 
 
 
86
  $track->save();
87
  }
88
  }
82
  ->setNumber($trackingNumber)
83
  ->setCarrierCode($shippingMethodInstance->getCarrierCode())
84
  ->setTitle($shippingMethodInstance->getConfigData('title'))
85
+ ->setShipment($shipment)
86
+ ->setOrderId($shipment->getOrder()->getId())
87
+ ->setQty($shipment->getOrder()->getTotalQtyOrdered())
88
+ ->setWeight($shipment->getOrder()->getWeight());
89
  $track->save();
90
  }
91
  }
app/code/community/Eabi/DpdEE/etc/config.xml CHANGED
@@ -36,7 +36,7 @@
36
  <config>
37
  <modules>
38
  <Eabi_DpdEE>
39
- <version>0.1.32</version>
40
  </Eabi_DpdEE>
41
  </modules>
42
 
36
  <config>
37
  <modules>
38
  <Eabi_DpdEE>
39
+ <version>0.1.33</version>
40
  </Eabi_DpdEE>
41
  </modules>
42
 
app/code/community/Eabi/Postoffice/Model/Carrier/Abstract.php CHANGED
@@ -230,6 +230,11 @@ abstract class Eabi_Postoffice_Model_Carrier_Abstract extends Mage_Shipping_Mode
230
  }
231
  return false;
232
  }
 
 
 
 
 
233
 
234
 
235
  /**
@@ -442,7 +447,16 @@ abstract class Eabi_Postoffice_Model_Carrier_Abstract extends Mage_Shipping_Mode
442
  <script type="text/javascript">
443
  /* <![CDATA[ */
444
  $('{$carrierId}').writeAttribute('value', '');
445
- new Ajax.Request('{$url}', {
 
 
 
 
 
 
 
 
 
446
  method: 'post',
447
  parameters: {
448
  carrier_id: '{$carrierId}',
@@ -451,9 +465,27 @@ abstract class Eabi_Postoffice_Model_Carrier_Abstract extends Mage_Shipping_Mode
451
  address_id: '{$addressId}',
452
  },
453
  onSuccess: function(transport) {
454
- $('{$divId}').update(transport.responseJSON.html);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
455
  }
456
  });
 
 
 
 
457
  /* ]]> */
458
  </script>
459
  EOT;
@@ -580,6 +612,7 @@ EOT;
580
  $addressId = (string)$addressId;
581
  $session = Mage::getSingleton('core/session');
582
  $sessionData = $session->getData('eabi_allowedcarriers');
 
583
  if (is_array($sessionData) && isset($sessionData[$addressId]) && isset($sessionData[$addressId][$this->_code])) {
584
  return true;
585
  }
230
  }
231
  return false;
232
  }
233
+
234
+
235
+ private function ___toJson($input) {
236
+ return json_encode($input);
237
+ }
238
 
239
 
240
  /**
447
  <script type="text/javascript">
448
  /* <![CDATA[ */
449
  $('{$carrierId}').writeAttribute('value', '');
450
+
451
+ (function(window, undefined ) {
452
+ lastPrice = window.lastPrice,
453
+ quoteBaseGrandTotal = window.quoteBaseGrandTotal;
454
+ var cacheKey = {$this->___toJson($carrierId . '/' . $carrierCode . '/' . $addressId)},
455
+ cacheId = {$this->___toJson($divId)}, result;
456
+ if (window.document && window.document[cacheKey] && window.document[cacheKey] !== "undefined" && window.document[cacheKey][cacheId]) {
457
+ $('{$divId}').update(window.document[cacheKey][cacheId].html);
458
+ } else {
459
+ new Ajax.Request('{$url}', {
460
  method: 'post',
461
  parameters: {
462
  carrier_id: '{$carrierId}',
465
  address_id: '{$addressId}',
466
  },
467
  onSuccess: function(transport) {
468
+ //html must be in cache, key is carrier_id + "/" + carrier_code "/" + address_id,
469
+ //div_id-s is array
470
+ result = transport.responseJSON;
471
+
472
+ if (!window.document[cacheKey]) {
473
+ window.document[cacheKey] = {};
474
+ }
475
+
476
+ if (!window.document[cacheKey][cacheId]) {
477
+ window.document[cacheKey][cacheId] = {};
478
+ }
479
+ window.document[cacheKey][cacheId] = result;
480
+ if (result.html !== true) {
481
+ $('{$divId}').update(window.document[cacheKey][cacheId].html);
482
+ }
483
  }
484
  });
485
+
486
+ }
487
+ }( window ));
488
+
489
  /* ]]> */
490
  </script>
491
  EOT;
612
  $addressId = (string)$addressId;
613
  $session = Mage::getSingleton('core/session');
614
  $sessionData = $session->getData('eabi_allowedcarriers');
615
+
616
  if (is_array($sessionData) && isset($sessionData[$addressId]) && isset($sessionData[$addressId][$this->_code])) {
617
  return true;
618
  }
app/code/community/Eabi/Postoffice/etc/config.xml CHANGED
@@ -36,7 +36,7 @@
36
  <config>
37
  <modules>
38
  <Eabi_Postoffice>
39
- <version>0.1.18</version>
40
  </Eabi_Postoffice>
41
  </modules>
42
 
36
  <config>
37
  <modules>
38
  <Eabi_Postoffice>
39
+ <version>0.1.19</version>
40
  </Eabi_Postoffice>
41
  </modules>
42
 
app/design/frontend/base/default/template/eabi_postoffice/available.phtml CHANGED
@@ -55,7 +55,9 @@
55
  <?php if ($_rate->getCode() === $this->getAddressShippingMethod()): ?>
56
  <script type="text/javascript">
57
  //<![CDATA[
 
58
  lastPrice = <?php echo (float)$_rate->getPrice(); ?>;
 
59
  //]]>
60
  </script>
61
  <?php endif; ?>
@@ -84,9 +86,12 @@
84
 
85
  $$('input[type="radio"][name="shipping_method"]').each(function(el){
86
  Event.observe(el, 'click', function(){
 
 
87
  if (el.checked == true) {
88
  var getShippingCode = el.getValue();
89
  <?php if (!empty($shippingCodePrice)): ?>
 
90
  var newPrice = shippingCodePrice[getShippingCode];
91
  if (!lastPrice) {
92
  lastPrice = newPrice;
55
  <?php if ($_rate->getCode() === $this->getAddressShippingMethod()): ?>
56
  <script type="text/javascript">
57
  //<![CDATA[
58
+ console.log('defining lastPrice');
59
  lastPrice = <?php echo (float)$_rate->getPrice(); ?>;
60
+ console.log(lastPrice);
61
  //]]>
62
  </script>
63
  <?php endif; ?>
86
 
87
  $$('input[type="radio"][name="shipping_method"]').each(function(el){
88
  Event.observe(el, 'click', function(){
89
+ /*console.log('clicking on el:', el);*/
90
+
91
  if (el.checked == true) {
92
  var getShippingCode = el.getValue();
93
  <?php if (!empty($shippingCodePrice)): ?>
94
+ console.log('clicked on element code', getShippingCode);
95
  var newPrice = shippingCodePrice[getShippingCode];
96
  if (!lastPrice) {
97
  lastPrice = newPrice;
app/etc/modules/Eabi_DpdEE.xml CHANGED
@@ -39,7 +39,7 @@
39
  <depends>
40
  <Eabi_Postoffice />
41
  </depends>
42
- <version>0.1.32</version>
43
  </Eabi_DpdEE>
44
  </modules>
45
  </config>
39
  <depends>
40
  <Eabi_Postoffice />
41
  </depends>
42
+ <version>0.1.33</version>
43
  </Eabi_DpdEE>
44
  </modules>
45
  </config>
app/etc/modules/Eabi_Postoffice.xml CHANGED
@@ -42,7 +42,7 @@
42
  <Mage_Shipping />
43
  <Eabi_Livehandler />
44
  </depends>
45
- <version>0.1.18</version>
46
  </Eabi_Postoffice>
47
  </modules>
48
  </config>
42
  <Mage_Shipping />
43
  <Eabi_Livehandler />
44
  </depends>
45
+ <version>0.1.19</version>
46
  </Eabi_Postoffice>
47
  </modules>
48
  </config>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Eabi_DpdEE</name>
4
- <version>0.1.32</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.gnu.org/licenses/gpl-3.0.txt">GNU Public License V3.0</license>
7
  <channel>community</channel>
@@ -16,12 +16,14 @@
16
  &lt;p&gt;Allows to create and print DPD packing slips&lt;/p&gt;&#xD;
17
  &lt;p&gt;Allows to call the courier from Magento admin&lt;/p&gt;&#xD;
18
  &lt;p&gt;Allows cash on delivery payment and allows to set an extra fee per country which will be appended to shipping fee&lt;/p&gt;&#xD;
19
- &lt;p&gt;Intended to use for Estonian merchant who sends parcels to all Baltic states&lt;/p&gt;</description>
20
- <notes>- Fixed bug in XML variable generation</notes>
21
- <authors><author><name>Matis Matis</name><user>auto-converted</user><email>info@e-abi.ee</email></author></authors>
22
- <date>2016-05-06</date>
23
- <time>10:25:58</time>
24
- <contents><target name="magecommunity"><dir name="Eabi"><dir name="DpdEE"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Country.php" hash="3a0ce3bedf19b868d81f4117740778ce"/></dir></dir></dir></dir><dir name="Info"><file name="Payment.php" hash="5c362a3835374edcd3f06c03bf1807d9"/></dir><dir name="Order"><file name="Courier.php" hash="897aa2fb30241802e04db8e997cc5eb8"/></dir><file name="Invoice.php" hash="3b6991a3f7a08763c16ccc73ceab2111"/></dir><dir name="Helper"><file name="Data.php" hash="5599ef7d77c5769653d3b655b7f18d72"/></dir><dir name="Model"><dir name="Action"><dir name="Carrier"><dir name="Order"><file name="Courier.php" hash="bfec69ca2b190b71cc5d649d00b685f9"/></dir></dir></dir><dir name="Button"><file name="Courier.php" hash="b60b161082d23d9596473fc4f942484a"/></dir><dir name="Payment"><file name="Processor.php" hash="18f56c72f9b897f40e97bae83e440d1f"/></dir><dir name="Source"><dir name="Label"><file name="Position.php" hash="d3c89fbc76ab10ab8daa86800fe19083"/></dir><file name="Service.php" hash="504b474a715c21d943b61b7eaddac974"/></dir><file name="Api.php" hash="5fb56e2ba77e5275c9479ad56cfaa1be"/><file name="Config.php" hash="27f77c56c64cefa4b7ccfb3df1b877b5"/><file name="Flat.php" hash="1bafdae148495a356031343f83bed390"/><file name="Observer.php" hash="8a1eeac07c99ee53c1fb0a27f14a0984"/><file name="Post.php" hash="95028daf7aa8cdbf20d046c3e3e9db8f"/></dir><dir name="etc"><file name="config.xml" hash="c51a4f1bca7b16f25471d024a0d948b2"/><file name="system.xml" hash="f159733074600175fe21a3245fa06328"/></dir><dir name="sql"><dir name="eabi_dpdee_setup"><file name="mysql4-install-0.1.0.php" hash="d87dbd3080d98c183956319f20110433"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="56765009037b3699a7c871f14704a00c"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="411745561f0ddec025db8a48cb2abd26"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="6ad16e795c12646cd77242434c43cab0"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="dfbd21903d6e85592c994ec5dee5e374"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="a852db2e91ae253593d499a230e08013"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="456f749bc3e49363561153b3e0e57d96"/></dir></dir><file name="CHANGELOG.txt" hash="c019e7c9f004de3a70221410c5d23136"/><file name="LICENCE.txt" hash="0191312e121c0b3e1165619b96efcf9f"/></dir><dir name="Postoffice"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><dir name="Form"><dir name="Field"><file name="License.php" hash="2f5750200eb5e1ba7fd5ba10f82b8a18"/><file name="Remove.php" hash="f94c1e6fb2ca0d054fb5c87dc98b289c"/></dir></dir></dir></dir><dir name="Config"><file name="Rebuildbutton.php" hash="b9139075530956f874b72d1592c95890"/></dir></dir><dir name="Helper"><file name="Countrycode.php" hash="fa1aeb2e43d3108da722c677ea4b8d13"/><file name="Data.php" hash="76aa3727765746553c4e5c3d77e09b43"/><file name="Xml.php" hash="1fcb9b0adbf74b5fd19a22e9df2b867f"/></dir><dir name="Model"><dir name="Carrier"><file name="Abstract.php" hash="cf4c9afc1ea42c416a0f674ae78b6f0e"/><file name="Result.php" hash="77e183bf5f9b31b9ae9c4c12182b0f43"/></dir><dir name="Email"><dir name="Template"><file name="Mailer.php" hash="ad050d051f143033273328c6c6d365cb"/></dir></dir><dir name="Licenceable"><dir name="Autosend"><file name="Method.php" hash="f06c99a1a4311de474cd63afed947220"/></dir><dir name="Payment"><file name="Method.php" hash="18fe727f3ac4db9ccfa93486115432ba"/></dir><dir name="Shipping"><file name="Method.php" hash="b34ba5c1bee4c3c818514c125f9ee882"/></dir><file name="Method.php" hash="f054356db17488890b3275cc9608ef39"/></dir><dir name="Mysql4"><dir name="Carriermodule"><file name="Collection.php" hash="7079738f5fe7591b98aa93a8d9f02dab"/></dir><dir name="Office"><file name="Collection.php" hash="7941e291c5fa7e613d3ecdf785e1d98f"/></dir><file name="Carriermodule.php" hash="e7074af5aa20080065cf5ee44a4e8708"/><file name="Office.php" hash="55ac0e86fe5b89cfaeca3250872d977a"/></dir><dir name="Source"><file name="Sendevent.php" hash="a62dda6f3551e1ae961fc3bb4a91fa11"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Country.php" hash="cd46d97cad9d45a0eaf86a193ebe142c"/></dir></dir></dir><file name="Carriermodule.php" hash="4d4a5b6b72d102e26136b49eafb07d9d"/><file name="Observer.php" hash="13140483e2d7dcfd3a808ef1441bdf9e"/><file name="Office.php" hash="13926ff31c40ca796a15d1e2369559d7"/><file name="Orderview.php" hash="2f67fd0efa38f508fb7a438c98ec4517"/><file name="Updater.php" hash="81815b31d062313bf5a0c46657b4d80e"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Eabi"><dir name="Postoffice"><file name="PostofficeController.php" hash="a51d4f075e8d9a606871946dc5cb53ed"/></dir></dir><file name="PostofficeController.php" hash="72a194bbe8bc3bc0685be1f8101f4d13"/></dir><file name="IndexController.php" hash="674711f386853981403317113f6fe128"/></dir><dir name="etc"><file name="config.xml" hash="283dc31257d10eb620b709f95906fe53"/></dir><dir name="sql"><dir name="eabi_postoffice_setup"><file name="mysql4-install-0.1.0.php" hash="6c25a503d5bc3bef7fdecf12123f7b57"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="00be7881382e9e904cb2bc2cedc89818"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="a9cf1ab713568971161e0caeb0ad19dc"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="40014409962d19234b62913c63b2252f"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="2330590d882eda1bb14dfa0982af096c"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="08580cbaa3ead11e28388998acbec5d8"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="eabi_dpdee.xml" hash="85311cb850eb13eadaed47cdc9c44fb3"/><file name="eabi_postoffice.xml" hash="3248575e76fe484b1e13ee20b11d7b49"/></dir><dir name="template"><dir name="eabi_dpdee"><dir name="order"><file name="courier.phtml" hash="0310f24e96ca3873e78e0e2a0ab26743"/></dir><file name="payment_info.phtml" hash="3f8a01e4bcd2efab555d729bee8335da"/></dir><dir name="eabi_postoffice"><file name="shipping_method_form.phtml" hash="2b74940d708277d75ac29917f52055a4"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="eabi_dpdee.xml" hash="27179eee219a0a8c85b87b8d670ae9e1"/><file name="eabi_postoffice.xml" hash="1b5b7e81226f5a8fdefc19ef618f38f5"/></dir><dir name="template"><dir name="eabi_dpdee"><file name="payment_info.phtml" hash="3f8a01e4bcd2efab555d729bee8335da"/></dir><dir name="eabi_postoffice"><dir name="tracking"><file name="popup.phtml" hash="bdfccfd7127864575a27587a95e3930c"/></dir><file name="available.phtml" hash="c24db2206654d096e898cc034370676b"/><file name="multishipping.phtml" hash="b18864cf6636826fd9b9ef11cd35657f"/><file name="shipping.phtml" hash="b0edc38cd43bdcfede1f4cf5348c9dd6"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eabi_Postoffice.xml" hash="e3161d75c9821f3021fb7d98e80255df"/><file name="Eabi_DpdEE.xml" hash="94367fe0f7a1d1aad3a93ba71fd68f96"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Eabi_DpdEE.csv" hash="d53a6b36efac9db3dfad081f31712b40"/><file name="Eabi_Postoffice.csv" hash="651b14b0e55dbeeb55de579a1a993eab"/></dir><dir name="et_EE"><file name="Eabi_DpdEE.csv" hash="0a64d6699de9f680874acbc9869d4837"/><file name="Eabi_Postoffice.csv" hash="ea423904bbab2d44e6b68a537576c567"/></dir><dir name="ru_RU"><file name="Eabi_DpdEE.csv" hash="a208ad8515648b555ca13c9209c4f833"/><file name="Eabi_Postoffice.csv" hash="651b14b0e55dbeeb55de579a1a993eab"/></dir><dir name="hu_HU"><file name="Eabi_Postoffice.csv" hash="651b14b0e55dbeeb55de579a1a993eab"/></dir><dir name="fi_FI"><file name="Eabi_Postoffice.csv" hash="651b14b0e55dbeeb55de579a1a993eab"/></dir><dir name="lt_LT"><file name="Eabi_Postoffice.csv" hash="651b14b0e55dbeeb55de579a1a993eab"/></dir><dir name="sv_SE"><file name="Eabi_Postoffice.csv" hash="bbad7cd0c48e9482913265b2f0f0cef9"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="eabi_dpdee.css" hash="dcffac29e30c23248afd296ba6eba357"/><file name="eabi_postoffice.css" hash="1baea3a2164029da5adcb67df9ae42da"/></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="eabi_postoffice.css" hash="df0bc2bfd582fc01eb23ffe23fe56e90"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="css"><file name="eabi_postoffice.css" hash="df0bc2bfd582fc01eb23ffe23fe56e90"/></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="eabi_js"><file name="eabi_dpdee.js" hash="bced7e30c8c108c77b773e8c921b7d12"/></dir></dir></target></contents>
 
 
25
  <compatible/>
26
- <dependencies><required><package><name>Eabi_Livehandler</name><channel>community</channel><min>0.1.15</min><max>1.0.0</max></package></required></dependencies>
27
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Eabi_DpdEE</name>
4
+ <version>0.1.33</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.gnu.org/licenses/gpl-3.0.txt">GNU Public License V3.0</license>
7
  <channel>community</channel>
16
  &lt;p&gt;Allows to create and print DPD packing slips&lt;/p&gt;&#xD;
17
  &lt;p&gt;Allows to call the courier from Magento admin&lt;/p&gt;&#xD;
18
  &lt;p&gt;Allows cash on delivery payment and allows to set an extra fee per country which will be appended to shipping fee&lt;/p&gt;&#xD;
19
+ &lt;p&gt;Intended to use for Estonian merchant who sends parcels to all Baltic states&lt;/p&gt;&#xD;
20
+ </description>
21
+ <notes>- added weight, qty, order_id to tracking info&#xD;
22
+ </notes>
23
+ <authors><author><name>Matis Matis</name><user>mhalmann</user><email>info@e-abi.ee</email></author></authors>
24
+ <date>2016-11-17</date>
25
+ <time>11:19:56</time>
26
+ <contents><target name="magecommunity"><dir name="Eabi"><dir name="DpdEE"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Country.php" hash="3a0ce3bedf19b868d81f4117740778ce"/></dir></dir></dir></dir><dir name="Info"><file name="Payment.php" hash="5c362a3835374edcd3f06c03bf1807d9"/></dir><file name="Invoice.php" hash="3b6991a3f7a08763c16ccc73ceab2111"/><dir name="Order"><file name="Courier.php" hash="897aa2fb30241802e04db8e997cc5eb8"/></dir></dir><file name="CHANGELOG.txt" hash="7fdcc9e0630b7e7e7cf974e0c9f8b440"/><dir name="Helper"><file name="Data.php" hash="5599ef7d77c5769653d3b655b7f18d72"/></dir><file name="LICENCE.txt" hash="0191312e121c0b3e1165619b96efcf9f"/><dir name="Model"><dir name="Action"><dir name="Carrier"><dir name="Order"><file name="Courier.php" hash="bfec69ca2b190b71cc5d649d00b685f9"/></dir></dir></dir><file name="Api.php" hash="5fb56e2ba77e5275c9479ad56cfaa1be"/><dir name="Button"><file name="Courier.php" hash="b60b161082d23d9596473fc4f942484a"/></dir><file name="Config.php" hash="27f77c56c64cefa4b7ccfb3df1b877b5"/><file name="Flat.php" hash="1bafdae148495a356031343f83bed390"/><file name="Observer.php" hash="ee9816e35c1430917c23b4bcd18998d2"/><dir name="Payment"><file name="Processor.php" hash="18f56c72f9b897f40e97bae83e440d1f"/></dir><file name="Post.php" hash="95028daf7aa8cdbf20d046c3e3e9db8f"/><dir name="Source"><dir name="Label"><file name="Position.php" hash="d3c89fbc76ab10ab8daa86800fe19083"/></dir><file name="Service.php" hash="504b474a715c21d943b61b7eaddac974"/></dir></dir><dir name="etc"><file name="config.xml" hash="f85745f249a1ac082b5b44c11184e9d7"/><file name="system.xml" hash="f159733074600175fe21a3245fa06328"/></dir><dir name="sql"><dir name="eabi_dpdee_setup"><file name="mysql4-install-0.1.0.php" hash="d87dbd3080d98c183956319f20110433"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="56765009037b3699a7c871f14704a00c"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="411745561f0ddec025db8a48cb2abd26"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="6ad16e795c12646cd77242434c43cab0"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="dfbd21903d6e85592c994ec5dee5e374"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="a852db2e91ae253593d499a230e08013"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="456f749bc3e49363561153b3e0e57d96"/></dir></dir></dir><dir name="Postoffice"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><dir name="Form"><dir name="Field"><file name="License.php" hash="2f5750200eb5e1ba7fd5ba10f82b8a18"/><file name="Remove.php" hash="f94c1e6fb2ca0d054fb5c87dc98b289c"/></dir></dir></dir></dir><dir name="Config"><file name="Rebuildbutton.php" hash="b9139075530956f874b72d1592c95890"/></dir></dir><dir name="Helper"><file name="Countrycode.php" hash="fa1aeb2e43d3108da722c677ea4b8d13"/><file name="Data.php" hash="76aa3727765746553c4e5c3d77e09b43"/><file name="Xml.php" hash="1fcb9b0adbf74b5fd19a22e9df2b867f"/></dir><dir name="Model"><dir name="Carrier"><file name="Abstract.php" hash="c3c66b86b34bd162922d4ff625e9e0e4"/><file name="Result.php" hash="77e183bf5f9b31b9ae9c4c12182b0f43"/></dir><file name="Carriermodule.php" hash="4d4a5b6b72d102e26136b49eafb07d9d"/><dir name="Email"><dir name="Template"><file name="Mailer.php" hash="ad050d051f143033273328c6c6d365cb"/></dir></dir><dir name="Licenceable"><dir name="Autosend"><file name="Method.php" hash="f06c99a1a4311de474cd63afed947220"/></dir><file name="Method.php" hash="f054356db17488890b3275cc9608ef39"/><dir name="Payment"><file name="Method.php" hash="18fe727f3ac4db9ccfa93486115432ba"/></dir><dir name="Shipping"><file name="Method.php" hash="b34ba5c1bee4c3c818514c125f9ee882"/></dir></dir><dir name="Mysql4"><dir name="Carriermodule"><file name="Collection.php" hash="7079738f5fe7591b98aa93a8d9f02dab"/></dir><file name="Carriermodule.php" hash="e7074af5aa20080065cf5ee44a4e8708"/><dir name="Office"><file name="Collection.php" hash="7941e291c5fa7e613d3ecdf785e1d98f"/></dir><file name="Office.php" hash="55ac0e86fe5b89cfaeca3250872d977a"/></dir><file name="Observer.php" hash="13140483e2d7dcfd3a808ef1441bdf9e"/><file name="Office.php" hash="13926ff31c40ca796a15d1e2369559d7"/><file name="Orderview.php" hash="2f67fd0efa38f508fb7a438c98ec4517"/><dir name="Source"><file name="Sendevent.php" hash="a62dda6f3551e1ae961fc3bb4a91fa11"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Country.php" hash="cd46d97cad9d45a0eaf86a193ebe142c"/></dir></dir></dir><file name="Updater.php" hash="81815b31d062313bf5a0c46657b4d80e"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Eabi"><dir name="Postoffice"><file name="PostofficeController.php" hash="a51d4f075e8d9a606871946dc5cb53ed"/></dir></dir><file name="PostofficeController.php" hash="72a194bbe8bc3bc0685be1f8101f4d13"/></dir><file name="IndexController.php" hash="674711f386853981403317113f6fe128"/></dir><dir name="etc"><file name="config.xml" hash="8274c81653026bac333ae28e5d690f16"/></dir><dir name="sql"><dir name="eabi_postoffice_setup"><file name="mysql4-install-0.1.0.php" hash="6c25a503d5bc3bef7fdecf12123f7b57"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="00be7881382e9e904cb2bc2cedc89818"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="a9cf1ab713568971161e0caeb0ad19dc"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="40014409962d19234b62913c63b2252f"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="2330590d882eda1bb14dfa0982af096c"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="08580cbaa3ead11e28388998acbec5d8"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="eabi_dpdee.xml" hash="85311cb850eb13eadaed47cdc9c44fb3"/><file name="eabi_postoffice.xml" hash="3248575e76fe484b1e13ee20b11d7b49"/></dir><dir name="template"><dir name="eabi_dpdee"><dir name="order"><file name="courier.phtml" hash="0310f24e96ca3873e78e0e2a0ab26743"/></dir><file name="payment_info.phtml" hash="3f8a01e4bcd2efab555d729bee8335da"/></dir><dir name="eabi_postoffice"><file name="shipping_method_form.phtml" hash="2b74940d708277d75ac29917f52055a4"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="eabi_dpdee.xml" hash="27179eee219a0a8c85b87b8d670ae9e1"/><file name="eabi_postoffice.xml" hash="1b5b7e81226f5a8fdefc19ef618f38f5"/></dir><dir name="template"><dir name="eabi_dpdee"><file name="payment_info.phtml" hash="3f8a01e4bcd2efab555d729bee8335da"/></dir><dir name="eabi_postoffice"><file name="available.phtml" hash="1fbacedeb29b7b7a6fd372919ca080a4"/><file name="multishipping.phtml" hash="b18864cf6636826fd9b9ef11cd35657f"/><file name="shipping.phtml" hash="b0edc38cd43bdcfede1f4cf5348c9dd6"/><dir name="tracking"><file name="popup.phtml" hash="bdfccfd7127864575a27587a95e3930c"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eabi_Postoffice.xml" hash="b414305ae41207d4bac8b02b4e9475b3"/><file name="Eabi_DpdEE.xml" hash="d0413726d99360007e2519b090321f0a"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Eabi_DpdEE.csv" hash="d53a6b36efac9db3dfad081f31712b40"/><file name="Eabi_Postoffice.csv" hash="651b14b0e55dbeeb55de579a1a993eab"/></dir><dir name="et_EE"><file name="Eabi_DpdEE.csv" hash="0a64d6699de9f680874acbc9869d4837"/><file name="Eabi_Postoffice.csv" hash="ea423904bbab2d44e6b68a537576c567"/></dir><dir name="ru_RU"><file name="Eabi_DpdEE.csv" hash="a208ad8515648b555ca13c9209c4f833"/><file name="Eabi_Postoffice.csv" hash="651b14b0e55dbeeb55de579a1a993eab"/></dir><dir name="hu_HU"><file name="Eabi_Postoffice.csv" hash="651b14b0e55dbeeb55de579a1a993eab"/></dir><dir name="fi_FI"><file name="Eabi_Postoffice.csv" hash="651b14b0e55dbeeb55de579a1a993eab"/></dir><dir name="lt_LT"><file name="Eabi_Postoffice.csv" hash="651b14b0e55dbeeb55de579a1a993eab"/></dir><dir name="sv_SE"><file name="Eabi_Postoffice.csv" hash="bbad7cd0c48e9482913265b2f0f0cef9"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="eabi_dpdee.css" hash="dcffac29e30c23248afd296ba6eba357"/><file name="eabi_postoffice.css" hash="1baea3a2164029da5adcb67df9ae42da"/></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="eabi_postoffice.css" hash="df0bc2bfd582fc01eb23ffe23fe56e90"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="css"><file name="eabi_postoffice.css" hash="df0bc2bfd582fc01eb23ffe23fe56e90"/></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="eabi_js"><file name="eabi_dpdee.js" hash="bced7e30c8c108c77b773e8c921b7d12"/></dir></dir></target></contents>
27
  <compatible/>
28
+ <dependencies><required><php><min>5.2.0</min><max>7.1.0</max></php><package><name>Eabi_Livehandler</name><channel>community</channel><min>0.1.15</min><max>1.0.0</max></package></required></dependencies>
29
  </package>