iparcel_logistics - Version 1.3.0

Version Notes

Notes

Download this release

Release Info

Developer Bobby Burden
Extension iparcel_logistics
Version 1.3.0
Comparing to
See all releases


Code changes from version 1.2.1 to 1.3.0

app/code/community/Iparcel/All/Helper/Api.php CHANGED
@@ -86,6 +86,16 @@ class Iparcel_All_Helper_Api
86
  );
87
  }
88
 
 
 
 
 
 
 
 
 
 
 
89
  /**
90
  * Cancels shipments via the Web Service API
91
  *
@@ -215,27 +225,27 @@ class Iparcel_All_Helper_Api
215
  $itemProduct = Mage::getModel('catalog/product')->load($item->getProductId());
216
  /* var $itemProduct Mage_Catalog_Model_Product */
217
  //get item price
218
- $itemPrice = (float)$item->getFinalPrice() ?: (float)$item->getPrice();
219
  // if not price and item has parent (is configurable)
220
  if (!$itemPrice && ($parent=$item->getParentItem())) {
221
  // get parent price
222
- $itemPrice = (float)$parent->getFinalPrice() ?: (float)$parent->getPrice();
223
  }
224
  // if still not price
225
  if (!$itemPrice) {
226
  // get product price
227
- $itemPrice = (float)$item->getProduct()->getPrice();
228
  }
229
  // if product isn't virtual and is configurable or downloadable
230
  if ($item["is_virtual"] == false && !in_array($itemProduct->getTypeId(), array('configurable','downloadable'))) {
231
  // add line item node
232
  $lineItem = array();
233
  $lineItem['SKU'] = $item->getSku();
234
- $lineItem['CustWeightLbs'] = (float)$item->getWeight();
235
  $lineItem['ValueUSD'] = $itemPrice;
236
- $lineItem['CustLengthInches'] = (float)$item->getLength();
237
- $lineItem['CustWidthInches'] = (float)$item->getWidth();
238
- $lineItem['CustHeightInches'] = (float)$item->getHeight();
 
239
  $lineItem['Quantity'] = $item->getTotalQty();
240
  $lineItem['ValueShopperCurrency'] = $itemPrice;
241
  $lineItem['ShopperCurrency'] = Mage::app()->getStore()->getCurrentCurrencyCode();
@@ -247,13 +257,18 @@ class Iparcel_All_Helper_Api
247
  $totals = $quote->getTotals();
248
  $discount = 0;
249
  if (isset($totals['discount']) && $totals['discount']->getValue()) {
250
- $discount = -1 * $totals['discount']->getValue();
 
 
 
251
  }
 
252
  $json['OtherDiscount'] = $discount;
253
  $json['OtherDiscountCurrency'] = $quote->getQuoteCurrencyCode();
254
  $json['ParcelID'] = 0;
255
  $json['SessionID'] = '';
256
  $json['key'] = Mage::helper('iparcel')->getGuid();
 
257
  $log->setRequest(json_encode($json));
258
  $response = $this->_restJSON($json, $this->_quote);
259
  $log->setResponse($response);
@@ -378,15 +393,16 @@ class Iparcel_All_Helper_Api
378
  // if still not price
379
  if (!$itemPrice) {
380
  // get product price
381
- $itemPrice = (float)$item->getProduct()->getPrice();
382
  }
 
383
  // if product isn't virtual and is configurable or downloadable
384
  if ($item["is_virtual"] == false && !in_array($itemProduct->getTypeId(), array('configurable','downloadable'))) {
385
  // add line item node
386
  $lineItem = array();
387
  $lineItem['SKU'] = $item->getSku();
388
- $lineItem['CustWeightLbs'] = (float)$item->getWeight();
389
  $lineItem['ValueUSD'] = $itemPrice;
 
390
  $lineItem['CustLengthInches'] = (float)$item->getLength();
391
  $lineItem['CustWidthInches'] = (float)$item->getWidth();
392
  $lineItem['CustHeightInches'] = (float)$item->getHeight();
@@ -585,16 +601,16 @@ class Iparcel_All_Helper_Api
585
 
586
  $price = null;
587
  // if it's simple product and config is to get parent's price
588
- if ($product->getTypeId() == 'simple' && Mage::getStoreConfig('catalog_mapping/attributes/price') == Iparcel_All_Model_System_Config_Source_Catalog_Mapping_Configurable_Price::CONFIGURABLE) {
589
  // get parentIds
590
  $parentIds = Mage::getModel('catalog/product_type_grouped')->getParentIdsByChild($product->getId()) ?: Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
591
  // get price
592
- $price = $parentIds ? Mage::getModel('catalog/product')->load($parentIds[0])->getPrice() : $product->getPrice();
593
  }
594
  // if there's no price
595
  if (!$price) {
596
  //get current product's price
597
- $price = $product->getPrice();
598
  }
599
 
600
  $item['CountryOfOrigin'] = (string)$product->getCountryOfManufacture();
@@ -608,15 +624,16 @@ class Iparcel_All_Helper_Api
608
  $item['HSCodeUS'] = '';
609
  }
610
 
611
- $item['Height'] = (float)$product->getHeight();
612
- $item['Length'] = (float)$product->getLength();
 
 
 
613
  $item['ProductURL'] = $product->getUrlPath();
614
  $item['SKN'] = '';
615
  if ($code = $shipAlone->getAttributeCode()) {
616
  $item['ShipAlone'] = $product->getAttributeText($code) == 'Yes' ? true : false;
617
  }
618
- $item['Width'] = (float)$product->getWidth();
619
- $item['Weight'] = (float)$product->getWeight();
620
 
621
  // Detect and handle a Simple Product with Custom Options
622
  if ($product->getTypeId() == Mage_Catalog_Model_Product_Type::TYPE_SIMPLE && $product->getHasOptions()) {
@@ -694,6 +711,7 @@ class Iparcel_All_Helper_Api
694
  $customOption["sort_order"] = $option->getSortOrder();
695
  if (get_class($option) == 'MageWorx_CustomOptions_Model_Catalog_Product_Option') {
696
  $customOption['required'] = $option->getIsRequire(true);
 
697
  } else {
698
  $customOption['required'] = $option->getIsRequire();
699
  }
86
  );
87
  }
