zitec_dpd - Version 1.0.5

Version Notes

Fixed issues on printing shipping labels (multiple parcels) and manifest document (multiple shipments on same manifest).

Download this release

Release Info

Developer Zitec
Extension zitec_dpd
Version 1.0.5
Comparing to
See all releases


Code changes from version 1.0.4 to 1.0.5

app/code/community/Zitec/Dpd/Model/Dpd/Manifest.php CHANGED
@@ -53,7 +53,7 @@ class Zitec_Dpd_Model_Dpd_Manifest extends Mage_Core_Model_Abstract
53
  }
54
 
55
  if (!$shipmentIds || !is_array($shipmentIds)) {
56
- $message = $this->_getHelper()->__("Please the shipments to include in the closed manifest.");
57
  $this->_addNotification($message);
58
 
59
  return false;
53
  }
54
 
55
  if (!$shipmentIds || !is_array($shipmentIds)) {
56
+ $message = $this->_getHelper()->__("Please select the shipments to include in the closed manifest.");
57
  $this->_addNotification($message);
58
 
59
  return false;
lib/Zitec/Dpd/Api/Manifest/Close.php CHANGED
@@ -102,15 +102,31 @@ class Zitec_Dpd_Api_Manifest_Close extends Zitec_Dpd_Api_Manifest
102
  */
103
  public function addShipment($dpdShipmentId, $dpdShipmentReferenceNumber)
104
  {
105
- return $this->_setData(
106
- array(
107
- self::MANIFEST,
108
- self::SHIPMENT_REFERENCE_LIST),
109
- array(
110
- self::SHIPMENT_REFERENCE_ID => $dpdShipmentId,
111
- self::SHIPMENT_REFERENCE_NUMBER => $dpdShipmentReferenceNumber
112
- )
113
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  }
115
 
116
  /**
102
  */
103
  public function addShipment($dpdShipmentId, $dpdShipmentReferenceNumber)
104
  {
105
+ $shipments = $this->_getData(array(self::MANIFEST,self::SHIPMENT_REFERENCE_LIST));
106
+ if(empty($shipments)){
107
+ return $this->_setData(
108
+ array(
109
+ self::MANIFEST,
110
+ self::SHIPMENT_REFERENCE_LIST),
111
+ array(
112
+ array(
113
+ self::SHIPMENT_REFERENCE_ID => $dpdShipmentId,
114
+ self::SHIPMENT_REFERENCE_NUMBER => $dpdShipmentReferenceNumber
115
+ )
116
+ )
117
+ );
118
+ } else {
119
+ return $this->_setData(
120
+ array(
121
+ self::MANIFEST,
122
+ self::SHIPMENT_REFERENCE_LIST),
123
+ array(
124
+ self::SHIPMENT_REFERENCE_ID => $dpdShipmentId,
125
+ self::SHIPMENT_REFERENCE_NUMBER => $dpdShipmentReferenceNumber
126
+ )
127
+ );
128
+ }
129
+
130
  }
131
 
132
  /**
lib/Zitec/Dpd/Api/Shipment/Save.php CHANGED
@@ -16,7 +16,6 @@ class Zitec_Dpd_Api_Shipment_Save extends Zitec_Dpd_Api_Shipment
16
  {
17
 
18
 
19
-
20
  /**
21
  *
22
  * @return string
@@ -27,7 +26,6 @@ class Zitec_Dpd_Api_Shipment_Save extends Zitec_Dpd_Api_Shipment
27
  }
28
 
29
 
30
-
31
  protected function _init()
32
  {
33
  parent::_init();
@@ -63,6 +61,7 @@ class Zitec_Dpd_Api_Shipment_Save extends Zitec_Dpd_Api_Shipment
63
  return $this->_getData(array(Zitec_Dpd_Api_Configs::SHIPMENT_LIST, $tag));
64
  }
65
 
 
66
  /**
67
  *
68
  * @param Mage_Sales_Model_Order_Address $shippingAddress
@@ -84,6 +83,7 @@ class Zitec_Dpd_Api_Shipment_Save extends Zitec_Dpd_Api_Shipment
84
  return $this;
85
  }
86
 
 
87
  /**
88
  *
89
  * @return string
@@ -167,7 +167,12 @@ class Zitec_Dpd_Api_Shipment_Save extends Zitec_Dpd_Api_Shipment
167
  Zitec_Dpd_Api_Configs::PARCELS_WEIGHT => $weight,
168
  Zitec_Dpd_Api_Configs::PARCELS_DESCRIPTION => $description
169
  );
170
- $this->_setData(array(Zitec_Dpd_Api_Configs::SHIPMENT_LIST, Zitec_Dpd_Api_Configs::PARCELS), $parcel);
 
 
 
 
 
171
 
172
  return $this;
173
  }
16
  {
17
 
18
 
 
19
  /**
20
  *
21
  * @return string
26
  }
27
 
28
 
 
29
  protected function _init()
30
  {
31
  parent::_init();
61
  return $this->_getData(array(Zitec_Dpd_Api_Configs::SHIPMENT_LIST, $tag));
62
  }
63
 
64
+
65
  /**
66
  *
67
  * @param Mage_Sales_Model_Order_Address $shippingAddress
83
  return $this;
84
  }
85
 
86
+
87
  /**
88
  *
89
  * @return string
167
  Zitec_Dpd_Api_Configs::PARCELS_WEIGHT => $weight,
168
  Zitec_Dpd_Api_Configs::PARCELS_DESCRIPTION => $description
169
  );
170
+ $parcels = $this->_getData(array(Zitec_Dpd_Api_Configs::SHIPMENT_LIST, Zitec_Dpd_Api_Configs::PARCELS));
171
+ if(empty($parcels)) {
172
+ $this->_setData(array(Zitec_Dpd_Api_Configs::SHIPMENT_LIST, Zitec_Dpd_Api_Configs::PARCELS), array($parcel));
173
+ } else {
174
+ $this->_setData(array(Zitec_Dpd_Api_Configs::SHIPMENT_LIST, Zitec_Dpd_Api_Configs::PARCELS), $parcel);
175
+ }
176
 
177
  return $this;
178
  }
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>zitec_dpd</name>
4
- <version>1.0.4</version>
5
  <stability>stable</stability>
6
  <license>Open Software License (OSL 3.0)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Shipping carrier</summary>
10
  <description>Shipping carrier</description>
11
- <notes>released first version</notes>
12
  <authors><author><name>Zitec</name><user>zitec</user><email>magento@zitec.ro</email></author></authors>
13
- <date>2014-12-18</date>
14
- <time>12:29:56</time>
15
- <contents><target name="mage"><dir name="app"><dir name="code"><dir name="community"><dir name="Zitec"><dir name="Dpd"><dir name="Block"><file name="Addresslength.php" hash="39762fc9a9731be549b4381be5338b47"/><dir name="Adminhtml"><dir name="Customer"><dir name="Edit"><dir name="Form"><file name="Addresslength.php" hash="aefcc37734f1374940cc74dc09cf4d21"/></dir></dir></dir><dir name="Order"><dir name="Totals"><dir name="Cashondeliverysurcharge"><file name="Newcreditmemo.php" hash="a2eb2ebcfc462a78fedc808563699a0e"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Address"><dir name="Form"><file name="Addresslength.php" hash="f604b84fb61a0c87618e7bc4b65b1e0a"/></dir></dir><dir name="Shipment"><dir name="View"><file name="Tracking.php" hash="93011704b4f14536f86752052fab4e82"/></dir><file name="View.php" hash="6d06fda1bc73fc3e6be22e3d0c87b681"/></dir></dir><dir name="Shipment"><dir name="Grid"><dir name="Renderer"><file name="Manifest.php" hash="ffb3919759049f52fd10e40ac983c7a9"/></dir></dir><file name="Grid.php" hash="702b22ebc9262f9f01b4bb44ec8281d9"/></dir></dir><dir name="Shipment"><dir name="Postcode"><file name="Autocompleter.php" hash="50c8f2984622830414fdf3284706071c"/></dir></dir><dir name="System"><dir name="Config"><dir name="Button"><file name="Export.php" hash="ae0682bba6f69142367d072b27a5ba72"/></dir></dir></dir><dir name="Tablerate"><file name="Grid.php" hash="eeca98b012c2a9f19f3c9ed2a913f1f5"/></dir></dir><dir name="Checkout"><dir name="Onepage"><file name="Addresslength.php" hash="bd91f75b58e4c6eea732c626297666c1"/></dir></dir><dir name="Customer"><dir name="Address"><dir name="Edit"><file name="Addresslength.php" hash="cd587bb9e369c441723e67354e440934"/></dir></dir></dir><dir name="Order"><dir name="Creditmemo"><dir name="Totals"><file name="Cashondeliverysurcharge.php" hash="ee13618864901718f2cb66021b3125cc"/></dir></dir><dir name="Invoice"><dir name="Totals"><file name="Cashondeliverysurcharge.php" hash="abd92cd6ede167fd5783f668a316b4ae"/></dir></dir><dir name="Totals"><file name="Cashondeliverysurchage.php" hash="29dfc49e7087a3ec40092c5263dbad42"/></dir></dir><dir name="Tax"><dir name="Checkout"><file name="Cashondeliverysurchage.php" hash="a90a99d9165aa72e496b2bc956bc4c7a"/></dir></dir></dir><dir name="Helper"><file name="Compatibility.php" hash="72bc4f507cd5ac283ae17d6f1abf15fd"/><file name="Data.php" hash="90a84ce4e8661ec498d22c0cfc43a4c2"/><file name="Layout.php" hash="8bf2cab6393992d76aeb5a9637dafa1e"/><file name="Payment.php" hash="8b7982b95bb64cbe959adfaee00d9d02"/><dir name="Postcode"><file name="Search.php" hash="aaee281fd3e119ea57ded8228b157f59"/></dir><file name="Ws.php" hash="b7f4d388f8d279caefa6e5da7926c86d"/></dir><dir name="Model"><dir name="Config"><dir name="Data"><file name="Abstract.php" hash="e267033b7f2a3b655b17f4d7a74d0266"/><file name="Mode.php" hash="1ed97045bb1797a4238ad7cd4e9eb483"/><file name="Tablerate.php" hash="9a3d40bdcd3bda6393d18db0f9384c45"/></dir><dir name="Source"><file name="Abstract.php" hash="ed051bc93bd33311ae7782883b5fa945"/><dir name="Order"><dir name="Status"><file name="Pendingpayment.php" hash="04e38a315cdf4609ba405cde60a2da90"/></dir></dir><file name="Service.php" hash="bc30480fd608ede36b8a09537996b637"/><file name="Wscountry.php" hash="02f190d48f374fd94328413d9b1e17bc"/></dir></dir><dir name="Dpd"><file name="Manifest.php" hash="00cb3a8f9cd53208c35fb40f77154ca3"/><file name="Pickup.php" hash="d938af5f78d59617e4538ece685550ee"/><file name="Ship.php" hash="46f3e35dce70199afa9ebd6ae78d7ac5"/></dir><dir name="Mysql4"><dir name="Carrier"><dir name="Tablerate"><file name="Collection.php" hash="092517462c5567a4fa1e2ac0ef080998"/></dir><file name="Tablerate.php" hash="2faff14c0f783c615377edad9547ccc5"/></dir><dir name="Dpd"><file name="Manifest.php" hash="d07ac0213de91dd38b9a1e7cd83413ad"/><file name="Pickup.php" hash="6ca78ea57e6b57afb5302539c3a4df26"/><dir name="Ship"><file name="Collection.php" hash="b169288d25e67596406afdf40eac1106"/></dir><file name="Ship.php" hash="7481567c8ca70b654d295554d70a50c6"/></dir></dir><dir name="Observer"><file name="Address.php" hash="ff032ab831b82b58188f0580595f18b1"/><file name="Manifest.php" hash="73d735fda07381b980ba77f80ea332ca"/><file name="Payment.php" hash="381212d37d8a29ff768aa8d0ac52283c"/><file name="Pickup.php" hash="ed71ab3f62a27f1568b1ac66b5ec874d"/><file name="Shipment.php" hash="0c50c84048161505e2617f24e436d4c4"/></dir><dir name="Payment"><dir name="Cashondelivery"><dir name="Source"><file name="AmountType.php" hash="48e7eab17ebf024ff1e5600f957baca2"/><file name="Codpaymenttype.php" hash="76eff3a655b71100c7b5cfa484cd513b"/><file name="Country.php" hash="737f7adb0b359cd8232531207a39988b"/><file name="Service.php" hash="30b912ea49f6d6b45d43ac5c83c97987"/></dir></dir><file name="Cashondelivery.php" hash="d68795a972da6f153eee4c581045548d"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Cashondeliverysurchage.php" hash="1d08005cb6cc6004714d0f1b1c1dcb81"/><file name="Tax.php" hash="b346032d19ce496a5600e1523902e00f"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Cashondeliverysurchage.php" hash="1cb45910b477a960aae6f2ac78536234"/><file name="Tax.php" hash="18db16b4d329549f3dbd5e218d69383e"/></dir></dir><dir name="Pdf"><dir name="Total"><file name="Cashondeliverysurchage.php" hash="609db82ba0eec2ed5b377250c5807763"/></dir></dir><dir name="Total"><file name="Cashondeliverysurchage.php" hash="331830b23f5a436a1ed337c53670abe5"/></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Cashondeliverysurchage.php" hash="42cf297c76f84b3274cf3ad1ec108752"/></dir></dir></dir></dir><dir name="Shipping"><dir name="Carrier"><file name="Abstract.php" hash="c302bf67b6bab2604f809c1d34466e90"/><file name="Dpd.php" hash="6cf7676cb492d25a3ecf1e2a8ac596c8"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ConfigController.php" hash="22e8192a6a74232a58dbac2d62c02040"/><file name="ShipmentController.php" hash="7f547143d9343f2362bb72fd4e9b4907"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="2e91d7ec64ab0e79b6957c7ae59b61da"/><file name="config.xml" hash="1d8bad77cb1578c11799b3fbdd7e6127"/><file name="system.xml" hash="6881c4b6456aec64c425eb2f62d9fb56"/></dir><dir name="sql"><dir name="zitec_dpd_setup"><file name="mysql4-install-1.0.0.php" hash="12c9bc90d96f152ecadd6657ee0aa3fb"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="3ddba5ce7c9208a217e93da57465e2e1"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="bb3ca3643bb0e00c4c9eedcebdec8224"/><file name="mysql4-upgrade-1.0.2-1.0.3.php" hash="61c2104c0a23e33f39947d105f84d6c5"/></dir></dir></dir><dir name="PackedShipment"><dir name="Block"><file name="Addressvalidationdialog.php" hash="1a84c9935769b11b02cd092cdb0ee939"/><file name="Addressvalidationinfojs.php" hash="7a44b1ed924b9982ba568a33233b0b44"/></dir><dir name="Helper"><file name="Data.php" hash="9acabdcd9307eabef14d39b9621732ee"/></dir><dir name="Model"><dir name="Carrier"><file name="Interface.php" hash="5a8798282fd3b46d4fcf3faea164a07c"/></dir><file name="Package.php" hash="a95aa718a567419fb8fde217503a9fb1"/><file name="PackedShipment.php" hash="81f9206250f202f32b8c61b205dff7cb"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="9ec29ccf9284e5ce9ce8f33e8fe96a1e"/></dir></dir><dir name="etc"><file name="config.xml" hash="84d4c3e23b42f9037c95a1e4f7e2c46e"/></dir></dir><dir name="PrintShippingLabel"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Shipment"><file name="View.php" hash="b2ad3e629cca881d3c9422769a13299d"/></dir></dir><file name="View.php" hash="047f3a6fbb40c456bdd45cf694bed646"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="b52db34915a8076a9a47d436d5056b5e"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="2e1cc661904fcb5636116b25536d4896"/></dir></dir><dir name="etc"><file name="config.xml" hash="03fbaee8207794837d8d83a1805cbd9e"/></dir></dir><dir name="ReportsCommon"><dir name="Block"><dir name="RecordsReport"><file name="Grid.php" hash="4fb353204389893d316c35a649ae912a"/></dir><dir name="Renderer"><file name="Posnegcurrency.php" hash="878f0ddd2f49369f7cf13d7bad8cf586"/></dir></dir><dir name="Controller"><dir name="Adminhtml"><file name="RecordsreportController.php" hash="0176b4324917a1624421024d38eeeb68"/></dir></dir><dir name="Helper"><file name="Data.php" hash="10000ad9e82971db275454a3c9da5be7"/></dir><dir name="etc"><file name="adminhtml.xml" hash="09ba77e3ad6442564200d0b9090cedc0"/><file name="config.xml" hash="0cc7d9b9b1bd8b505b9ed876881aaf8d"/></dir></dir><dir name="ShippingReports"><dir name="Block"><dir name="Adminhtml"><dir name="Profitability"><file name="Grid.php" hash="f74523581cecd1096a60697fc7f80bea"/><dir name="Renderer"><file name="Orderref.php" hash="ea1cba63238fbb7af0dcefce8c5afdb2"/></dir></dir><file name="Profitability.php" hash="01b2fea836dc33fcbe98c0b75c1a6648"/></dir></dir><dir name="Helper"><file name="Data.php" hash="921cf4f32590d5fe7d19ff5567bfd835"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Profitability"><file name="Collection.php" hash="14b3c8f72c7cf45038d511f8cae26da8"/></dir></dir><dir name="Observer"><file name="Order.php" hash="1071169c759c54fd404629b30f335c3f"/><file name="Shipment.php" hash="e273acffcd173ea4ac630c34851be3a7"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Reports"><file name="ProfitabilityController.php" hash="8acf998c2fe4eb4ea5792626f8de72cf"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="5613d1d94b5e8d3d7440ddafbc632295"/><file name="config.xml" hash="f643132f57193be994db68ee093feec4"/></dir><dir name="sql"><dir name="zitec_shippingreports_setup"><file name="mysql4-install-1.0.0.php" hash="9b2ed8ef76ac956652c5d9b51c76e77a"/></dir></dir></dir><dir name="TableRates"><dir name="Block"><dir name="Adminhtml"><dir name="Tablerate"><dir name="Edit"><file name="Form.php" hash="54c76b88bd4a901910aa312bfc39a2f6"/></dir><file name="Edit.php" hash="f357020cd8ef1b0492073356d8baaa7f"/><dir name="Export"><file name="Form.php" hash="1b62cf6a4629d100dac517f306c8f1de"/></dir><file name="Export.php" hash="54492ee70bafd01e0fe40f91eb475036"/><dir name="Grid"><dir name="Renderer"><file name="Shippingpercentage.php" hash="664af0f7a52458f993902a64f3b644fb"/></dir></dir><file name="Grid.php" hash="f12c2ede1b29e11552a34974aa1acf8b"/><dir name="Import"><file name="Form.php" hash="06a31beb404c1f040fcf1af0c24c8eaa"/></dir><file name="Import.php" hash="5aca3f68e792f780a9e405fed9e3ff65"/></dir><file name="Tablerate.php" hash="365a5bfb80381b24abb8724cf177f03d"/><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Region.php" hash="d985f45f4ac1e2f36506bdbc210cacc8"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="1c750bd96eba3f3d121edcb1a52909c0"/><file name="Directory.php" hash="648d9bf915114f72238f26d3a66fa154"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Tablerate"><file name="Collection.php" hash="378a406b778b6c74f0b9cdfe9d02cb99"/></dir><file name="Tablerate.php" hash="5f4ccaa59e5fc46200e0ed5e5e792ed5"/></dir><dir name="Source"><file name="Website.php" hash="12bf4a7fa074b6fb5511c2dd4f067d2b"/></dir><file name="Tablerate.php" hash="c84233d2b9092bad037862e59fcfe602"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="9e5a0aeaa1161f4e7117b9cc0fc74ac5"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="bd52608b5f67216625264fff33eafc17"/><file name="config.xml" hash="475378344fcc635e09465e8524f9b94c"/></dir></dir></dir></dir></dir><dir name="locale"><dir name="en_GB"><file name="Zitec_Dpd.csv" hash="aa0777ae151f37957dcd3a86d11d5df5"/><file name="Zitec_PackedShipment.csv" hash="72e7aac7bddfddb6c21d143bfa0dec58"/><file name="Zitec_PrintShippingLabel.csv" hash="846832569583f2c1a74388f4bc83b287"/><file name="Zitec_TableRates.csv" hash="bd169b0fd65db31233f0faa07918af50"/></dir><dir name="en_US"><file name="Zitec_Dpd.csv" hash="808c91448783d976fc8d18b42b84bbc6"/><file name="Zitec_PackedShipment.csv" hash="72e7aac7bddfddb6c21d143bfa0dec58"/><file name="Zitec_PrintShippingLabel.csv" hash="846832569583f2c1a74388f4bc83b287"/><file name="Zitec_TableRates.csv" hash="bd169b0fd65db31233f0faa07918af50"/></dir><dir name="es_ES"><file name="Zitec_Dpd.csv" hash="d56fd09f5dfc9557ce79fd37170deff5"/><file name="Zitec_PackedShipment.csv" hash="72e7aac7bddfddb6c21d143bfa0dec58"/><file name="Zitec_TableRates.csv" hash="be78a9306e67c5c2559793d3550dd5ca"/></dir><dir name="hr_HR"><file name="Zitec_Dpd.csv" hash="a1491577fa3343c8c63232dbbffe4661"/><file name="Zitec_PackedShipment.csv" hash="e36fd583af99214798684cca6863a2b3"/><file name="Zitec_PrintShippingLabel.csv" hash="45d0b799103c62c262f38ec3d9de095b"/><file name="Zitec_TableRates.csv" hash="76f5ad726fea76bb4d2dd6b24ec8382a"/></dir><dir name="ro_RO"><file name="Zitec_Dpd.csv" hash="5f13fdf5a9cc5b1fa16c14192993dc0a"/><file name="Zitec_PackedShipment.csv" hash="ca033a3fbfedd926b9c1050f7fe0f3cc"/><file name="Zitec_PrintShippingLabel.csv" hash="cb55e13b13648ffc37d263f7bfad2332"/><file name="Zitec_TableRates.csv" hash="e0482f06a71f91261de673bce650e4be"/></dir><dir name="sl_SI"><file name="Zitec_Dpd.csv" hash="07f07c9b53f38384d4e5e584305e453d"/><file name="Zitec_PackedShipment.csv" hash="3c516c83c4433fe0465d00e0a44b4664"/><file name="Zitec_PrintShippingLabel.csv" hash="90d1e4400c85c6812ce5f67e40c1c5b8"/><file name="Zitec_TableRates.csv" hash="865c70908456c4ce3dc081d6bfad2d51"/></dir></dir><dir name="etc"><dir name="modules"><file name="Zitec_Dpd.xml" hash="3e395a6eefe36a0a1e46b289a5e4b832"/><file name="Zitec_FieldLengths.xml" hash="b600e134ebc8b390570eaabe56b720a3"/><file name="Zitec_PackedShipment.xml" hash="743e1ca7768c3acdabab88773a3ee86f"/><file name="Zitec_PrintShippingLabel.xml" hash="95b03f5efd7ea99c175bb9eca6df2e7d"/><file name="Zitec_ReportsCommon.xml" hash="e3cda1b9894883579fafd34d216adbfd"/><file name="Zitec_ShippingReports.xml" hash="0a602be6d44ad1dd13061ec363d691d0"/><file name="Zitec_TableRates.xml" hash="b600e134ebc8b390570eaabe56b720a3"/></dir></dir><dir name="design"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="zitec_dpd.xml" hash="94a09fc9992d383fb9e6d8228281c707"/><file name="zitec_packedshipment.xml" hash="f9836074ea752d8ef475605ec304e8f7"/><file name="zitec_shippingreports.xml" hash="fc373498e88157f79893809d1f71543e"/><file name="zitec_tablerates.xml" hash="9af70d2911f0b1563da647ecd35ede5f"/></dir><dir name="template"><dir name="zitec_dpd"><dir name="sales"><dir name="order"><dir name="address"><dir name="postcode"><file name="alert-problem.phtml" hash="c3c8e1829047845faeacd80303bb8425"/><file name="validate.phtml" hash="b5b280cecdc1141dace72253f4f3431a"/></dir><dir name="street"><file name="alert-problem.phtml" hash="39fca696ab76d228a329d545372d03de"/></dir></dir><dir name="shipment"><dir name="postcode"><file name="autocompleter.phtml" hash="e8234dab254f0f3166c1a135c7dab2ef"/></dir><dir name="view"><file name="tracking.phtml" hash="13003c1b28ffaf7c3703de5276933653"/><file name="tracking_17.phtml" hash="e33ba763ffc1ea1247bc7a451f70a29a"/></dir></dir></dir></dir></dir><dir name="zitec_packedshipment"><dir name="sales"><dir name="order"><dir name="shipment"><dir name="create"><file name="address_validation_dialog.phtml" hash="59be44f42076144729073efae6161026"/><file name="address_validation_info_js.phtml" hash="d7daa51fc632e840ffde689739535588"/><file name="items.phtml" hash="87c932f5e6dbdbee032cce47fcf73bf2"/></dir></dir></dir></dir></dir><dir name="zitec_reportscommon"><file name="records_report_container.phtml" hash="920c50f1cbf15bdaf10a4f60d6b0932b"/><file name="records_report_grid.phtml" hash="b30be62d0e795b89c3df46bace00a288"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="zitec_dpd.xml" hash="cb835cba98acf7273619693d954dfc33"/></dir><dir name="template"><dir name="zitec_dpd"><dir name="customer"><dir name="address"><dir name="edit"><file name="addresslength.phtml" hash="fc3ff98e8c6a0d3087d515c0473f8677"/></dir></dir></dir><dir name="shipping"><dir name="tracking"><file name="popup.phtml" hash="27a1aeec16f2280d3bedf98409d60efb"/></dir></dir><dir name="tax"><dir name="checkout"><file name="cashondeliverysurchage.phtml" hash="6c8cfe8d91f209a74910fbec54afec85"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="skin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="zitec_dpd"><file name="zitec_dpd.css" hash="d903e663b594bca4b959c943f4ab7f7b"/></dir><dir name="zitec_packedshipment"><dir name="images"><file name="logo-footer.png" hash="97561865b72aeed83a4277a051dff01a"/><file name="logoSEUR.jpg" hash="8b79f57824790fb84541abc2e4df2d1f"/></dir><dir name="windows"><dir name="themes"><dir name="alert"><file name="bottom.gif" hash="e859e3bc00c4f10360fa81a659aa673f"/><file name="bottom_left.gif" hash="53585b1a0351d599e76a85ccc26f7980"/><file name="bottom_right.gif" hash="8170abe3fec71fd17612869a2f036cd6"/><file name="left.gif" hash="4f235c4e6afb0d386d220638c49e4545"/><file name="overlay.png" hash="f4ddcee6f819975bc9c5643b570de6dc"/><file name="progress.gif" hash="86b1ac6d1c485d54efa3a53643e91ceb"/><file name="right.gif" hash="838ade41815529e7a63f99c93b3a01f7"/><file name="top.gif" hash="8702ca9b81c19f6220ce81c4ea215878"/><file name="top_left.gif" hash="a8c097bcb67bddf640c2bd9161b79476"/><file name="top_right.gif" hash="05ef4e1a417a5a2c81fc816406a4842a"/></dir><file name="alert.css" hash="482cb3bbd775e2e5a439333bc754998a"/><file name="alert_lite.css" hash="404125770bb781d60acc0f19939906d1"/><dir name="alphacube"><file name="bottom-left-c.gif" hash="434cdfc5298f33efb108264cf3370e1c"/><file name="bottom-middle.gif" hash="3f882dd32d57a29a785f448bbba5ed26"/><file name="bottom-right-c.gif" hash="4c37ad7b94fc901a1cfaf54a1742d5fd"/><file name="button-close-focus.gif" hash="99c44a6df2733b58083af7a4d9522116"/><file name="button-max-focus.gif" hash="408cd33fa89269b8395bf10afe69d456"/><file name="button-min-focus.gif" hash="ae06210658bad8bcc88dea377c4dc908"/><file name="frame-left.gif" hash="1bb1207b43425d214d4dc0da108f5449"/><file name="frame-right.gif" hash="8b9c36079881aa15c27a137666c56a38"/><file name="left-top.gif" hash="1ea936a090b4dfe8160fcb3a90ddb145"/><file name="right-top.gif" hash="e1b641feab640cb4207fa52160715e32"/><file name="top-middle.gif" hash="7f94c1018d023832c7c9e1fa468a9555"/></dir><file name="alphacube.css" hash="6b7ae94078a2701deca38e17bd1fadaa"/><file name="behavior.htc" hash="36be1452bdcedb76dc601e32fa9d392c"/><dir name="darkX"><file name="button-close-focused.png" hash="5090b529a86a79679e0a26ccb0e1b0c6"/><file name="button-maximize-focused.png" hash="0f84bfcc9626d2cb1826291268b29f20"/><file name="button-minimize-focused.png" hash="630cd8cdd7124d412c6253e5c7cfc32a"/><file name="frame-bottom-left-focused.png" hash="8a34a3be2f349315dfd287ec15148332"/><file name="frame-bottom-mid-focused.png" hash="f1dbacdb64a19e00a485d426126f26db"/><file name="frame-bottom-right-focused.png" hash="17acb7874856dc68c3c017238d42054a"/><file name="frame-left-focused.png" hash="f30ab13888b2e48d0637991164a8f748"/><file name="frame-right-focused.png" hash="1115115c62507971b2f5eed3c2c5c2d0"/><file name="titlebar-left-focused.png" hash="491130dedbdbb3b2682f37424347b14c"/><file name="titlebar-mid-focused.png" hash="ae46975fc8a5e5a9f73f810d0c88809a"/><file name="titlebar-right-focused.png" hash="9560eb10dee94985f3ebe935833e2ae4"/></dir><file name="darkX.css" hash="e01618d0e2f9f88ecaeababbbe52ac70"/><file name="debug.css" hash="2467846993cb65fd99fae42860f7f51e"/><dir name="default"><file name="bottom_left.gif" hash="fb99ffa815a8648f95f42698fe5dfaa1"/><file name="bottom_mid.gif" hash="49b9ca7025562ea7f070a9111282364b"/><file name="bottom_right.gif" hash="e46768f632765cd86c5fe5d0166dcf2c"/><file name="bottom_right_resize.gif" hash="1b35a4ec3b734dfe37e31ba87bcc7d99"/><file name="center_left.gif" hash="bd567580b4ee16a7a2734057cfbbe219"/><file name="center_right.gif" hash="eef184d5d89d1710313581a2ccf408e8"/><file name="clear.gif" hash="7af1206eeb0e7834a75e69d70676060d"/><file name="close.gif" hash="8a08f243c37a8e25a88d4ac135b2f07d"/><file name="inspect.gif" hash="aa2a0961067aad5c54b8634919af863b"/><file name="maximize.gif" hash="e73cd71c4979ebeadeb9e27d40a9e8fb"/><file name="minimize.gif" hash="2d2f4b1bd0506f342425f80ab76c49a3"/><file name="overlay.png" hash="536d40e87cda0c7ae7b11f1721aa52d0"/><file name="resize.gif" hash="320f534b5d444b39701e0b679529e779"/><file name="sizer.gif" hash="1b35a4ec3b734dfe37e31ba87bcc7d99"/><file name="top_left.gif" hash="9c5e5920bfc189a45cc618099af93aa8"/><file name="top_mid.gif" hash="a12ff2b944025ad2d127d033dae5e9e1"/><file name="top_right.gif" hash="0cf1ec5b93f8ac8fcce0e2f72cf7f45e"/></dir><file name="default.css" hash="4a2a5e3e7b84a210de417cf56fa37893"/><dir name="iefix"><file name="blank.gif" hash="56398e76be6355ad5999b262208a17c9"/><file name="iepngfix.css" hash="179ea137472ff37d2b316da774a063a7"/><file name="iepngfix.htc" hash="8fd48c44a1ef5f8a8d00cf893b29fde6"/></dir><dir name="lighting"><file name="background_buttons.gif" hash="e66e67aaaf08a7b24f3cd1ba22584b42"/><file name="bottom-left-blue.png" hash="7c9e91d421945141315fc105d464a99f"/><file name="bottom-left-darkblue.png" hash="e88c2380acf403ee28597c6045988cc6"/><file name="bottom-left-green.png" hash="ee25ce8a12229b009fbfd91f7ba51e26"/><file name="bottom-left-grey.png" hash="5fdb3eae397ac7279aa5a7fdaad3dcc2"/><file name="bottom-middle-blue.png" hash="e93cc9d31d88f45c047a98a66be04354"/><file name="bottom-middle-darkblue.png" hash="763c88c424e0900e675042d3f0958bd4"/><file name="bottom-middle-green.png" hash="77e0a22afd2c55a83b5c7fa98a12ef25"/><file name="bottom-middle-grey.png" hash="3a2ebdeff74e2ff63c4471575568dd01"/><file name="bottom-right-blue.png" hash="0bc11a61047e8716451a283ebff897e5"/><file name="bottom-right-darkblue.png" hash="88e33ea702a304ae237edd57bc8447d6"/><file name="bottom-right-green.png" hash="7bce162df013eba43a659ae6e780ae4b"/><file name="bottom-right-grey.png" hash="86eb476492d911aac5688c9747fe7a1d"/><file name="button-close-blue.png" hash="42ae1a35caf8a9a275d6e748c27769fb"/><file name="button-close-darkblue.png" hash="50dbcd898dc519c1e6ac0d3a478978cd"/><file name="button-close-green.png" hash="b4273572fa91cba909a0a3e15b994d19"/><file name="button-close-grey.png" hash="124964b634ba67f2bb6dd08cf8cafd5a"/><file name="button-maximize-blue.png" hash="85b79237d85b09c205e09166dd8f4af0"/><file name="button-maximize-darkblue.png" hash="108d10619214e3365820aa4ab008aed5"/><file name="button-maximize-green.png" hash="90f5527705e4fd81997564e81c6ac2a3"/><file name="button-maximize-grey.png" hash="c46a8c014bd14be167f4c6a2f2dd52ed"/><file name="button-minimize-blue.png" hash="1fd738b99877a4dfa5656491cc3d8e6b"/><file name="button-minimize-darkblue.png" hash="b6d9da1cdf51ab54682fa75a6df2c40d"/><file name="button-minimize-green.png" hash="9e7d26298a0a49ffee3fbab6ea838e01"/><file name="button-minimize-grey.png" hash="0432701c2425cb3a5143d8a04bda0d87"/><file name="left-blue.png" hash="0a6acf0a863c04845a93b681769527cd"/><file name="left-darkblue.png" hash="44cdce8a75de4425d7eb7763092cc38d"/><file name="left-green.png" hash="d83116c49d62dc46bff0b7b4200b4ecf"/><file name="left-grey.png" hash="f3486d3293ae98b5edb8889c4b4082ef"/><file name="pngbehavior.htc" hash="af7e1d7b93e68ba7481baa63e89f1f13"/><file name="right-blue.png" hash="2c9b6b80d4a6b190b8e38a1c101e828c"/><file name="right-darkblue.png" hash="9b3267c5d36bb3f4588167cc3e78e569"/><file name="right-green.png" hash="4436968c2adbe6ed7c475c225631bc7c"/><file name="right-grey.png" hash="36b3de47bcbbd6b53e2f6e06843ee6e8"/><file name="spinner.gif" hash="c7b3cbb3ec8249a7121b722cdd76b870"/><file name="top-left-blue.png" hash="a5cb9eaa82f67df223d6784a52b26f1f"/><file name="top-left-darkblue.png" hash="e4a3af23d2cae7909331eb1995963c82"/><file name="top-left-green.png" hash="eb4cb604177c342998023d3dcd3aa5b0"/><file name="top-left-grey.png" hash="9f6f39abc4ae9539a0f54567a4a5d4f8"/><file name="top-middle-blue.png" hash="6d01df8637385bbe592b8df369294c8d"/><file name="top-middle-darkblue.png" hash="2c91ea6462e72a29cd07300d4102b88a"/><file name="top-middle-green.png" hash="e0f56311091bfb370fc6783fc7e71068"/><file name="top-middle-grey.png" hash="8c02881b730d602589fe9ed4bcaeb689"/><file name="top-right-blue.png" hash="4afefb06dc63c864211724a6348f25ad"/><file name="top-right-darkblue.png" hash="d8a9031987f648f170af67023179618d"/><file name="top-right-green.png" hash="b38813f9200440051273bdd622f5e545"/><file name="top-right-grey.png" hash="d7f7332ddf8686fb9810e4170767bf52"/></dir><file name="lighting.css" hash="cf084113a935e929fc6b69168413b965"/><file name="mac_os_x.css" hash="5c4e911f533a71d1c173d83f9bf1aa6f"/><file name="mac_os_x_dialog.css" hash="ad5917d9515dfac828735e6fccd8e1b1"/><dir name="magento"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="content_bg.gif" hash="21278ea0da2d4256f4ced96b6080ba2e"/><file name="top_bg.gif" hash="26f28090de87d64f9b01bf624f89bfe2"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/></dir><file name="magento.css" hash="228e571883e2b5f845318d6ef7e21ced"/><dir name="nuncio"><file name="bottom_left.png" hash="d9be5c7b432a342c6da5ef9b10148267"/><file name="bottom_mid.png" hash="facee2e7ee7c572a8f412750b0ce5387"/><file name="bottom_right.png" hash="6f3c124a066a11ff225897112de8e9d7"/><file name="center_left.png" hash="a11bee83f99addccc0d5eff3d2e82b8f"/><file name="center_right.png" hash="bf6b023ad1751d5f60f9820eea72ac28"/><file name="close.png" hash="46744062a7b54416c8767f8e0ccf1c41"/><file name="minimize.png" hash="bc911a3e90fc0640e0899856759a5e01"/><file name="overlay.png" hash="5ccd88855e923eb8a1bd9da1dec9d7fe"/><file name="top_left.png" hash="d3105aacc2c69954df11af953875a12e"/><file name="top_mid.png" hash="cb679a8c77e9b7485b5f0eca547eb103"/><file name="top_right.png" hash="e65d6fc6bf53891c487e414db16f1038"/></dir><file name="nuncio.css" hash="2b48eee36e26556c5086fa24fa2d182a"/><dir name="spread"><file name="bottom-left-c.gif" hash="84641d08576f68a11f717103365dfb83"/><file name="bottom-middle.gif" hash="20ab265c67355c5b72cdcdc8739af555"/><file name="bottom-right-c.gif" hash="cb27b72623e997badc599e76024a6e44"/><file name="button-close-focus.gif" hash="99c44a6df2733b58083af7a4d9522116"/><file name="button-max-focus.gif" hash="408cd33fa89269b8395bf10afe69d456"/><file name="button-min-focus.gif" hash="ae06210658bad8bcc88dea377c4dc908"/><file name="frame-left.gif" hash="63dc99b0c4ba0518688f7eca1f1628ca"/><file name="frame-right.gif" hash="a03585eec830f37898c7041d557dafc5"/><file name="left-top.gif" hash="7c78b8b59976d19191acf940cbfc04fb"/><file name="right-top.gif" hash="597530287fe1dc491278f855749f7e01"/><file name="top-middle.gif" hash="fa6fd6b90945c47f8d1718d9139d0a75"/><file name=".gif" hash="9dd39829e7cfdd06f3317a931bdc177e"/></dir><file name="spread.css" hash="39fbc0d7a1ec0702bdab33d1f1c45264"/></dir></dir></dir></dir></dir></dir></dir><dir name="js"><dir name="zitec"><dir name="dpd"><dir name="admin"><file name="PostcodeAutocompleter.js" hash="2f0a6fc4c1e93aca5db35e3749ae5b78"/><file name="sales.js" hash="b3ed902e1e5b3ee82e3edd25d9aa2a22"/></dir></dir></dir><dir name="zitec_fieldlengths"><file name="validator.js" hash="0fd6c076136d8a8e701a575ce43abcd7"/></dir><dir name="zitec_packedshipment"><file name="packedshipment.js" hash="00127fead8cc527bad1991324527815b"/></dir></dir></target><target name="magelib"><dir name="Zitec"><dir name="Dpd"><dir name="Api"><file name="Abstract.php" hash="661253bd8df102e589c12990d5ad4080"/><file name="Configs.php" hash="a60c3d72b4ea613ed9d4db1dd5038018"/><dir name="Manifest"><dir name="Close"><file name="Response.php" hash="f8e25538716d036e41fe47312605d1e3"/></dir><file name="Close.php" hash="bbf2eed315221df39ab1185124ebeb2c"/><file name="Response.php" hash="5223cd359f222f0473bf3b2b2b5eb5dd"/></dir><file name="Manifest.php" hash="8ad7f918204054daaf6ac3f578cccb6c"/><dir name="Pickup"><dir name="Create"><file name="Response.php" hash="87343026f896eb0d92a1f38584f8048a"/></dir><file name="Create.php" hash="2be362524e923aa217e3fbc6ce19eda8"/><file name="Response.php" hash="8f785b38ca0b4fb2e59b12564ab985a2"/></dir><file name="Pickup.php" hash="3f3c8d11cfe18c7002a9f799c2443143"/><file name="Response.php" hash="9f102db8a3c73b2d0b4210d775d40001"/><dir name="Shipment"><dir name="CalculatePrice"><file name="Response.php" hash="f4f51597de0f843b2ff19db8868fd7ec"/></dir><file name="CalculatePrice.php" hash="664c5f301e706efedff76c0b419aa92f"/><dir name="Delete"><file name="Response.php" hash="0dc9b3f4acd260d1b1196712151a7441"/></dir><file name="Delete.php" hash="d31051c5dfe3fba8e1366d1d48caf187"/><dir name="GetLabel"><file name="Response.php" hash="5ec3e4d25ac4e63ad02a75db2b8919d2"/></dir><file name="GetLabel.php" hash="e3fa51a7c1f9160361575f2c7b4e3139"/><dir name="GetShipmentStatus"><file name="Response.php" hash="18ece6fb219154aef63e45344fd904d7"/></dir><file name="GetShipmentStatus.php" hash="a47463cd829cde5a675d905e39f1257c"/><file name="Response.php" hash="53c94ffb826cc5e1007f6600577daef0"/><dir name="Save"><dir name="Exception"><file name="ReceiverAddressTooLong.php" hash="feedfa6694de6eaa39cc25f39be0871e"/></dir><file name="Response.php" hash="d6bce9b4d7012a3d0bcbb2a782656b57"/></dir><file name="Save.php" hash="ea1a85c0c667d6c7d1c194c6a6d095c4"/></dir><file name="Shipment.php" hash="ace969f7f5207285f88af1f6c54be9e5"/><file name="Soapclient.php" hash="dc19a84fcc5b6ce879464962ebb2473b"/></dir><file name="Api.php" hash="fda4d06e2b58500dd1b81f9580824e5c"/><dir name="ApiTest"><file name="test-dpd-calculatePrice.php" hash="cf2518f18fb7cd62bbb8336f442c5d32"/><file name="test-dpd-createShipment.php" hash="3eb91a3f368ca490820d788e736412e5"/></dir><dir name="Postcode"><dir name="Search"><file name="Abstract.php" hash="d5d95d2c62001a1d39447882b14e1fc1"/><file name="Interface.php" hash="10fdae89f6aedc013b5142d4709d455d"/><dir name="Model"><file name="CachedData.php" hash="52f6a0310175a528196cdb91864d3de9"/><file name="Interface.php" hash="16b0f5facd71a46397aeed9c10d24b03"/><file name="Mysql.php" hash="664ace95107311a9528e8fac55dfd71d"/></dir><file name="Model.php" hash="5e6f8432678a0b227df66fcb3879bf29"/></dir><file name="Search.php" hash="9d3302c6ed06fd3e460d077b025a2118"/><dir name="data"><file name="data.csv" hash="9d7fd433c94152ba7595797bc56a1f38"/><file name="data.sql" hash="93c2c5eead539680a62cc254ff911971"/></dir></dir><file name="readme.txt" hash="387ae26fa6ccdbbc324f5c37e525911a"/></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>5.6.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>zitec_dpd</name>
4
+ <version>1.0.5</version>
5
  <stability>stable</stability>
6
  <license>Open Software License (OSL 3.0)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Shipping carrier</summary>
10
  <description>Shipping carrier</description>
11
+ <notes>Fixed issues on printing shipping labels (multiple parcels) and manifest document (multiple shipments on same manifest).</notes>
12
  <authors><author><name>Zitec</name><user>zitec</user><email>magento@zitec.ro</email></author></authors>
13
+ <date>2015-01-09</date>
14
+ <time>11:09:59</time>
15
+ <contents><target name="mage"><dir name="app"><dir name="code"><dir name="community"><dir name="Zitec"><dir name="Dpd"><dir name="Block"><file name="Addresslength.php" hash="39762fc9a9731be549b4381be5338b47"/><dir name="Adminhtml"><dir name="Customer"><dir name="Edit"><dir name="Form"><file name="Addresslength.php" hash="aefcc37734f1374940cc74dc09cf4d21"/></dir></dir></dir><dir name="Order"><dir name="Totals"><dir name="Cashondeliverysurcharge"><file name="Newcreditmemo.php" hash="a2eb2ebcfc462a78fedc808563699a0e"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Address"><dir name="Form"><file name="Addresslength.php" hash="f604b84fb61a0c87618e7bc4b65b1e0a"/></dir></dir><dir name="Shipment"><dir name="View"><file name="Tracking.php" hash="93011704b4f14536f86752052fab4e82"/></dir><file name="View.php" hash="6d06fda1bc73fc3e6be22e3d0c87b681"/></dir></dir><dir name="Shipment"><dir name="Grid"><dir name="Renderer"><file name="Manifest.php" hash="ffb3919759049f52fd10e40ac983c7a9"/></dir></dir><file name="Grid.php" hash="702b22ebc9262f9f01b4bb44ec8281d9"/></dir></dir><dir name="Shipment"><dir name="Postcode"><file name="Autocompleter.php" hash="50c8f2984622830414fdf3284706071c"/></dir></dir><dir name="System"><dir name="Config"><dir name="Button"><file name="Export.php" hash="ae0682bba6f69142367d072b27a5ba72"/></dir></dir></dir><dir name="Tablerate"><file name="Grid.php" hash="eeca98b012c2a9f19f3c9ed2a913f1f5"/></dir></dir><dir name="Checkout"><dir name="Onepage"><file name="Addresslength.php" hash="bd91f75b58e4c6eea732c626297666c1"/></dir></dir><dir name="Customer"><dir name="Address"><dir name="Edit"><file name="Addresslength.php" hash="cd587bb9e369c441723e67354e440934"/></dir></dir></dir><dir name="Order"><dir name="Creditmemo"><dir name="Totals"><file name="Cashondeliverysurcharge.php" hash="ee13618864901718f2cb66021b3125cc"/></dir></dir><dir name="Invoice"><dir name="Totals"><file name="Cashondeliverysurcharge.php" hash="abd92cd6ede167fd5783f668a316b4ae"/></dir></dir><dir name="Totals"><file name="Cashondeliverysurchage.php" hash="29dfc49e7087a3ec40092c5263dbad42"/></dir></dir><dir name="Tax"><dir name="Checkout"><file name="Cashondeliverysurchage.php" hash="a90a99d9165aa72e496b2bc956bc4c7a"/></dir></dir></dir><dir name="Helper"><file name="Compatibility.php" hash="72bc4f507cd5ac283ae17d6f1abf15fd"/><file name="Data.php" hash="90a84ce4e8661ec498d22c0cfc43a4c2"/><file name="Layout.php" hash="8bf2cab6393992d76aeb5a9637dafa1e"/><file name="Payment.php" hash="8b7982b95bb64cbe959adfaee00d9d02"/><dir name="Postcode"><file name="Search.php" hash="aaee281fd3e119ea57ded8228b157f59"/></dir><file name="Ws.php" hash="b7f4d388f8d279caefa6e5da7926c86d"/></dir><dir name="Model"><dir name="Config"><dir name="Data"><file name="Abstract.php" hash="e267033b7f2a3b655b17f4d7a74d0266"/><file name="Mode.php" hash="1ed97045bb1797a4238ad7cd4e9eb483"/><file name="Tablerate.php" hash="9a3d40bdcd3bda6393d18db0f9384c45"/></dir><dir name="Source"><file name="Abstract.php" hash="ed051bc93bd33311ae7782883b5fa945"/><dir name="Order"><dir name="Status"><file name="Pendingpayment.php" hash="04e38a315cdf4609ba405cde60a2da90"/></dir></dir><file name="Service.php" hash="bc30480fd608ede36b8a09537996b637"/><file name="Wscountry.php" hash="02f190d48f374fd94328413d9b1e17bc"/></dir></dir><dir name="Dpd"><file name="Manifest.php" hash="ee02635b92d6a827162dc7d1d2c6b4bc"/><file name="Pickup.php" hash="d938af5f78d59617e4538ece685550ee"/><file name="Ship.php" hash="46f3e35dce70199afa9ebd6ae78d7ac5"/></dir><dir name="Mysql4"><dir name="Carrier"><dir name="Tablerate"><file name="Collection.php" hash="092517462c5567a4fa1e2ac0ef080998"/></dir><file name="Tablerate.php" hash="2faff14c0f783c615377edad9547ccc5"/></dir><dir name="Dpd"><file name="Manifest.php" hash="d07ac0213de91dd38b9a1e7cd83413ad"/><file name="Pickup.php" hash="6ca78ea57e6b57afb5302539c3a4df26"/><dir name="Ship"><file name="Collection.php" hash="b169288d25e67596406afdf40eac1106"/></dir><file name="Ship.php" hash="7481567c8ca70b654d295554d70a50c6"/></dir></dir><dir name="Observer"><file name="Address.php" hash="ff032ab831b82b58188f0580595f18b1"/><file name="Manifest.php" hash="73d735fda07381b980ba77f80ea332ca"/><file name="Payment.php" hash="381212d37d8a29ff768aa8d0ac52283c"/><file name="Pickup.php" hash="ed71ab3f62a27f1568b1ac66b5ec874d"/><file name="Shipment.php" hash="0c50c84048161505e2617f24e436d4c4"/></dir><dir name="Payment"><dir name="Cashondelivery"><dir name="Source"><file name="AmountType.php" hash="48e7eab17ebf024ff1e5600f957baca2"/><file name="Codpaymenttype.php" hash="76eff3a655b71100c7b5cfa484cd513b"/><file name="Country.php" hash="737f7adb0b359cd8232531207a39988b"/><file name="Service.php" hash="30b912ea49f6d6b45d43ac5c83c97987"/></dir></dir><file name="Cashondelivery.php" hash="d68795a972da6f153eee4c581045548d"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Cashondeliverysurchage.php" hash="1d08005cb6cc6004714d0f1b1c1dcb81"/><file name="Tax.php" hash="b346032d19ce496a5600e1523902e00f"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Cashondeliverysurchage.php" hash="1cb45910b477a960aae6f2ac78536234"/><file name="Tax.php" hash="18db16b4d329549f3dbd5e218d69383e"/></dir></dir><dir name="Pdf"><dir name="Total"><file name="Cashondeliverysurchage.php" hash="609db82ba0eec2ed5b377250c5807763"/></dir></dir><dir name="Total"><file name="Cashondeliverysurchage.php" hash="331830b23f5a436a1ed337c53670abe5"/></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Cashondeliverysurchage.php" hash="42cf297c76f84b3274cf3ad1ec108752"/></dir></dir></dir></dir><dir name="Shipping"><dir name="Carrier"><file name="Abstract.php" hash="c302bf67b6bab2604f809c1d34466e90"/><file name="Dpd.php" hash="6cf7676cb492d25a3ecf1e2a8ac596c8"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ConfigController.php" hash="22e8192a6a74232a58dbac2d62c02040"/><file name="ShipmentController.php" hash="7f547143d9343f2362bb72fd4e9b4907"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="2e91d7ec64ab0e79b6957c7ae59b61da"/><file name="config.xml" hash="1d8bad77cb1578c11799b3fbdd7e6127"/><file name="system.xml" hash="6881c4b6456aec64c425eb2f62d9fb56"/></dir><dir name="sql"><dir name="zitec_dpd_setup"><file name="mysql4-install-1.0.0.php" hash="12c9bc90d96f152ecadd6657ee0aa3fb"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="3ddba5ce7c9208a217e93da57465e2e1"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="bb3ca3643bb0e00c4c9eedcebdec8224"/><file name="mysql4-upgrade-1.0.2-1.0.3.php" hash="61c2104c0a23e33f39947d105f84d6c5"/></dir></dir></dir><dir name="PackedShipment"><dir name="Block"><file name="Addressvalidationdialog.php" hash="1a84c9935769b11b02cd092cdb0ee939"/><file name="Addressvalidationinfojs.php" hash="7a44b1ed924b9982ba568a33233b0b44"/></dir><dir name="Helper"><file name="Data.php" hash="9acabdcd9307eabef14d39b9621732ee"/></dir><dir name="Model"><dir name="Carrier"><file name="Interface.php" hash="5a8798282fd3b46d4fcf3faea164a07c"/></dir><file name="Package.php" hash="a95aa718a567419fb8fde217503a9fb1"/><file name="PackedShipment.php" hash="81f9206250f202f32b8c61b205dff7cb"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="9ec29ccf9284e5ce9ce8f33e8fe96a1e"/></dir></dir><dir name="etc"><file name="config.xml" hash="84d4c3e23b42f9037c95a1e4f7e2c46e"/></dir></dir><dir name="PrintShippingLabel"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Shipment"><file name="View.php" hash="b2ad3e629cca881d3c9422769a13299d"/></dir></dir><file name="View.php" hash="047f3a6fbb40c456bdd45cf694bed646"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="b52db34915a8076a9a47d436d5056b5e"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="2e1cc661904fcb5636116b25536d4896"/></dir></dir><dir name="etc"><file name="config.xml" hash="03fbaee8207794837d8d83a1805cbd9e"/></dir></dir><dir name="ReportsCommon"><dir name="Block"><dir name="RecordsReport"><file name="Grid.php" hash="4fb353204389893d316c35a649ae912a"/></dir><dir name="Renderer"><file name="Posnegcurrency.php" hash="878f0ddd2f49369f7cf13d7bad8cf586"/></dir></dir><dir name="Controller"><dir name="Adminhtml"><file name="RecordsreportController.php" hash="0176b4324917a1624421024d38eeeb68"/></dir></dir><dir name="Helper"><file name="Data.php" hash="10000ad9e82971db275454a3c9da5be7"/></dir><dir name="etc"><file name="adminhtml.xml" hash="09ba77e3ad6442564200d0b9090cedc0"/><file name="config.xml" hash="0cc7d9b9b1bd8b505b9ed876881aaf8d"/></dir></dir><dir name="ShippingReports"><dir name="Block"><dir name="Adminhtml"><dir name="Profitability"><file name="Grid.php" hash="f74523581cecd1096a60697fc7f80bea"/><dir name="Renderer"><file name="Orderref.php" hash="ea1cba63238fbb7af0dcefce8c5afdb2"/></dir></dir><file name="Profitability.php" hash="01b2fea836dc33fcbe98c0b75c1a6648"/></dir></dir><dir name="Helper"><file name="Data.php" hash="921cf4f32590d5fe7d19ff5567bfd835"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Profitability"><file name="Collection.php" hash="14b3c8f72c7cf45038d511f8cae26da8"/></dir></dir><dir name="Observer"><file name="Order.php" hash="1071169c759c54fd404629b30f335c3f"/><file name="Shipment.php" hash="e273acffcd173ea4ac630c34851be3a7"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Reports"><file name="ProfitabilityController.php" hash="8acf998c2fe4eb4ea5792626f8de72cf"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="5613d1d94b5e8d3d7440ddafbc632295"/><file name="config.xml" hash="f643132f57193be994db68ee093feec4"/></dir><dir name="sql"><dir name="zitec_shippingreports_setup"><file name="mysql4-install-1.0.0.php" hash="9b2ed8ef76ac956652c5d9b51c76e77a"/></dir></dir></dir><dir name="TableRates"><dir name="Block"><dir name="Adminhtml"><dir name="Tablerate"><dir name="Edit"><file name="Form.php" hash="54c76b88bd4a901910aa312bfc39a2f6"/></dir><file name="Edit.php" hash="f357020cd8ef1b0492073356d8baaa7f"/><dir name="Export"><file name="Form.php" hash="1b62cf6a4629d100dac517f306c8f1de"/></dir><file name="Export.php" hash="54492ee70bafd01e0fe40f91eb475036"/><dir name="Grid"><dir name="Renderer"><file name="Shippingpercentage.php" hash="664af0f7a52458f993902a64f3b644fb"/></dir></dir><file name="Grid.php" hash="f12c2ede1b29e11552a34974aa1acf8b"/><dir name="Import"><file name="Form.php" hash="06a31beb404c1f040fcf1af0c24c8eaa"/></dir><file name="Import.php" hash="5aca3f68e792f780a9e405fed9e3ff65"/></dir><file name="Tablerate.php" hash="365a5bfb80381b24abb8724cf177f03d"/><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Region.php" hash="d985f45f4ac1e2f36506bdbc210cacc8"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="1c750bd96eba3f3d121edcb1a52909c0"/><file name="Directory.php" hash="648d9bf915114f72238f26d3a66fa154"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Tablerate"><file name="Collection.php" hash="378a406b778b6c74f0b9cdfe9d02cb99"/></dir><file name="Tablerate.php" hash="5f4ccaa59e5fc46200e0ed5e5e792ed5"/></dir><dir name="Source"><file name="Website.php" hash="12bf4a7fa074b6fb5511c2dd4f067d2b"/></dir><file name="Tablerate.php" hash="c84233d2b9092bad037862e59fcfe602"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="9e5a0aeaa1161f4e7117b9cc0fc74ac5"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="bd52608b5f67216625264fff33eafc17"/><file name="config.xml" hash="475378344fcc635e09465e8524f9b94c"/></dir></dir></dir></dir></dir><dir name="locale"><dir name="en_GB"><file name="Zitec_Dpd.csv" hash="aa0777ae151f37957dcd3a86d11d5df5"/><file name="Zitec_PackedShipment.csv" hash="72e7aac7bddfddb6c21d143bfa0dec58"/><file name="Zitec_PrintShippingLabel.csv" hash="846832569583f2c1a74388f4bc83b287"/><file name="Zitec_TableRates.csv" hash="bd169b0fd65db31233f0faa07918af50"/></dir><dir name="en_US"><file name="Zitec_Dpd.csv" hash="808c91448783d976fc8d18b42b84bbc6"/><file name="Zitec_PackedShipment.csv" hash="72e7aac7bddfddb6c21d143bfa0dec58"/><file name="Zitec_PrintShippingLabel.csv" hash="846832569583f2c1a74388f4bc83b287"/><file name="Zitec_TableRates.csv" hash="bd169b0fd65db31233f0faa07918af50"/></dir><dir name="es_ES"><file name="Zitec_Dpd.csv" hash="d56fd09f5dfc9557ce79fd37170deff5"/><file name="Zitec_PackedShipment.csv" hash="72e7aac7bddfddb6c21d143bfa0dec58"/><file name="Zitec_TableRates.csv" hash="be78a9306e67c5c2559793d3550dd5ca"/></dir><dir name="hr_HR"><file name="Zitec_Dpd.csv" hash="a1491577fa3343c8c63232dbbffe4661"/><file name="Zitec_PackedShipment.csv" hash="e36fd583af99214798684cca6863a2b3"/><file name="Zitec_PrintShippingLabel.csv" hash="45d0b799103c62c262f38ec3d9de095b"/><file name="Zitec_TableRates.csv" hash="76f5ad726fea76bb4d2dd6b24ec8382a"/></dir><dir name="ro_RO"><file name="Zitec_Dpd.csv" hash="5f13fdf5a9cc5b1fa16c14192993dc0a"/><file name="Zitec_PackedShipment.csv" hash="ca033a3fbfedd926b9c1050f7fe0f3cc"/><file name="Zitec_PrintShippingLabel.csv" hash="cb55e13b13648ffc37d263f7bfad2332"/><file name="Zitec_TableRates.csv" hash="e0482f06a71f91261de673bce650e4be"/></dir><dir name="sl_SI"><file name="Zitec_Dpd.csv" hash="07f07c9b53f38384d4e5e584305e453d"/><file name="Zitec_PackedShipment.csv" hash="3c516c83c4433fe0465d00e0a44b4664"/><file name="Zitec_PrintShippingLabel.csv" hash="90d1e4400c85c6812ce5f67e40c1c5b8"/><file name="Zitec_TableRates.csv" hash="865c70908456c4ce3dc081d6bfad2d51"/></dir></dir><dir name="etc"><dir name="modules"><file name="Zitec_Dpd.xml" hash="3e395a6eefe36a0a1e46b289a5e4b832"/><file name="Zitec_FieldLengths.xml" hash="b600e134ebc8b390570eaabe56b720a3"/><file name="Zitec_PackedShipment.xml" hash="743e1ca7768c3acdabab88773a3ee86f"/><file name="Zitec_PrintShippingLabel.xml" hash="95b03f5efd7ea99c175bb9eca6df2e7d"/><file name="Zitec_ReportsCommon.xml" hash="e3cda1b9894883579fafd34d216adbfd"/><file name="Zitec_ShippingReports.xml" hash="0a602be6d44ad1dd13061ec363d691d0"/><file name="Zitec_TableRates.xml" hash="b600e134ebc8b390570eaabe56b720a3"/></dir></dir><dir name="design"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="zitec_dpd.xml" hash="94a09fc9992d383fb9e6d8228281c707"/><file name="zitec_packedshipment.xml" hash="f9836074ea752d8ef475605ec304e8f7"/><file name="zitec_shippingreports.xml" hash="fc373498e88157f79893809d1f71543e"/><file name="zitec_tablerates.xml" hash="9af70d2911f0b1563da647ecd35ede5f"/></dir><dir name="template"><dir name="zitec_dpd"><dir name="sales"><dir name="order"><dir name="address"><dir name="postcode"><file name="alert-problem.phtml" hash="c3c8e1829047845faeacd80303bb8425"/><file name="validate.phtml" hash="b5b280cecdc1141dace72253f4f3431a"/></dir><dir name="street"><file name="alert-problem.phtml" hash="39fca696ab76d228a329d545372d03de"/></dir></dir><dir name="shipment"><dir name="postcode"><file name="autocompleter.phtml" hash="e8234dab254f0f3166c1a135c7dab2ef"/></dir><dir name="view"><file name="tracking.phtml" hash="13003c1b28ffaf7c3703de5276933653"/><file name="tracking_17.phtml" hash="e33ba763ffc1ea1247bc7a451f70a29a"/></dir></dir></dir></dir></dir><dir name="zitec_packedshipment"><dir name="sales"><dir name="order"><dir name="shipment"><dir name="create"><file name="address_validation_dialog.phtml" hash="59be44f42076144729073efae6161026"/><file name="address_validation_info_js.phtml" hash="d7daa51fc632e840ffde689739535588"/><file name="items.phtml" hash="87c932f5e6dbdbee032cce47fcf73bf2"/></dir></dir></dir></dir></dir><dir name="zitec_reportscommon"><file name="records_report_container.phtml" hash="920c50f1cbf15bdaf10a4f60d6b0932b"/><file name="records_report_grid.phtml" hash="b30be62d0e795b89c3df46bace00a288"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="zitec_dpd.xml" hash="cb835cba98acf7273619693d954dfc33"/></dir><dir name="template"><dir name="zitec_dpd"><dir name="customer"><dir name="address"><dir name="edit"><file name="addresslength.phtml" hash="fc3ff98e8c6a0d3087d515c0473f8677"/></dir></dir></dir><dir name="shipping"><dir name="tracking"><file name="popup.phtml" hash="27a1aeec16f2280d3bedf98409d60efb"/></dir></dir><dir name="tax"><dir name="checkout"><file name="cashondeliverysurchage.phtml" hash="6c8cfe8d91f209a74910fbec54afec85"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="skin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="zitec_dpd"><file name="zitec_dpd.css" hash="d903e663b594bca4b959c943f4ab7f7b"/></dir><dir name="zitec_packedshipment"><dir name="images"><file name="logo-footer.png" hash="97561865b72aeed83a4277a051dff01a"/><file name="logoSEUR.jpg" hash="8b79f57824790fb84541abc2e4df2d1f"/></dir><dir name="windows"><dir name="themes"><dir name="alert"><file name="bottom.gif" hash="e859e3bc00c4f10360fa81a659aa673f"/><file name="bottom_left.gif" hash="53585b1a0351d599e76a85ccc26f7980"/><file name="bottom_right.gif" hash="8170abe3fec71fd17612869a2f036cd6"/><file name="left.gif" hash="4f235c4e6afb0d386d220638c49e4545"/><file name="overlay.png" hash="f4ddcee6f819975bc9c5643b570de6dc"/><file name="progress.gif" hash="86b1ac6d1c485d54efa3a53643e91ceb"/><file name="right.gif" hash="838ade41815529e7a63f99c93b3a01f7"/><file name="top.gif" hash="8702ca9b81c19f6220ce81c4ea215878"/><file name="top_left.gif" hash="a8c097bcb67bddf640c2bd9161b79476"/><file name="top_right.gif" hash="05ef4e1a417a5a2c81fc816406a4842a"/></dir><file name="alert.css" hash="482cb3bbd775e2e5a439333bc754998a"/><file name="alert_lite.css" hash="404125770bb781d60acc0f19939906d1"/><dir name="alphacube"><file name="bottom-left-c.gif" hash="434cdfc5298f33efb108264cf3370e1c"/><file name="bottom-middle.gif" hash="3f882dd32d57a29a785f448bbba5ed26"/><file name="bottom-right-c.gif" hash="4c37ad7b94fc901a1cfaf54a1742d5fd"/><file name="button-close-focus.gif" hash="99c44a6df2733b58083af7a4d9522116"/><file name="button-max-focus.gif" hash="408cd33fa89269b8395bf10afe69d456"/><file name="button-min-focus.gif" hash="ae06210658bad8bcc88dea377c4dc908"/><file name="frame-left.gif" hash="1bb1207b43425d214d4dc0da108f5449"/><file name="frame-right.gif" hash="8b9c36079881aa15c27a137666c56a38"/><file name="left-top.gif" hash="1ea936a090b4dfe8160fcb3a90ddb145"/><file name="right-top.gif" hash="e1b641feab640cb4207fa52160715e32"/><file name="top-middle.gif" hash="7f94c1018d023832c7c9e1fa468a9555"/></dir><file name="alphacube.css" hash="6b7ae94078a2701deca38e17bd1fadaa"/><file name="behavior.htc" hash="36be1452bdcedb76dc601e32fa9d392c"/><dir name="darkX"><file name="button-close-focused.png" hash="5090b529a86a79679e0a26ccb0e1b0c6"/><file name="button-maximize-focused.png" hash="0f84bfcc9626d2cb1826291268b29f20"/><file name="button-minimize-focused.png" hash="630cd8cdd7124d412c6253e5c7cfc32a"/><file name="frame-bottom-left-focused.png" hash="8a34a3be2f349315dfd287ec15148332"/><file name="frame-bottom-mid-focused.png" hash="f1dbacdb64a19e00a485d426126f26db"/><file name="frame-bottom-right-focused.png" hash="17acb7874856dc68c3c017238d42054a"/><file name="frame-left-focused.png" hash="f30ab13888b2e48d0637991164a8f748"/><file name="frame-right-focused.png" hash="1115115c62507971b2f5eed3c2c5c2d0"/><file name="titlebar-left-focused.png" hash="491130dedbdbb3b2682f37424347b14c"/><file name="titlebar-mid-focused.png" hash="ae46975fc8a5e5a9f73f810d0c88809a"/><file name="titlebar-right-focused.png" hash="9560eb10dee94985f3ebe935833e2ae4"/></dir><file name="darkX.css" hash="e01618d0e2f9f88ecaeababbbe52ac70"/><file name="debug.css" hash="2467846993cb65fd99fae42860f7f51e"/><dir name="default"><file name="bottom_left.gif" hash="fb99ffa815a8648f95f42698fe5dfaa1"/><file name="bottom_mid.gif" hash="49b9ca7025562ea7f070a9111282364b"/><file name="bottom_right.gif" hash="e46768f632765cd86c5fe5d0166dcf2c"/><file name="bottom_right_resize.gif" hash="1b35a4ec3b734dfe37e31ba87bcc7d99"/><file name="center_left.gif" hash="bd567580b4ee16a7a2734057cfbbe219"/><file name="center_right.gif" hash="eef184d5d89d1710313581a2ccf408e8"/><file name="clear.gif" hash="7af1206eeb0e7834a75e69d70676060d"/><file name="close.gif" hash="8a08f243c37a8e25a88d4ac135b2f07d"/><file name="inspect.gif" hash="aa2a0961067aad5c54b8634919af863b"/><file name="maximize.gif" hash="e73cd71c4979ebeadeb9e27d40a9e8fb"/><file name="minimize.gif" hash="2d2f4b1bd0506f342425f80ab76c49a3"/><file name="overlay.png" hash="536d40e87cda0c7ae7b11f1721aa52d0"/><file name="resize.gif" hash="320f534b5d444b39701e0b679529e779"/><file name="sizer.gif" hash="1b35a4ec3b734dfe37e31ba87bcc7d99"/><file name="top_left.gif" hash="9c5e5920bfc189a45cc618099af93aa8"/><file name="top_mid.gif" hash="a12ff2b944025ad2d127d033dae5e9e1"/><file name="top_right.gif" hash="0cf1ec5b93f8ac8fcce0e2f72cf7f45e"/></dir><file name="default.css" hash="4a2a5e3e7b84a210de417cf56fa37893"/><dir name="iefix"><file name="blank.gif" hash="56398e76be6355ad5999b262208a17c9"/><file name="iepngfix.css" hash="179ea137472ff37d2b316da774a063a7"/><file name="iepngfix.htc" hash="8fd48c44a1ef5f8a8d00cf893b29fde6"/></dir><dir name="lighting"><file name="background_buttons.gif" hash="e66e67aaaf08a7b24f3cd1ba22584b42"/><file name="bottom-left-blue.png" hash="7c9e91d421945141315fc105d464a99f"/><file name="bottom-left-darkblue.png" hash="e88c2380acf403ee28597c6045988cc6"/><file name="bottom-left-green.png" hash="ee25ce8a12229b009fbfd91f7ba51e26"/><file name="bottom-left-grey.png" hash="5fdb3eae397ac7279aa5a7fdaad3dcc2"/><file name="bottom-middle-blue.png" hash="e93cc9d31d88f45c047a98a66be04354"/><file name="bottom-middle-darkblue.png" hash="763c88c424e0900e675042d3f0958bd4"/><file name="bottom-middle-green.png" hash="77e0a22afd2c55a83b5c7fa98a12ef25"/><file name="bottom-middle-grey.png" hash="3a2ebdeff74e2ff63c4471575568dd01"/><file name="bottom-right-blue.png" hash="0bc11a61047e8716451a283ebff897e5"/><file name="bottom-right-darkblue.png" hash="88e33ea702a304ae237edd57bc8447d6"/><file name="bottom-right-green.png" hash="7bce162df013eba43a659ae6e780ae4b"/><file name="bottom-right-grey.png" hash="86eb476492d911aac5688c9747fe7a1d"/><file name="button-close-blue.png" hash="42ae1a35caf8a9a275d6e748c27769fb"/><file name="button-close-darkblue.png" hash="50dbcd898dc519c1e6ac0d3a478978cd"/><file name="button-close-green.png" hash="b4273572fa91cba909a0a3e15b994d19"/><file name="button-close-grey.png" hash="124964b634ba67f2bb6dd08cf8cafd5a"/><file name="button-maximize-blue.png" hash="85b79237d85b09c205e09166dd8f4af0"/><file name="button-maximize-darkblue.png" hash="108d10619214e3365820aa4ab008aed5"/><file name="button-maximize-green.png" hash="90f5527705e4fd81997564e81c6ac2a3"/><file name="button-maximize-grey.png" hash="c46a8c014bd14be167f4c6a2f2dd52ed"/><file name="button-minimize-blue.png" hash="1fd738b99877a4dfa5656491cc3d8e6b"/><file name="button-minimize-darkblue.png" hash="b6d9da1cdf51ab54682fa75a6df2c40d"/><file name="button-minimize-green.png" hash="9e7d26298a0a49ffee3fbab6ea838e01"/><file name="button-minimize-grey.png" hash="0432701c2425cb3a5143d8a04bda0d87"/><file name="left-blue.png" hash="0a6acf0a863c04845a93b681769527cd"/><file name="left-darkblue.png" hash="44cdce8a75de4425d7eb7763092cc38d"/><file name="left-green.png" hash="d83116c49d62dc46bff0b7b4200b4ecf"/><file name="left-grey.png" hash="f3486d3293ae98b5edb8889c4b4082ef"/><file name="pngbehavior.htc" hash="af7e1d7b93e68ba7481baa63e89f1f13"/><file name="right-blue.png" hash="2c9b6b80d4a6b190b8e38a1c101e828c"/><file name="right-darkblue.png" hash="9b3267c5d36bb3f4588167cc3e78e569"/><file name="right-green.png" hash="4436968c2adbe6ed7c475c225631bc7c"/><file name="right-grey.png" hash="36b3de47bcbbd6b53e2f6e06843ee6e8"/><file name="spinner.gif" hash="c7b3cbb3ec8249a7121b722cdd76b870"/><file name="top-left-blue.png" hash="a5cb9eaa82f67df223d6784a52b26f1f"/><file name="top-left-darkblue.png" hash="e4a3af23d2cae7909331eb1995963c82"/><file name="top-left-green.png" hash="eb4cb604177c342998023d3dcd3aa5b0"/><file name="top-left-grey.png" hash="9f6f39abc4ae9539a0f54567a4a5d4f8"/><file name="top-middle-blue.png" hash="6d01df8637385bbe592b8df369294c8d"/><file name="top-middle-darkblue.png" hash="2c91ea6462e72a29cd07300d4102b88a"/><file name="top-middle-green.png" hash="e0f56311091bfb370fc6783fc7e71068"/><file name="top-middle-grey.png" hash="8c02881b730d602589fe9ed4bcaeb689"/><file name="top-right-blue.png" hash="4afefb06dc63c864211724a6348f25ad"/><file name="top-right-darkblue.png" hash="d8a9031987f648f170af67023179618d"/><file name="top-right-green.png" hash="b38813f9200440051273bdd622f5e545"/><file name="top-right-grey.png" hash="d7f7332ddf8686fb9810e4170767bf52"/></dir><file name="lighting.css" hash="cf084113a935e929fc6b69168413b965"/><file name="mac_os_x.css" hash="5c4e911f533a71d1c173d83f9bf1aa6f"/><file name="mac_os_x_dialog.css" hash="ad5917d9515dfac828735e6fccd8e1b1"/><dir name="magento"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="content_bg.gif" hash="21278ea0da2d4256f4ced96b6080ba2e"/><file name="top_bg.gif" hash="26f28090de87d64f9b01bf624f89bfe2"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/></dir><file name="magento.css" hash="228e571883e2b5f845318d6ef7e21ced"/><dir name="nuncio"><file name="bottom_left.png" hash="d9be5c7b432a342c6da5ef9b10148267"/><file name="bottom_mid.png" hash="facee2e7ee7c572a8f412750b0ce5387"/><file name="bottom_right.png" hash="6f3c124a066a11ff225897112de8e9d7"/><file name="center_left.png" hash="a11bee83f99addccc0d5eff3d2e82b8f"/><file name="center_right.png" hash="bf6b023ad1751d5f60f9820eea72ac28"/><file name="close.png" hash="46744062a7b54416c8767f8e0ccf1c41"/><file name="minimize.png" hash="bc911a3e90fc0640e0899856759a5e01"/><file name="overlay.png" hash="5ccd88855e923eb8a1bd9da1dec9d7fe"/><file name="top_left.png" hash="d3105aacc2c69954df11af953875a12e"/><file name="top_mid.png" hash="cb679a8c77e9b7485b5f0eca547eb103"/><file name="top_right.png" hash="e65d6fc6bf53891c487e414db16f1038"/></dir><file name="nuncio.css" hash="2b48eee36e26556c5086fa24fa2d182a"/><dir name="spread"><file name="bottom-left-c.gif" hash="84641d08576f68a11f717103365dfb83"/><file name="bottom-middle.gif" hash="20ab265c67355c5b72cdcdc8739af555"/><file name="bottom-right-c.gif" hash="cb27b72623e997badc599e76024a6e44"/><file name="button-close-focus.gif" hash="99c44a6df2733b58083af7a4d9522116"/><file name="button-max-focus.gif" hash="408cd33fa89269b8395bf10afe69d456"/><file name="button-min-focus.gif" hash="ae06210658bad8bcc88dea377c4dc908"/><file name="frame-left.gif" hash="63dc99b0c4ba0518688f7eca1f1628ca"/><file name="frame-right.gif" hash="a03585eec830f37898c7041d557dafc5"/><file name="left-top.gif" hash="7c78b8b59976d19191acf940cbfc04fb"/><file name="right-top.gif" hash="597530287fe1dc491278f855749f7e01"/><file name="top-middle.gif" hash="fa6fd6b90945c47f8d1718d9139d0a75"/><file name=".gif" hash="9dd39829e7cfdd06f3317a931bdc177e"/></dir><file name="spread.css" hash="39fbc0d7a1ec0702bdab33d1f1c45264"/></dir></dir></dir></dir></dir></dir></dir><dir name="js"><dir name="zitec"><dir name="dpd"><dir name="admin"><file name="PostcodeAutocompleter.js" hash="2f0a6fc4c1e93aca5db35e3749ae5b78"/><file name="sales.js" hash="b3ed902e1e5b3ee82e3edd25d9aa2a22"/></dir></dir></dir><dir name="zitec_fieldlengths"><file name="validator.js" hash="0fd6c076136d8a8e701a575ce43abcd7"/></dir><dir name="zitec_packedshipment"><file name="packedshipment.js" hash="00127fead8cc527bad1991324527815b"/></dir></dir></target><target name="magelib"><dir name="Zitec"><dir name="Dpd"><dir name="Api"><file name="Abstract.php" hash="661253bd8df102e589c12990d5ad4080"/><file name="Configs.php" hash="a60c3d72b4ea613ed9d4db1dd5038018"/><dir name="Manifest"><dir name="Close"><file name="Response.php" hash="f8e25538716d036e41fe47312605d1e3"/></dir><file name="Close.php" hash="b8dc6715f5b230aecba1d72f42468103"/><file name="Response.php" hash="5223cd359f222f0473bf3b2b2b5eb5dd"/></dir><file name="Manifest.php" hash="8ad7f918204054daaf6ac3f578cccb6c"/><dir name="Pickup"><dir name="Create"><file name="Response.php" hash="87343026f896eb0d92a1f38584f8048a"/></dir><file name="Create.php" hash="2be362524e923aa217e3fbc6ce19eda8"/><file name="Response.php" hash="8f785b38ca0b4fb2e59b12564ab985a2"/></dir><file name="Pickup.php" hash="3f3c8d11cfe18c7002a9f799c2443143"/><file name="Response.php" hash="9f102db8a3c73b2d0b4210d775d40001"/><dir name="Shipment"><dir name="CalculatePrice"><file name="Response.php" hash="f4f51597de0f843b2ff19db8868fd7ec"/></dir><file name="CalculatePrice.php" hash="664c5f301e706efedff76c0b419aa92f"/><dir name="Delete"><file name="Response.php" hash="0dc9b3f4acd260d1b1196712151a7441"/></dir><file name="Delete.php" hash="d31051c5dfe3fba8e1366d1d48caf187"/><dir name="GetLabel"><file name="Response.php" hash="5ec3e4d25ac4e63ad02a75db2b8919d2"/></dir><file name="GetLabel.php" hash="e3fa51a7c1f9160361575f2c7b4e3139"/><dir name="GetShipmentStatus"><file name="Response.php" hash="18ece6fb219154aef63e45344fd904d7"/></dir><file name="GetShipmentStatus.php" hash="a47463cd829cde5a675d905e39f1257c"/><file name="Response.php" hash="53c94ffb826cc5e1007f6600577daef0"/><dir name="Save"><dir name="Exception"><file name="ReceiverAddressTooLong.php" hash="feedfa6694de6eaa39cc25f39be0871e"/></dir><file name="Response.php" hash="d6bce9b4d7012a3d0bcbb2a782656b57"/></dir><file name="Save.php" hash="826b3d12e01261c6685a1b724049470b"/></dir><file name="Shipment.php" hash="ace969f7f5207285f88af1f6c54be9e5"/><file name="Soapclient.php" hash="dc19a84fcc5b6ce879464962ebb2473b"/></dir><file name="Api.php" hash="fda4d06e2b58500dd1b81f9580824e5c"/><dir name="ApiTest"><file name="test-dpd-calculatePrice.php" hash="cf2518f18fb7cd62bbb8336f442c5d32"/><file name="test-dpd-createShipment.php" hash="3eb91a3f368ca490820d788e736412e5"/></dir><dir name="Postcode"><dir name="Search"><file name="Abstract.php" hash="d5d95d2c62001a1d39447882b14e1fc1"/><file name="Interface.php" hash="10fdae89f6aedc013b5142d4709d455d"/><dir name="Model"><file name="CachedData.php" hash="52f6a0310175a528196cdb91864d3de9"/><file name="Interface.php" hash="16b0f5facd71a46397aeed9c10d24b03"/><file name="Mysql.php" hash="664ace95107311a9528e8fac55dfd71d"/></dir><file name="Model.php" hash="5e6f8432678a0b227df66fcb3879bf29"/></dir><file name="Search.php" hash="9d3302c6ed06fd3e460d077b025a2118"/><dir name="data"><file name="data.csv" hash="9d7fd433c94152ba7595797bc56a1f38"/><file name="data.sql" hash="93c2c5eead539680a62cc254ff911971"/></dir></dir><file name="readme.txt" hash="387ae26fa6ccdbbc324f5c37e525911a"/></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>5.6.0</max></php></required></dependencies>
18
  </package>