Version Notes
* Improved compatibility with Eabi_Cod module
Download this release
Release Info
Developer | Magento Core Team |
Extension | Eabi_DpdEE |
Version | 0.1.6 |
Comparing to | |
See all releases |
Code changes from version 0.1.5 to 0.1.6
- app/code/community/Eabi/DpdEE/etc/config.xml +1 -1
- app/code/community/Eabi/Postoffice/Model/Carrier/Abstract.php +47 -1
- app/code/community/Eabi/Postoffice/controllers/IndexController.php +1 -0
- app/code/community/Eabi/Postoffice/etc/config.xml +1 -1
- app/etc/modules/Eabi_DpdEE.xml +1 -1
- app/etc/modules/Eabi_Postoffice.xml +1 -1
- package.xml +8 -10
app/code/community/Eabi/DpdEE/etc/config.xml
CHANGED
@@ -36,7 +36,7 @@
|
|
36 |
<config>
|
37 |
<modules>
|
38 |
<Eabi_DpdEE>
|
39 |
-
<version>0.1.
|
40 |
</Eabi_DpdEE>
|
41 |
</modules>
|
42 |
|
36 |
<config>
|
37 |
<modules>
|
38 |
<Eabi_DpdEE>
|
39 |
+
<version>0.1.6</version>
|
40 |
</Eabi_DpdEE>
|
41 |
</modules>
|
42 |
|
app/code/community/Eabi/Postoffice/Model/Carrier/Abstract.php
CHANGED
@@ -58,6 +58,14 @@ abstract class Eabi_Postoffice_Model_Carrier_Abstract extends Mage_Shipping_Mode
|
|
58 |
*/
|
59 |
protected $_track_iframe = false;
|
60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
|
62 |
/**
|
63 |
* <p>This method should be implemented in subclasses of this carrier.</p>
|
@@ -364,7 +372,20 @@ abstract class Eabi_Postoffice_Model_Carrier_Abstract extends Mage_Shipping_Mode
|
|
364 |
$method->setCarrierTitle($this->getConfigData('title'));
|
365 |
|
366 |
$method->setMethod($this->_code);
|
367 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
368 |
$method->setPrice($price);
|
369 |
$loadingText = Mage::helper('eabi_postoffice')->__('Loading offices...');
|
370 |
$html = '';
|
@@ -1011,6 +1032,31 @@ EOT;
|
|
1011 |
return Mage::helper('eabi_postoffice/countrycode');
|
1012 |
}
|
1013 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1014 |
|
1015 |
}
|
1016 |
|
58 |
*/
|
59 |
protected $_track_iframe = false;
|
60 |
|
61 |
+
/**
|
62 |
+
*
|
63 |
+
* @var Mage_Sales_Model_Quote
|
64 |
+
*/
|
65 |
+
protected $_quote = false;
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
|
70 |
/**
|
71 |
* <p>This method should be implemented in subclasses of this carrier.</p>
|
372 |
$method->setCarrierTitle($this->getConfigData('title'));
|
373 |
|
374 |
$method->setMethod($this->_code);
|
375 |
+
|
376 |
+
//if COD is enabled, then add COD fee on top of the shipping price
|
377 |
+
if ($this->_getQuote()
|
378 |
+
&& !$this->_getQuote()->isVirtual()
|
379 |
+
&& $this->getConfigData('enable_cod')
|
380 |
+
&& $this->_getQuote()->getPayment()
|
381 |
+
&& $this->_getQuote()->getPayment()->getMethod()
|
382 |
+
&& $this->_getQuote()->getPayment()->getMethod() == 'eabicodpayment'
|
383 |
+
&& strpos($this->_getQuote()->getShippingAddress()->getShippingMethod(), $this->getCarrierCode()) === 0) {
|
384 |
+
|
385 |
+
$price += $this->getConfigData('cod_fee');
|
386 |
+
|
387 |
+
}
|
388 |
+
|
389 |
$method->setPrice($price);
|
390 |
$loadingText = Mage::helper('eabi_postoffice')->__('Loading offices...');
|
391 |
$html = '';
|
1032 |
return Mage::helper('eabi_postoffice/countrycode');
|
1033 |
}
|
1034 |
|
1035 |
+
/**
|
1036 |
+
* Return checkout session object
|
1037 |
+
*
|
1038 |
+
* @return Mage_Checkout_Model_Session
|
1039 |
+
*/
|
1040 |
+
protected function _getCheckoutSession() {
|
1041 |
+
if (Mage::app()->getStore()->isAdmin()) {
|
1042 |
+
return Mage::getSingleton('adminhtml/session_quote');
|
1043 |
+
}
|
1044 |
+
return Mage::getSingleton('checkout/session');
|
1045 |
+
}
|
1046 |
+
|
1047 |
+
/**
|
1048 |
+
* Return checkout quote object
|
1049 |
+
*
|
1050 |
+
* @return Mage_Sales_Model_Quote
|
1051 |
+
*/
|
1052 |
+
protected function _getQuote() {
|
1053 |
+
if (!$this->_quote) {
|
1054 |
+
$this->_quote = $this->_getCheckoutSession()->getQuote();
|
1055 |
+
}
|
1056 |
+
return $this->_quote;
|
1057 |
+
}
|
1058 |
+
|
1059 |
+
|
1060 |
|
1061 |
}
|
1062 |
|
app/code/community/Eabi/Postoffice/controllers/IndexController.php
CHANGED
@@ -94,6 +94,7 @@ class Eabi_Postoffice_IndexController extends Mage_Core_Controller_Front_Action
|
|
94 |
$html .= '<option value="">';
|
95 |
$html .= htmlspecialchars(Mage::helper('eabi_postoffice')->__('-- select --'));
|
96 |
$html .= '</option>';
|
|
|
97 |
|
98 |
foreach ($groups as $group) {
|
99 |
$html .= '<option value="' . $group->getGroupId() . '"';
|
94 |
$html .= '<option value="">';
|
95 |
$html .= htmlspecialchars(Mage::helper('eabi_postoffice')->__('-- select --'));
|
96 |
$html .= '</option>';
|
97 |
+
|
98 |
|
99 |
foreach ($groups as $group) {
|
100 |
$html .= '<option value="' . $group->getGroupId() . '"';
|
app/code/community/Eabi/Postoffice/etc/config.xml
CHANGED
@@ -36,7 +36,7 @@
|
|
36 |
<config>
|
37 |
<modules>
|
38 |
<Eabi_Postoffice>
|
39 |
-
<version>0.1.
|
40 |
</Eabi_Postoffice>
|
41 |
</modules>
|
42 |
|
36 |
<config>
|
37 |
<modules>
|
38 |
<Eabi_Postoffice>
|
39 |
+
<version>0.1.3</version>
|
40 |
</Eabi_Postoffice>
|
41 |
</modules>
|
42 |
|
app/etc/modules/Eabi_DpdEE.xml
CHANGED
@@ -39,7 +39,7 @@
|
|
39 |
<depends>
|
40 |
<Eabi_Postoffice />
|
41 |
</depends>
|
42 |
-
<version>0.1.
|
43 |
</Eabi_DpdEE>
|
44 |
</modules>
|
45 |
</config>
|
39 |
<depends>
|
40 |
<Eabi_Postoffice />
|
41 |
</depends>
|
42 |
+
<version>0.1.6</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.
|
46 |
</Eabi_Postoffice>
|
47 |
</modules>
|
48 |
</config>
|
42 |
<Mage_Shipping />
|
43 |
<Eabi_Livehandler />
|
44 |
</depends>
|
45 |
+
<version>0.1.3</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.
|
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>
|
@@ -15,14 +15,12 @@
|
|
15 |
<p>Refreshes list of parcel terminal automatically</p>
|
16 |
<p>Allows to create and print DPD packing slips</p>
|
17 |
<p>Allows to call the courier from Magento admin</p>
|
18 |
-
<p>Intended to use for Estonian merchant who sends parcels to all Baltic states</p>
|
19 |
-
</
|
20 |
-
<
|
21 |
-
|
22 |
-
<
|
23 |
-
<
|
24 |
-
<time>20:53:43</time>
|
25 |
-
<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="248931633c577c16670d8c055f83bc07"/></dir></dir></dir></dir><dir name="Order"><file name="Courier.php" hash="d719026b8baa83a61410d7c3d3a7b2b8"/></dir></dir><file name="CHANGELOG.txt" hash="c1462eeb9d109135e8d451c7341c4e3b"/><dir name="Helper"><file name="Data.php" hash="2b01e482067b51d29cd539b19ed91422"/></dir><file name="LICENCE.txt" hash="0191312e121c0b3e1165619b96efcf9f"/><dir name="Model"><dir name="Action"><dir name="Carrier"><dir name="Order"><file name="Courier.php" hash="4320003600c3711269ceb793c79f1a0e"/></dir></dir></dir><file name="Api.php" hash="769e780f959008fcf0e3e42eaefd9ded"/><dir name="Button"><file name="Courier.php" hash="dcf458fc84b12e9656d9e5b9d607786e"/></dir><file name="Config.php" hash="6d1767803078b10fff7fca5c9a8fce73"/><file name="Flat.php" hash="3411b2d21a3bcec64aef52c3bf55425c"/><file name="Observer.php" hash="0cd4bff03583da0ac8f2acc7408ab7fe"/><file name="Post.php" hash="22f5532294dc87849c7930fd80437c2a"/><dir name="Source"><dir name="Label"><file name="Position.php" hash="7f95f8570328962b88a36d51b6f3e542"/></dir><file name="Service.php" hash="0d7ec71a6322c4b993d0335f76cc9ee4"/></dir></dir><dir name="etc"><file name="config.xml" hash="5906be5cb2c7f76b82543d64ab7e2898"/><file name="system.xml" hash="e9fbade4b810a0ade868685c146f28a0"/></dir><dir name="sql"><dir name="eabi_dpdee_setup"><file name="mysql4-install-0.1.0.php" hash="82be7ae5961aa797bf5944da67bf5155"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="9d6d7a5eaf6fe21b383bd1d010a70fb0"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="3ac820366b298aa7f124aac777ed20da"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="dcd90c42f16e8dca6ea567f196256796"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="1018891e649edaac75704ccc454c5d0f"/></dir></dir></dir><dir name="Postoffice"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Remove.php" hash="36582578ccfc5348053f6fd5876d95df"/></dir></dir></dir></dir><dir name="Config"><file name="Rebuildbutton.php" hash="5df4fd9f74bdd664d43b5e9debf95260"/></dir></dir><dir name="Helper"><file name="Countrycode.php" hash="b2f6e253d3351edff9b551eb6d86dce8"/><file name="Data.php" hash="52e2798a55bc60a2956251a5fe37bb06"/></dir><dir name="Model"><dir name="Carrier"><file name="Abstract.php" hash="64afe3c0fe9d687cace03689e798605f"/><file name="Result.php" hash="fbb58545e0dea7ce6b277c2d27405e17"/></dir><file name="Carriermodule.php" hash="97bcd9821511a55697247514c8dc280f"/><dir name="Mysql4"><dir name="Carriermodule"><file name="Collection.php" hash="b125174c7a7532b27cb7736eecd984aa"/></dir><file name="Carriermodule.php" hash="4033f81a6ed9d15439e022525825c550"/><dir name="Office"><file name="Collection.php" hash="08b82e1b2067da8c6f62f026bd0f289c"/></dir><file name="Office.php" hash="11295e3d59cb440ece5a31c59793579a"/></dir><file name="Office.php" hash="e119cd9055075ddb68aa90e9413868e8"/><file name="Orderview.php" hash="a4a36ada9222c03863eb1b0415ecd681"/><dir name="Source"><file name="Sendevent.php" hash="e2a1a255ebe31f4a737df76b83cc0612"/></dir><file name="Updater.php" hash="a96e1e6fcba4302f0f108f22a2416767"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="PostofficeController.php" hash="b2c5e190e3ab7224c0e7e3bb192f65ab"/></dir><file name="IndexController.php" hash="0a1b21c56ac5ced18f7308cb1b7b2779"/></dir><dir name="etc"><file name="config.xml" hash="996174238756263f6e6fbe6de9778907"/></dir><dir name="sql"><dir name="eabi_postoffice_setup"><file name="mysql4-install-0.1.0.php" hash="8834196075d52491ab67e141dd89466d"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="21443cd02970fa62a90a83348623edf2"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="04dc9a59623a21354d31b67533f8c081"/></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="f549aec3cab6d7f4be38ad16c9878ad0"/></dir><dir name="template"><dir name="eabi_dpdee"><dir name="order"><file name="courier.phtml" hash="0310f24e96ca3873e78e0e2a0ab26743"/></dir></dir><dir name="eabi_postoffice"><file name="shipping_method_form.phtml" hash="e932b7215c23ec7457a7dbca1e757209"/></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="2324cf0537e7128907f1e82952d2428b"/></dir><dir name="template"><dir name="eabi_postoffice"><file name="available.phtml" hash="c6e12f338e2c328fd39ef4d28f76c4cd"/><file name="multishipping.phtml" hash="1d3b1ec07fb7253204bc6d404e0c297a"/><file name="shipping.phtml" hash="0ffb21b42357907addc225021ff90b87"/><dir name="tracking"><file name="popup.phtml" hash="9141744241fc4add47ed20b91405fa8e"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eabi_Postoffice.xml" hash="5985cb591c22d86ba55575ef55fc5d73"/><file name="Eabi_DpdEE.xml" hash="579869b5e97549b10cb060987a96910a"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Eabi_DpdEE.csv" hash="73f89704ae83dcd6c30b8feadeaf77b1"/><file name="Eabi_Postoffice.csv" hash="efd07c7191b6787abe38bf13ee199714"/></dir><dir name="et_EE"><file name="Eabi_DpdEE.csv" hash="8a4cedf5cf88f9b0a904293ff4900a6b"/><file name="Eabi_Postoffice.csv" hash="c70858d1325cb13428695e71582cd598"/></dir><dir name="ru_RU"><file name="Eabi_DpdEE.csv" hash="a4680d315a6b14009ffaac8f6756bb2a"/><file name="Eabi_Postoffice.csv" hash="efd07c7191b6787abe38bf13ee199714"/></dir><dir name="hu_HU"><file name="Eabi_Postoffice.csv" hash="efd07c7191b6787abe38bf13ee199714"/></dir><dir name="fi_FI"><file name="Eabi_Postoffice.csv" hash="efd07c7191b6787abe38bf13ee199714"/></dir><dir name="lt_LT"><file name="Eabi_Postoffice.csv" hash="efd07c7191b6787abe38bf13ee199714"/></dir><dir name="sv_SE"><file name="Eabi_Postoffice.csv" hash="fc105fd30ae95f5502e784aca5d8017d"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="eabi_dpdee.css" hash="9cfe785b8d341c290c1b6b084cc9e770"/></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="eabi_js"><file name="eabi_dpdee.js" hash="05db7b35460896b54fc4a6fe4791205e"/></dir></dir></target></contents>
|
26 |
<compatible/>
|
27 |
-
<dependencies><required><
|
28 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Eabi_DpdEE</name>
|
4 |
+
<version>0.1.6</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>
|
15 |
<p>Refreshes list of parcel terminal automatically</p>
|
16 |
<p>Allows to create and print DPD packing slips</p>
|
17 |
<p>Allows to call the courier from Magento admin</p>
|
18 |
+
<p>Intended to use for Estonian merchant who sends parcels to all Baltic states</p></description>
|
19 |
+
<notes>* Improved compatibility with Eabi_Cod module</notes>
|
20 |
+
<authors><author><name>Matis Matis</name><user>auto-converted</user><email>info@e-abi.ee</email></author></authors>
|
21 |
+
<date>2014-04-04</date>
|
22 |
+
<time>21:14:39</time>
|
23 |
+
<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="248931633c577c16670d8c055f83bc07"/></dir></dir></dir></dir><dir name="Order"><file name="Courier.php" hash="d719026b8baa83a61410d7c3d3a7b2b8"/></dir></dir><dir name="Helper"><file name="Data.php" hash="2b01e482067b51d29cd539b19ed91422"/></dir><dir name="Model"><dir name="Action"><dir name="Carrier"><dir name="Order"><file name="Courier.php" hash="4320003600c3711269ceb793c79f1a0e"/></dir></dir></dir><dir name="Button"><file name="Courier.php" hash="dcf458fc84b12e9656d9e5b9d607786e"/></dir><dir name="Source"><dir name="Label"><file name="Position.php" hash="7f95f8570328962b88a36d51b6f3e542"/></dir><file name="Service.php" hash="0d7ec71a6322c4b993d0335f76cc9ee4"/></dir><file name="Api.php" hash="769e780f959008fcf0e3e42eaefd9ded"/><file name="Config.php" hash="6d1767803078b10fff7fca5c9a8fce73"/><file name="Flat.php" hash="3411b2d21a3bcec64aef52c3bf55425c"/><file name="Observer.php" hash="0cd4bff03583da0ac8f2acc7408ab7fe"/><file name="Post.php" hash="22f5532294dc87849c7930fd80437c2a"/></dir><dir name="etc"><file name="config.xml" hash="d49d604f3f16212455a349f19e9014d2"/><file name="system.xml" hash="e9fbade4b810a0ade868685c146f28a0"/></dir><dir name="sql"><dir name="eabi_dpdee_setup"><file name="mysql4-install-0.1.0.php" hash="82be7ae5961aa797bf5944da67bf5155"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="9d6d7a5eaf6fe21b383bd1d010a70fb0"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="3ac820366b298aa7f124aac777ed20da"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="dcd90c42f16e8dca6ea567f196256796"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="1018891e649edaac75704ccc454c5d0f"/></dir></dir><file name="CHANGELOG.txt" hash="c1462eeb9d109135e8d451c7341c4e3b"/><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="Remove.php" hash="36582578ccfc5348053f6fd5876d95df"/></dir></dir></dir></dir><dir name="Config"><file name="Rebuildbutton.php" hash="5df4fd9f74bdd664d43b5e9debf95260"/></dir></dir><dir name="Helper"><file name="Countrycode.php" hash="b2f6e253d3351edff9b551eb6d86dce8"/><file name="Data.php" hash="52e2798a55bc60a2956251a5fe37bb06"/></dir><dir name="Model"><dir name="Carrier"><file name="Abstract.php" hash="8e5198059deb0b76e611f7abe7874f92"/><file name="Result.php" hash="fbb58545e0dea7ce6b277c2d27405e17"/></dir><dir name="Mysql4"><dir name="Carriermodule"><file name="Collection.php" hash="b125174c7a7532b27cb7736eecd984aa"/></dir><dir name="Office"><file name="Collection.php" hash="08b82e1b2067da8c6f62f026bd0f289c"/></dir><file name="Carriermodule.php" hash="4033f81a6ed9d15439e022525825c550"/><file name="Office.php" hash="11295e3d59cb440ece5a31c59793579a"/></dir><dir name="Source"><file name="Sendevent.php" hash="e2a1a255ebe31f4a737df76b83cc0612"/></dir><file name="Carriermodule.php" hash="97bcd9821511a55697247514c8dc280f"/><file name="Office.php" hash="e119cd9055075ddb68aa90e9413868e8"/><file name="Orderview.php" hash="a4a36ada9222c03863eb1b0415ecd681"/><file name="Updater.php" hash="a96e1e6fcba4302f0f108f22a2416767"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="PostofficeController.php" hash="b2c5e190e3ab7224c0e7e3bb192f65ab"/></dir><file name="IndexController.php" hash="54ff0866fa0ab9368d2402b919ff7bc5"/></dir><dir name="etc"><file name="config.xml" hash="d806d19136831a898c9477b01bdc13c5"/></dir><dir name="sql"><dir name="eabi_postoffice_setup"><file name="mysql4-install-0.1.0.php" hash="8834196075d52491ab67e141dd89466d"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="21443cd02970fa62a90a83348623edf2"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="04dc9a59623a21354d31b67533f8c081"/></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="f549aec3cab6d7f4be38ad16c9878ad0"/></dir><dir name="template"><dir name="eabi_dpdee"><dir name="order"><file name="courier.phtml" hash="0310f24e96ca3873e78e0e2a0ab26743"/></dir></dir><dir name="eabi_postoffice"><file name="shipping_method_form.phtml" hash="e932b7215c23ec7457a7dbca1e757209"/></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="2324cf0537e7128907f1e82952d2428b"/></dir><dir name="template"><dir name="eabi_postoffice"><dir name="tracking"><file name="popup.phtml" hash="9141744241fc4add47ed20b91405fa8e"/></dir><file name="available.phtml" hash="c6e12f338e2c328fd39ef4d28f76c4cd"/><file name="multishipping.phtml" hash="1d3b1ec07fb7253204bc6d404e0c297a"/><file name="shipping.phtml" hash="0ffb21b42357907addc225021ff90b87"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eabi_Postoffice.xml" hash="f06b76976dd45fec7a9eaa946661b64e"/><file name="Eabi_DpdEE.xml" hash="2766f6e1b953937e902562caeffce2e8"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Eabi_DpdEE.csv" hash="73f89704ae83dcd6c30b8feadeaf77b1"/><file name="Eabi_Postoffice.csv" hash="efd07c7191b6787abe38bf13ee199714"/></dir><dir name="et_EE"><file name="Eabi_DpdEE.csv" hash="8a4cedf5cf88f9b0a904293ff4900a6b"/><file name="Eabi_Postoffice.csv" hash="c70858d1325cb13428695e71582cd598"/></dir><dir name="ru_RU"><file name="Eabi_DpdEE.csv" hash="a4680d315a6b14009ffaac8f6756bb2a"/><file name="Eabi_Postoffice.csv" hash="efd07c7191b6787abe38bf13ee199714"/></dir><dir name="hu_HU"><file name="Eabi_Postoffice.csv" hash="efd07c7191b6787abe38bf13ee199714"/></dir><dir name="fi_FI"><file name="Eabi_Postoffice.csv" hash="efd07c7191b6787abe38bf13ee199714"/></dir><dir name="lt_LT"><file name="Eabi_Postoffice.csv" hash="efd07c7191b6787abe38bf13ee199714"/></dir><dir name="sv_SE"><file name="Eabi_Postoffice.csv" hash="fc105fd30ae95f5502e784aca5d8017d"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="eabi_dpdee.css" hash="9cfe785b8d341c290c1b6b084cc9e770"/></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="eabi_js"><file name="eabi_dpdee.js" hash="05db7b35460896b54fc4a6fe4791205e"/></dir></dir></target></contents>
|
|
|
|
|
24 |
<compatible/>
|
25 |
+
<dependencies><required><package><name>Eabi_Livehandler</name><channel>community</channel><min>0.1.5</min><max>1.0.0</max></package></required></dependencies>
|
26 |
</package>
|