88
 
89
+ protected function _getProductAttribute($product, $code) {
90
+ $attribute = Mage::getModel('eav/entity_attribute')
91
+ ->load(Mage::getStoreConfig('catalog_mapping/attributes/' . $code));
92
+ if ($attribute->getData()) {
93
+ $code = $attribute->getAttributeCode();
94
+ }
95
+ $val = strip_tags(($product->getData($code) && $product->getAttributeText($code)) ? $product->getAttributeText($code) : $product->getData($code));
96
+ return $val;
97
+ }
98
+
99
  /**
100
  * Cancels shipments via the Web Service API
101
  *
225
  $itemProduct = Mage::getModel('catalog/product')->load($item->getProductId());
226
  /* var $itemProduct Mage_Catalog_Model_Product */
227
  //get item price
228
+ $itemPrice = (float)$this->_getProductAttribute($item->getProduct(), 'final_price') ?: (float)$this->_getProductAttribute($item->getProduct(), 'price');
229
  // if not price and item has parent (is configurable)
230
  if (!$itemPrice && ($parent=$item->getParentItem())) {
231
  // get parent price
232
+ $itemPrice = (float)$this->_getProductAttribute($parent->getProduct(), 'final_price') ?: (float)$this->_getProductAttribute($parent->getProduct(), 'price');
233
  }
234
  // if still not price
235
  if (!$itemPrice) {
236
  // get product price
237
+ $itemPrice = (float)$this->_getProductAttribute($item->getProduct(), 'price');
238
  }
239
  // if product isn't virtual and is configurable or downloadable
240
  if ($item["is_virtual"] == false && !in_array($itemProduct->getTypeId(), array('configurable','downloadable'))) {
241
  // add line item node
242
  $lineItem = array();
243
  $lineItem['SKU'] = $item->getSku();
 
244
  $lineItem['ValueUSD'] = $itemPrice;
245
+ $lineItem['CustLengthInches'] = (float)$this->_getProductAttribute($item->getProduct(), 'length');
246
+ $lineItem['CustHeightInches'] = (float)$this->_getProductAttribute($item->getProduct(), 'height');
247
+ $lineItem['CustWidthInches'] = (float)$this->_getProductAttribute($item->getProduct(), 'width');
248
+ $lineItem['CustWeightLbs'] = (float)$this->_getProductAttribute($item->getProduct(), 'weight');
249
  $lineItem['Quantity'] = $item->getTotalQty();
250
  $lineItem['ValueShopperCurrency'] = $itemPrice;
251
  $lineItem['ShopperCurrency'] = Mage::app()->getStore()->getCurrentCurrencyCode();
257
  $totals = $quote->getTotals();
258
  $discount = 0;
259
  if (isset($totals['discount']) && $totals['discount']->getValue()) {
260
+ $discount = abs($totals['discount']->getValue());
261
+ }
262
+ if(isset($totals['ugiftcert']) && $totals['ugiftcert']->getValue()) {
263
+ $discount = $discount + abs($totals['ugiftcert']->getValue());
264
  }
265
+
266
  $json['OtherDiscount'] = $discount;
267
  $json['OtherDiscountCurrency'] = $quote->getQuoteCurrencyCode();
268
  $json['ParcelID'] = 0;
269
  $json['SessionID'] = '';
270
  $json['key'] = Mage::helper('iparcel')->getGuid();
271
+
272
  $log->setRequest(json_encode($json));
273
  $response = $this->_restJSON($json, $this->_quote);
274
  $log->setResponse($response);
393
  // if still not price
394
  if (!$itemPrice) {
395
  // get product price
396
+ $itemPrice = (float)$this->_getProductAttribute($item->getProduct(), 'price');
397
  }
398
+
399
  // if product isn't virtual and is configurable or downloadable
400
  if ($item["is_virtual"] == false && !in_array($itemProduct->getTypeId(), array('configurable','downloadable'))) {
401
  // add line item node
402
  $lineItem = array();
403
  $lineItem['SKU'] = $item->getSku();
 
404
  $lineItem['ValueUSD'] = $itemPrice;
405
+ $lineItem['CustWeightLbs'] = (float)$item->getWeight();
406
  $lineItem['CustLengthInches'] = (float)$item->getLength();
407
  $lineItem['CustWidthInches'] = (float)$item->getWidth();
408
  $lineItem['CustHeightInches'] = (float)$item->getHeight();
601
 
602
  $price = null;
603
  // if it's simple product and config is to get parent's price
604
+ if ($product->getTypeId() == 'simple' && Mage::getStoreConfig('catalog_mapping/attributes/price_type') == Iparcel_All_Model_System_Config_Source_Catalog_Mapping_Configurable_Price::CONFIGURABLE) {
605
  // get parentIds
606
  $parentIds = Mage::getModel('catalog/product_type_grouped')->getParentIdsByChild($product->getId()) ?: Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
607
  // get price
608
+ $price = $parentIds ? $this->_getProductAttribute(Mage::getModel('catalog/product')->load($parentIds[0]), 'price') : $this->_getProductAttribute($product, 'price');
609
  }
610
  // if there's no price
611
  if (!$price) {
612
  //get current product's price
613
+ $price = $this->_getProductAttribute($product, 'price');
614
  }
615
 
616
  $item['CountryOfOrigin'] = (string)$product->getCountryOfManufacture();
624
  $item['HSCodeUS'] = '';
625
  }
626
 
627
+ $item['Length'] = (float)$this->_getProductAttribute($product, 'length');
628
+ $item['Height'] = (float)$this->_getProductAttribute($product, 'height');
629
+ $item['Width'] = (float)$this->_getProductAttribute($product, 'width');
630
+ $item['Weight'] = (float)$this->_getProductAttribute($product, 'weight');
631
+
632
  $item['ProductURL'] = $product->getUrlPath();
633
  $item['SKN'] = '';
634
  if ($code = $shipAlone->getAttributeCode()) {
635
  $item['ShipAlone'] = $product->getAttributeText($code) == 'Yes' ? true : false;
636
  }
 
 
637
 
638
  // Detect and handle a Simple Product with Custom Options
639
  if ($product->getTypeId() == Mage_Catalog_Model_Product_Type::TYPE_SIMPLE && $product->getHasOptions()) {
711
  $customOption["sort_order"] = $option->getSortOrder();
712
  if (get_class($option) == 'MageWorx_CustomOptions_Model_Catalog_Product_Option') {
713
  $customOption['required'] = $option->getIsRequire(true);
714
+ $customOption["sku"] = $option->getSku() ? $option->getSku() : $option->getId();
715
  } else {
716
  $customOption['required'] = $option->getIsRequire();
717
  }
app/code/community/Iparcel/All/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Iparcel_All>
5
- <version>1.2.0</version>
6
  </Iparcel_All>
7
  </modules>
8
  <frontend>
@@ -281,7 +281,7 @@
281
  <offset>0</offset>
282
  </upload>
283
  <attributes>
284
- <price>1</price>
285
  </attributes>
286
  </catalog_mapping>
287
  <carriers>
2
  <config>
3
  <modules>
4
  <Iparcel_All>
5
+ <version>1.2.1</version>
6
  </Iparcel_All>
7
  </modules>
8
  <frontend>
281
  <offset>0</offset>
282
  </upload>
283
  <attributes>
284
+ <price_type>1</price_type>
285
  </attributes>
286
  </catalog_mapping>
287
  <carriers>
app/code/community/Iparcel/All/etc/system.xml CHANGED
@@ -526,7 +526,7 @@
526
  <show_in_store>0</show_in_store>
527
  <comment>Only boolean attributes</comment>
528
  </shipalone>
529
- <price translate="label">
530
  <label>Price Type</label>
531
  <frontend_type>select</frontend_type>
532
  <source_model>iparcel/system_config_source_catalog_mapping_configurable_price</source_model>
@@ -535,6 +535,51 @@
535
  <show_in_website>1</show_in_website>
536
  <show_in_store>0</show_in_store>
537
  <comment>Price type for configurable products</comment>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
538
  </price>
539
  </fields>
540
  </attributes>
526
  <show_in_store>0</show_in_store>
527
  <comment>Only boolean attributes</comment>
528
  </shipalone>
529
+ <price_type translate="label">
530
  <label>Price Type</label>
531
  <frontend_type>select</frontend_type>
532
  <source_model>iparcel/system_config_source_catalog_mapping_configurable_price</source_model>
535
  <show_in_website>1</show_in_website>
536
  <show_in_store>0</show_in_store>
537
  <comment>Price type for configurable products</comment>
538
+ </price_type>
539
+ <height translate="label">
540
+ <label>Height</label>
541
+ <frontend_type>select</frontend_type>
542
+ <source_model>iparcel/system_config_source_catalog_product_attribute</source_model>
543
+ <sort_order>47</sort_order>
544
+ <show_in_default>1</show_in_default>
545
+ <show_in_website>1</show_in_website>
546
+ <show_in_store>0</show_in_store>
547
+ </height>
548
+ <width translate="label">
549
+ <label>Width</label>
550
+ <frontend_type>select</frontend_type>
551
+ <source_model>iparcel/system_config_source_catalog_product_attribute</source_model>
552
+ <sort_order>47</sort_order>
553
+ <show_in_default>1</show_in_default>
554
+ <show_in_website>1</show_in_website>
555
+ <show_in_store>0</show_in_store>
556
+ </width>
557
+ <weight translate="label">
558
+ <label>Weight</label>
559
+ <frontend_type>select</frontend_type>
560
+ <source_model>iparcel/system_config_source_catalog_product_attribute</source_model>
561
+ <sort_order>47</sort_order>
562
+ <show_in_default>1</show_in_default>
563
+ <show_in_website>1</show_in_website>
564
+ <show_in_store>0</show_in_store>
565
+ </weight>
566
+ <length translate="label">
567
+ <label>Length</label>
568
+ <frontend_type>select</frontend_type>
569
+ <source_model>iparcel/system_config_source_catalog_product_attribute</source_model>
570
+ <sort_order>47</sort_order>
571
+ <show_in_default>1</show_in_default>
572
+ <show_in_website>1</show_in_website>
573
+ <show_in_store>0</show_in_store>
574
+ </length>
575
+ <price translate="label">
576
+ <label>Price</label>
577
+ <frontend_type>select</frontend_type>
578
+ <source_model>iparcel/system_config_source_catalog_product_attribute</source_model>
579
+ <sort_order>47</sort_order>
580
+ <show_in_default>1</show_in_default>
581
+ <show_in_website>1</show_in_website>
582
+ <show_in_store>0</show_in_store>
583
  </price>
584
  </fields>
585
  </attributes>
app/code/community/Iparcel/All/sql/iparcel_setup/mysql4-upgrade-1.2.0-1.2.1.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $attributeArray = array('width', 'height', 'price', 'weight', 'length');
7
+ foreach($attributeArray as $attributeCode) {
8
+ $attributeModel = Mage::getModel('eav/entity_attribute')->loadByCode('catalog_product', $attributeCode);
9
+ if($attributeModel->getData()) {
10
+ Mage::getModel('core/config')->saveConfig('catalog_mapping/attributes/' . $attributeCode, $attributeModel->getAttributeId());
11
+ }
12
+ }
13
+
14
+ $installer->endSetup();
app/code/community/Iparcel/Logistics/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Iparcel_Logistics>
5
- <version>1.2.1</version>
6
  </Iparcel_Logistics>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Iparcel_Logistics>
5
+ <version>1.3.0</version>
6
  </Iparcel_Logistics>
7
  </modules>
8
  <global>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>iparcel_logistics</name>
4
- <version>1.2.1</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
@@ -16,9 +16,9 @@
16
  <email>bburden@i-parcel.com</email>
17
  </author>
18
  </authors>
19
- <date>2016-04-20</date>
20
- <time>17:15:48</time>
21
- <contents><target name="mageweb"><dir name="app"><dir name="etc"><dir name="modules"><file name="Iparcel_Logistics.xml" hash="2f375c30334e2d4a6bae03ccab808dd3"/><file name="Iparcel_All.xml" hash="89e4b47a6ac9aa0b82f70b1539d587ea"/></dir></dir><dir name="code"><dir name="community"><dir name="Iparcel"><dir name="Logistics"><dir name="etc"><file name="adminhtml.xml" hash="8b8a4a0643ce23b42709f3b82e46e830"/><file name="config.xml" hash="a12df0ee45eb3948f56a4745ec8b6365"/><file name="system.xml" hash="38d506e0c6acd3522f116caeda13477e"/></dir><dir name="Helper"><file name="Api.php" hash="ada246f9d5a93f77a1a487b6cab6490d"/><file name="Data.php" hash="87dc68870f301c88cc6325975039810f"/></dir><dir name="Model"><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="3eee28f86610e6cf1b83ee58b83d5e83"/></dir></dir></dir></dir><dir name="All"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Mapping"><file name="Button.php" hash="dfdaf5a2fbf824a10fccc952fdccf567"/></dir></dir><dir name="Iparcel"><file name="Dashboard.php" hash="ec9dddd10368136f1bdfe79fddd4500c"/><file name="Logs.php" hash="5823bbc2a78666972dd02d5fd3e9d05d"/><dir name="Logs"><file name="Grid.php" hash="9c472c78640c8aecb5de4b638372e6f5"/></dir><dir name="Shipment"><dir name="Split"><file name="Form.php" hash="db44693b1eda47cb1d87b8a69ac9a5a0"/></dir><file name="Split.php" hash="4cb66f91987f842c699bd2d6c42f2249"/></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Method.php" hash="935a3d4adad09d6c049cd6bb4cefb8db"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="List.php" hash="2969af5eed8a1179579fa182e20cd59e"/></dir><file name="Product.php" hash="71a865c01574fd10ee0ffa7475cee378"/></dir><dir name="Catalogsearch"><dir name="Advanced"><file name="Result.php" hash="ad5a157444b80a284e0f9e7a91187b55"/></dir><file name="Result.php" hash="33e4ab0994bde9ba5dd87ade63869bee"/></dir><dir name="Html"><dir name="Head"><file name="Iparcel.php" hash="dd1737d041e9357269fa35b27dbef0bd"/><file name="Jquery.php" hash="3fd23960111c32d5696cc3de63e41b6e"/><file name="Post.php" hash="793d578cf82fb3ba83e1edc87b79ff95"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Totals"><file name="Abstract.php" hash="71cdfdce9a538b2f78b83b7b5eac8b19"/><file name="Duty.php" hash="f8ae79b70c6b5ba41c7acac9be5d84c0"/><file name="Tax.php" hash="1cfee0fccb1feede23f3cdc22f57c903"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Iparcel"><file name="LogController.php" hash="94e2095979140ad6d7c149080be30d38"/><file name="ShipmentController.php" hash="a9b8896d816b7612e1dc0638a2f8b740"/><file name="SyncController.php" hash="9378f5db27d059bbb36ff1e71bd38d32"/><dir name="Shipment"><file name="SplitController.php" hash="6a294947cf9399e42e90c890a6da2caa"/></dir><dir name="Sync"><file name="AjaxController.php" hash="ceaffb0c652954b95e83426c763a2d0d"/></dir></dir></dir><file name="AjaxController.php" hash="f6b0573eefbb21d7ac863fd029783b3c"/><file name="InfoController.php" hash="6543b1e9803489e507d2470f8e3e408b"/><file name="InternationalController.php" hash="75fc93febe96e328d5927665c33d40d1"/></dir><dir name="etc"><file name="adminhtml.xml" hash="50bc0bee93b5612763321eae11cfdc51"/><file name="config.xml" hash="6f430fb7d7fc681166befb1327119d03"/><file name="system.xml" hash="9f7bf4587539cad7a1b36ac8a01a8b3f"/></dir><dir name="Helper"><file name="Api.php" hash="7f7baf14bbdf34264e9c0f9f4d06bd39"/><file name="Data.php" hash="0c32ec392ffb3857571f272c21d84faa"/><file name="International.php" hash="7bba0cd23188eaa3f99ed3d32ffccd14"/></dir><dir name="Model"><dir name="Api"><file name="Quote.php" hash="2e938bda13d007e73f8c2238aff76fa1"/></dir><dir name="Carrier"><file name="Iparcel.php" hash="ad65fdc9f7f2264e9704b0f17d89dd34"/></dir><dir name="Catalog"><dir name="Product"><file name="Observer.php" hash="d16d89cea8eea6352a7d9b1193cd9512"/></dir></dir><dir name="Config"><dir name="Script"><file name="Js.php" hash="100822286c5326c82cbc5d4ff3cf4c39"/></dir></dir><file name="Cron.php" hash="670d37cd6cdbe60aa69fad8eb0a0759e"/><file name="Log.php" hash="8c87e5f356f8ca77a186430dda106097"/><file name="Observer.php" hash="ad3c34320671927263e673e18c798a34"/><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Duty.php" hash="33b91a5b8fa32293bfe0eab4460b04f9"/><file name="Tax.php" hash="7cd4046231eb8cb9031ae160720390da"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Duty.php" hash="5a4010994ea502afe88632ddd2699c63"/><file name="Tax.php" hash="c4c95aaaae9662860dd635238150aa46"/></dir></dir></dir><dir name="Payment"><file name="Iparcel.php" hash="30ad607409d5ed225e233638ecbff39c"/></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Abstract.php" hash="a3af320e934f50651e09bfd15b86ffea"/><file name="Collector.php" hash="f99413fe415c342d5c0d582caa767ad1"/><file name="Duty.php" hash="6ef16c8b2038d5c90b4b9c7d00825da2"/><file name="Tax.php" hash="62c9e255562643a967b8c49b9914524d"/></dir></dir></dir><dir name="Resource"><dir name="Api"><file name="Quote.php" hash="84d032b89c5df67ef24a112ad7846302"/></dir><dir name="Log"><file name="Collection.php" hash="7cb78be07207a599eff71c1e18ba0b7a"/></dir><file name="Log.php" hash="d14c2eb8314456a18adadbb52856e0b5"/><dir name="Mysql4"><file name="Setup.php" hash="9f9cf4b5934b70bd00b394beacb245f7"/></dir></dir><dir name="System"><dir name="Config"><dir name="Catalog"><file name="Mapping.php" hash="8895678aa59e49226509d2b4709c5f43"/></dir><dir name="Data"><dir name="Date"><file name="Monthday.php" hash="baec5b8a27c5b037529ba935aae0370a"/><file name="Weekday.php" hash="173edc075325d932f8dad6d4674b8153"/></dir><dir name="Time"><file name="Hour.php" hash="ddad98b85290d9b13ec9f65fbe8a10b3"/><file name="Minute.php" hash="4a76af0057d60e8ff0ff7fedc1d50575"/></dir></dir><file name="Guid.php" hash="311c7f8072f02a6be9e25b6411298c5c"/><dir name="Script"><file name="Js.php" hash="3e3f23b38ecdc361bf6ff6cee1871e92"/></dir><dir name="Source"><dir name="Catalog"><dir name="Mapping"><dir name="Configurable"><file name="Price.php" hash="f9116fd446914467e7fb31bed5a6dd0b"/></dir><file name="Mode.php" hash="36140a050ea65ff23d45264fa67e1a2b"/></dir><dir name="Product"><dir name="Attribute"><file name="Boolean.php" hash="ca1883122659f1b48890ecd46a1590ee"/></dir><file name="Attribute.php" hash="8ca9c929cda497400865751ffba991e6"/></dir></dir><dir name="Date"><file name="Weekday.php" hash="143c26f9661e5dc995ff064e333a2018"/></dir><dir name="Sales"><dir name="Order"><file name="Status.php" hash="f1e414c08c43ebb2fcc6ccf5b41a2ff2"/></dir></dir><dir name="Tax"><file name="Mode.php" hash="fb09f17b54ef8ffa22580741cc66ac14"/></dir></dir></dir></dir><dir name="Tax"><dir name="Quote"><file name="Shipping.php" hash="5d76b072c657035cf3d7713fa6672f1f"/><file name="Subtotal.php" hash="cbd2e41f3bdc74134590a675d93d4bfb"/><file name="Tax.php" hash="ffc8d78a8d0442690c49b60f909c8e48"/></dir></dir></dir><dir name="sql"><dir name="iparcel_setup"><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="4df6e3a3f2adf96eeb6ccdac213e3f1e"/><file name="mysql4-upgrade-1.1.0-1.1.1.php" hash="cfb9fbc137e7e551dfaece00ac6bb2f4"/><file name="mysql4-upgrade-1.1.1-1.2.0.php" hash="1f04c5c71a6a79aaf74810e87670d998"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="iparcel.xml" hash="55aec816cb242fe44aab3a2e0d9de0ba"/><file name="iparcel.xml" hash="55aec816cb242fe44aab3a2e0d9de0ba"/></dir><dir name="template"><dir name="iparcel"><dir name="html"><dir name="head"><file name="iparcel.phtml" hash="07091c9914189cfef06af8cc6e41855c"/><file name="jquery.phtml" hash="c287cb0aa4ddd1f04f27cb5df605a27d"/><file name="post.phtml" hash="1a53e744668b250175ba275b4260050b"/><file name="iparcel.phtml" hash="07091c9914189cfef06af8cc6e41855c"/><file name="jquery.phtml" hash="c287cb0aa4ddd1f04f27cb5df605a27d"/><file name="post.phtml" hash="1a53e744668b250175ba275b4260050b"/></dir></dir><dir name="post"><file name="list.phtml" hash="20e5d7d7f82e1f8d951a1509921eb3bf"/><file name="list.phtml" hash="20e5d7d7f82e1f8d951a1509921eb3bf"/></dir><file name="post.phtml" hash="3827cab2dba981556aeb8ec915ab03cc"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="iparcel.xml" hash="c6be54da5875c9356bba8988fa8c264c"/></dir><dir name="template"><dir name="iparcel"><dir name="order"><dir name="totals"><file name="duty.phtml" hash="7af41c6d47dafeb890a520d8e6e39910"/><file name="tax.phtml" hash="25bffd2b58554cf28e5f4abe4b4e1e7c"/></dir></dir><dir name="sync"><dir name="ajax"><file name="catalog.phtml" hash="64da446db5c1bfe892951c9b3c7f1e7d"/><file name="checkitems.phtml" hash="c19b0e4fd0feddedbc2cef3b2f4ce79b"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="locale"><dir name="en_US"><file name="iparcel.csv" hash="cbcb75a490376ca0b63c8c66622c1656"/></dir></dir></dir><dir name="js"><dir name="iparcel"><dir name="adminhtml"><file name="shipping-methods.js" hash="eca91e8a5cf152fce7af0eb5bf2991bb"/><file name="sync.js" hash="f4525e5c6bce01f9a5cea562f23618e7"/><file name="shipping-methods.js" hash="eca91e8a5cf152fce7af0eb5bf2991bb"/><file name="sync.js" hash="f4525e5c6bce01f9a5cea562f23618e7"/><file name="shipping-methods.js" hash="eca91e8a5cf152fce7af0eb5bf2991bb"/><file name="sync.js" hash="f4525e5c6bce01f9a5cea562f23618e7"/><file name="shipping-methods.js" hash="eca91e8a5cf152fce7af0eb5bf2991bb"/><file name="sync.js" hash="f4525e5c6bce01f9a5cea562f23618e7"/><file name="shipping-methods.js" hash="eca91e8a5cf152fce7af0eb5bf2991bb"/><file name="sync.js" hash="f4525e5c6bce01f9a5cea562f23618e7"/></dir><file name="jQuery.js" hash="8ec1680e4d815ff93f661214efa06276"/><file name="lib.js" hash="42c556650eb62797de469f1770bde3f0"/><file name="post.js" hash="c710697e3d4905a6a707222728485047"/><file name="jQuery.js" hash="8ec1680e4d815ff93f661214efa06276"/><file name="lib.js" hash="42c556650eb62797de469f1770bde3f0"/><file name="post.js" hash="c710697e3d4905a6a707222728485047"/><file name="jQuery.js" hash="8ec1680e4d815ff93f661214efa06276"/><file name="lib.js" hash="42c556650eb62797de469f1770bde3f0"/><file name="post.js" hash="c710697e3d4905a6a707222728485047"/></dir></dir><dir name="skin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="iparcel"><file name="ajaxSync.css" hash="c622b9e4b77589bc0f3c0555124d2751"/></dir></dir></dir></dir></dir></target></contents>
22
  <compatible/>
23
  <dependencies>
24
  <required>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>iparcel_logistics</name>
4
+ <version>1.3.0</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
16
  <email>bburden@i-parcel.com</email>
17
  </author>
18
  </authors>
19
+ <date>2016-05-16</date>
20
+ <time>18:12:34</time>
21
+ <contents><target name="mageweb"><dir name="app"><dir name="etc"><dir name="modules"><file name="Iparcel_Logistics.xml" hash="2f375c30334e2d4a6bae03ccab808dd3"/><file name="Iparcel_All.xml" hash="89e4b47a6ac9aa0b82f70b1539d587ea"/></dir></dir><dir name="code"><dir name="community"><dir name="Iparcel"><dir name="Logistics"><dir name="etc"><file name="adminhtml.xml" hash="8b8a4a0643ce23b42709f3b82e46e830"/><file name="config.xml" hash="c0ebd6e8afbffaf59ac6d6534c5d8cea"/><file name="system.xml" hash="38d506e0c6acd3522f116caeda13477e"/></dir><dir name="Helper"><file name="Api.php" hash="ada246f9d5a93f77a1a487b6cab6490d"/><file name="Data.php" hash="87dc68870f301c88cc6325975039810f"/></dir><dir name="Model"><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="3eee28f86610e6cf1b83ee58b83d5e83"/></dir></dir></dir></dir><dir name="All"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Mapping"><file name="Button.php" hash="dfdaf5a2fbf824a10fccc952fdccf567"/></dir></dir><dir name="Iparcel"><file name="Dashboard.php" hash="ec9dddd10368136f1bdfe79fddd4500c"/><file name="Logs.php" hash="5823bbc2a78666972dd02d5fd3e9d05d"/><dir name="Logs"><file name="Grid.php" hash="9c472c78640c8aecb5de4b638372e6f5"/></dir><dir name="Shipment"><dir name="Split"><file name="Form.php" hash="db44693b1eda47cb1d87b8a69ac9a5a0"/></dir><file name="Split.php" hash="4cb66f91987f842c699bd2d6c42f2249"/></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Method.php" hash="935a3d4adad09d6c049cd6bb4cefb8db"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="List.php" hash="2969af5eed8a1179579fa182e20cd59e"/></dir><file name="Product.php" hash="71a865c01574fd10ee0ffa7475cee378"/></dir><dir name="Catalogsearch"><dir name="Advanced"><file name="Result.php" hash="ad5a157444b80a284e0f9e7a91187b55"/></dir><file name="Result.php" hash="33e4ab0994bde9ba5dd87ade63869bee"/></dir><dir name="Html"><dir name="Head"><file name="Iparcel.php" hash="dd1737d041e9357269fa35b27dbef0bd"/><file name="Jquery.php" hash="3fd23960111c32d5696cc3de63e41b6e"/><file name="Post.php" hash="793d578cf82fb3ba83e1edc87b79ff95"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Totals"><file name="Abstract.php" hash="71cdfdce9a538b2f78b83b7b5eac8b19"/><file name="Duty.php" hash="f8ae79b70c6b5ba41c7acac9be5d84c0"/><file name="Tax.php" hash="1cfee0fccb1feede23f3cdc22f57c903"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Iparcel"><file name="LogController.php" hash="94e2095979140ad6d7c149080be30d38"/><file name="ShipmentController.php" hash="a9b8896d816b7612e1dc0638a2f8b740"/><file name="SyncController.php" hash="9378f5db27d059bbb36ff1e71bd38d32"/><dir name="Shipment"><file name="SplitController.php" hash="6a294947cf9399e42e90c890a6da2caa"/></dir><dir name="Sync"><file name="AjaxController.php" hash="ceaffb0c652954b95e83426c763a2d0d"/></dir></dir></dir><file name="AjaxController.php" hash="f6b0573eefbb21d7ac863fd029783b3c"/><file name="InfoController.php" hash="6543b1e9803489e507d2470f8e3e408b"/><file name="InternationalController.php" hash="75fc93febe96e328d5927665c33d40d1"/></dir><dir name="etc"><file name="adminhtml.xml" hash="50bc0bee93b5612763321eae11cfdc51"/><file name="config.xml" hash="4bd33ca7a2dca415a545f524165ced48"/><file name="system.xml" hash="823d3690c187d8c3db42912d83a6303b"/></dir><dir name="Helper"><file name="Api.php" hash="bc0872952d20a9a4c7b2a91a644a0017"/><file name="Data.php" hash="0c32ec392ffb3857571f272c21d84faa"/><file name="International.php" hash="7bba0cd23188eaa3f99ed3d32ffccd14"/></dir><dir name="Model"><dir name="Api"><file name="Quote.php" hash="2e938bda13d007e73f8c2238aff76fa1"/></dir><dir name="Carrier"><file name="Iparcel.php" hash="ad65fdc9f7f2264e9704b0f17d89dd34"/></dir><dir name="Catalog"><dir name="Product"><file name="Observer.php" hash="d16d89cea8eea6352a7d9b1193cd9512"/></dir></dir><dir name="Config"><dir name="Script"><file name="Js.php" hash="100822286c5326c82cbc5d4ff3cf4c39"/></dir></dir><file name="Cron.php" hash="670d37cd6cdbe60aa69fad8eb0a0759e"/><file name="Log.php" hash="8c87e5f356f8ca77a186430dda106097"/><file name="Observer.php" hash="ad3c34320671927263e673e18c798a34"/><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Duty.php" hash="33b91a5b8fa32293bfe0eab4460b04f9"/><file name="Tax.php" hash="7cd4046231eb8cb9031ae160720390da"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Duty.php" hash="5a4010994ea502afe88632ddd2699c63"/><file name="Tax.php" hash="c4c95aaaae9662860dd635238150aa46"/></dir></dir></dir><dir name="Payment"><file name="Iparcel.php" hash="30ad607409d5ed225e233638ecbff39c"/></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Abstract.php" hash="a3af320e934f50651e09bfd15b86ffea"/><file name="Collector.php" hash="f99413fe415c342d5c0d582caa767ad1"/><file name="Duty.php" hash="6ef16c8b2038d5c90b4b9c7d00825da2"/><file name="Tax.php" hash="62c9e255562643a967b8c49b9914524d"/></dir></dir></dir><dir name="Resource"><dir name="Api"><file name="Quote.php" hash="84d032b89c5df67ef24a112ad7846302"/></dir><dir name="Log"><file name="Collection.php" hash="7cb78be07207a599eff71c1e18ba0b7a"/></dir><file name="Log.php" hash="d14c2eb8314456a18adadbb52856e0b5"/><dir name="Mysql4"><file name="Setup.php" hash="9f9cf4b5934b70bd00b394beacb245f7"/></dir></dir><dir name="System"><dir name="Config"><dir name="Catalog"><file name="Mapping.php" hash="8895678aa59e49226509d2b4709c5f43"/></dir><dir name="Data"><dir name="Date"><file name="Monthday.php" hash="baec5b8a27c5b037529ba935aae0370a"/><file name="Weekday.php" hash="173edc075325d932f8dad6d4674b8153"/></dir><dir name="Time"><file name="Hour.php" hash="ddad98b85290d9b13ec9f65fbe8a10b3"/><file name="Minute.php" hash="4a76af0057d60e8ff0ff7fedc1d50575"/></dir></dir><file name="Guid.php" hash="311c7f8072f02a6be9e25b6411298c5c"/><dir name="Script"><file name="Js.php" hash="3e3f23b38ecdc361bf6ff6cee1871e92"/></dir><dir name="Source"><dir name="Catalog"><dir name="Mapping"><dir name="Configurable"><file name="Price.php" hash="f9116fd446914467e7fb31bed5a6dd0b"/></dir><file name="Mode.php" hash="36140a050ea65ff23d45264fa67e1a2b"/></dir><dir name="Product"><dir name="Attribute"><file name="Boolean.php" hash="ca1883122659f1b48890ecd46a1590ee"/></dir><file name="Attribute.php" hash="8ca9c929cda497400865751ffba991e6"/></dir></dir><dir name="Date"><file name="Weekday.php" hash="143c26f9661e5dc995ff064e333a2018"/></dir><dir name="Sales"><dir name="Order"><file name="Status.php" hash="f1e414c08c43ebb2fcc6ccf5b41a2ff2"/></dir></dir><dir name="Tax"><file name="Mode.php" hash="fb09f17b54ef8ffa22580741cc66ac14"/></dir></dir></dir></dir><dir name="Tax"><dir name="Quote"><file name="Shipping.php" hash="5d76b072c657035cf3d7713fa6672f1f"/><file name="Subtotal.php" hash="cbd2e41f3bdc74134590a675d93d4bfb"/><file name="Tax.php" hash="ffc8d78a8d0442690c49b60f909c8e48"/></dir></dir></dir><dir name="sql"><dir name="iparcel_setup"><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="4df6e3a3f2adf96eeb6ccdac213e3f1e"/><file name="mysql4-upgrade-1.1.0-1.1.1.php" hash="cfb9fbc137e7e551dfaece00ac6bb2f4"/><file name="mysql4-upgrade-1.1.1-1.2.0.php" hash="1f04c5c71a6a79aaf74810e87670d998"/><file name="mysql4-upgrade-1.2.0-1.2.1.php" hash="de1c9caa713dd194595aa2dd15a829ac"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="iparcel.xml" hash="55aec816cb242fe44aab3a2e0d9de0ba"/><file name="iparcel.xml" hash="55aec816cb242fe44aab3a2e0d9de0ba"/></dir><dir name="template"><dir name="iparcel"><dir name="html"><dir name="head"><file name="iparcel.phtml" hash="07091c9914189cfef06af8cc6e41855c"/><file name="jquery.phtml" hash="c287cb0aa4ddd1f04f27cb5df605a27d"/><file name="post.phtml" hash="1a53e744668b250175ba275b4260050b"/><file name="iparcel.phtml" hash="07091c9914189cfef06af8cc6e41855c"/><file name="jquery.phtml" hash="c287cb0aa4ddd1f04f27cb5df605a27d"/><file name="post.phtml" hash="1a53e744668b250175ba275b4260050b"/></dir></dir><dir name="post"><file name="list.phtml" hash="20e5d7d7f82e1f8d951a1509921eb3bf"/><file name="list.phtml" hash="20e5d7d7f82e1f8d951a1509921eb3bf"/></dir><file name="post.phtml" hash="3827cab2dba981556aeb8ec915ab03cc"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="iparcel.xml" hash="c6be54da5875c9356bba8988fa8c264c"/></dir><dir name="template"><dir name="iparcel"><dir name="order"><dir name="totals"><file name="duty.phtml" hash="7af41c6d47dafeb890a520d8e6e39910"/><file name="tax.phtml" hash="25bffd2b58554cf28e5f4abe4b4e1e7c"/></dir></dir><dir name="sync"><dir name="ajax"><file name="catalog.phtml" hash="64da446db5c1bfe892951c9b3c7f1e7d"/><file name="checkitems.phtml" hash="c19b0e4fd0feddedbc2cef3b2f4ce79b"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="locale"><dir name="en_US"><file name="iparcel.csv" hash="cbcb75a490376ca0b63c8c66622c1656"/></dir></dir></dir><dir name="js"><dir name="iparcel"><dir name="adminhtml"><file name="shipping-methods.js" hash="eca91e8a5cf152fce7af0eb5bf2991bb"/><file name="sync.js" hash="f4525e5c6bce01f9a5cea562f23618e7"/><file name="shipping-methods.js" hash="eca91e8a5cf152fce7af0eb5bf2991bb"/><file name="sync.js" hash="f4525e5c6bce01f9a5cea562f23618e7"/><file name="shipping-methods.js" hash="eca91e8a5cf152fce7af0eb5bf2991bb"/><file name="sync.js" hash="f4525e5c6bce01f9a5cea562f23618e7"/><file name="shipping-methods.js" hash="eca91e8a5cf152fce7af0eb5bf2991bb"/><file name="sync.js" hash="f4525e5c6bce01f9a5cea562f23618e7"/><file name="shipping-methods.js" hash="eca91e8a5cf152fce7af0eb5bf2991bb"/><file name="sync.js" hash="f4525e5c6bce01f9a5cea562f23618e7"/></dir><file name="jQuery.js" hash="8ec1680e4d815ff93f661214efa06276"/><file name="lib.js" hash="42c556650eb62797de469f1770bde3f0"/><file name="post.js" hash="c710697e3d4905a6a707222728485047"/><file name="jQuery.js" hash="8ec1680e4d815ff93f661214efa06276"/><file name="lib.js" hash="42c556650eb62797de469f1770bde3f0"/><file name="post.js" hash="c710697e3d4905a6a707222728485047"/><file name="jQuery.js" hash="8ec1680e4d815ff93f661214efa06276"/><file name="lib.js" hash="42c556650eb62797de469f1770bde3f0"/><file name="post.js" hash="c710697e3d4905a6a707222728485047"/></dir></dir><dir name="skin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="iparcel"><file name="ajaxSync.css" hash="c622b9e4b77589bc0f3c0555124d2751"/></dir></dir></dir></dir></dir></target></contents>
22
  <compatible/>
23
  <dependencies>
24
  <required>