Rvtech_Starshipit - Version 1.6.4.0

Version Notes

- Added StarTrack Shipping Method
- Added Rates at Checkout for StarTrack carrier

Download this release

Release Info

Developer George Plummer
Extension Rvtech_Starshipit
Version 1.6.4.0
Comparing to
See all releases


Code changes from version 1.6.3.2 to 1.6.4.0

app/code/community/Rvtech/Starshipit/Model/Carrier/Startrack.php ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Rvtech_Starshipit_Model_Carrier_Startrack extends Mage_Shipping_Model_Carrier_Abstract
3
+ implements Mage_Shipping_Model_Carrier_Interface {
4
+ protected $_code = 'startrack';
5
+
6
+ public function collectRates(Mage_Shipping_Model_Rate_Request $request)
7
+ {
8
+ if (!Mage::getStoreConfig('carriers/'.$this->_code.'/active')) {
9
+ return false;
10
+ }
11
+ $price = 0;
12
+ $doCalulate = $this->getConfigData('calculate');
13
+ if ($doCalulate==0)
14
+ {
15
+ $price = $this->getConfigData('price');
16
+ }
17
+ else{
18
+ try {
19
+ $shipItApiKey = Mage::helper('shipnote')->getShipItApiKey();
20
+ if ($shipItApiKey == "") {
21
+ return false;
22
+ }
23
+ $origCountryId = $request->getCountryId(); //Package Source Country ID
24
+ $origRegionId = $request->getRegionId(); //Package Source Region ID
25
+ $origRegionCode = $request->getRegion(); //Package Source Region Code
26
+ $origCity = $request->getCity(); //Package Source City
27
+ $origPostcode = $request->getPostcode(); //Package Source Post Code
28
+
29
+ $destCountryId = $request->getDestCountryId();
30
+ $destCountry = $request->getDestCountry();
31
+ $destRegion = $request->getDestRegionId();
32
+ $destRegionCode = $request->getDestRegionCode();
33
+ $destFullStreet = $request->getDestStreet();
34
+ $destStreet = "";
35
+ $destSuburb = "";
36
+ $destCity = $request->getDestCity();
37
+ $destPostcode = $request->getDestPostcode();
38
+
39
+ $destFullStreetArray = explode("\n", $destFullStreet);
40
+ if ($destFullStreetArray[0] !== false)
41
+ $destStreet = $destFullStreetArray[0];
42
+ if ($destFullStreetArray[1] !== false)
43
+ $destSuburb = $destFullStreetArray[1];
44
+
45
+ $packageValue = $request->getPackageValue(); //Dest Package Value
46
+ $packageValueDiscout = $request->getPackageValueWithDiscount(); //Dest Package Value After Discount
47
+ $packageWeight = $request->getPackageWeight() * 1000; //Package Weight (grams)
48
+ $packageCurrency = $request->getPackageCurrency();
49
+
50
+ $url = 'https://api.shipit.click/rate?apiKey=' . $shipItApiKey . '&integration=magento&format=json';
51
+ $post_data = '{
52
+ "rate": {
53
+ "origin": {
54
+ "country": "' . $origCountryId . '",
55
+ "postal_code": "' . $origPostcode . '",
56
+ "province": "' . $origRegionCode . '",
57
+ "city": "' . $origCity . '",
58
+ "name": null,
59
+ "address1": null,
60
+ "address2": null,
61
+ "address3": null,
62
+ "phone": null,
63
+ "fax": null,
64
+ "address_type": null,
65
+ "company_name": null
66
+ },
67
+ "destination":{
68
+ "country": "' . $destCountryId . '",
69
+ "postal_code": "' . $destPostcode . '",
70
+ "province": "' . $destRegionCode . '",
71
+ "city": "' . $destCity . '",
72
+ "name": null,
73
+ "address1": "' . $destStreet . '",
74
+ "address2": "' . $destSuburb . '",
75
+ "address3": null,
76
+ "phone": null,
77
+ "fax": null,
78
+ "address_type": null,
79
+ "company_name": null
80
+ },
81
+ "items":[
82
+ {
83
+ "name": "Total Items",
84
+ "sku": null,
85
+ "quantity": 1,
86
+ "grams": ' . $packageWeight . ' ,
87
+ "price": ' . $packageValue . ',
88
+ "vendor": null,
89
+ "requires_shipping": true,
90
+ "taxable": true,
91
+ "fulfillment_service": "manual"
92
+ }
93
+ ],
94
+ "currency": "' . $packageCurrency->getCurrencyCode() . '",
95
+ "carrierid": "18"
96
+ }
97
+ }';
98
+ $contentLength = strlen($post_data);
99
+
100
+ $ch = curl_init();
101
+ curl_setopt($ch, CURLOPT_URL, $url);
102
+ curl_setopt($ch, CURLOPT_HEADER, false);
103
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
104
+ curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
105
+ curl_setopt($ch, CURLOPT_POST, true);
106
+ curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
107
+ $response = curl_exec($ch);
108
+ curl_close($ch);
109
+
110
+ $json_obj = json_decode($response);
111
+ $rates_obj = $json_obj->{'rates'};
112
+
113
+ $handling = Mage::getStoreConfig('carriers/'.$this->_code.'/handling');
114
+ $result = Mage::getModel('shipping/rate_result');
115
+ $show = true;
116
+ if($show){
117
+ if(sizeof($rates_obj) > 0) {
118
+ foreach($rates_obj as $rate) {
119
+ if(is_object($rate)) {
120
+ // Add shipping option with shipping price
121
+ $method = Mage::getModel('shipping/rate_result_method');
122
+ $method->setCarrier($this->_code);
123
+ $method->setMethod($this->_code . $rate->{'service_code'});
124
+ $method->setCarrierTitle($this->getConfigData('title'));
125
+ $method->setMethodTitle($rate->{'service_name'});
126
+ $method->setPrice($rate->{'total_price'});
127
+ $method->setCost(0);
128
+ $result->append($method);
129
+ }
130
+ }
131
+ }
132
+ }else{
133
+ $error = Mage::getModel('shipping/rate_result_error');
134
+ $error->setCarrier($this->_code);
135
+ $error->setCarrierTitle($this->getConfigData('name'));
136
+ $error->setErrorMessage($this->getConfigData('specificerrmsg'));
137
+ $result->append($error);
138
+ }
139
+ }
140
+ catch (Exception $e) {
141
+ Mage::log($e->getMessage());
142
+ }
143
+ }
144
+
145
+ return $result;
146
+ }
147
+ public function getAllowedMethods()
148
+ {
149
+ return array('startrack'=>$this->getConfigData('name'));
150
+ }
151
+
152
+ public function isTrackingAvailable()
153
+ {
154
+ return true;
155
+ }
156
+
157
+ public function getTrackingInfo($tracking)
158
+ {
159
+ $status = Mage::getModel('shipping/tracking_result_status');
160
+ $status->setCarrier($this->_code);
161
+ $status->setCarrierTitle($this->getConfigData('title'));
162
+ $status->setTracking($tracking);
163
+ $status->setPopup(1);
164
+ $status->setUrl("http://www.startrack.com.au/track-trace/?id=".$tracking);
165
+ return $status;
166
+ }
167
+ }
app/code/community/Rvtech/Starshipit/etc/config.xml CHANGED
@@ -361,6 +361,16 @@
361
  using this shipping method, please contact us.</specificerrmsg>
362
  <showmethod>1</showmethod>
363
  </pace>
 
 
 
 
 
 
 
 
 
 
364
  <startrackexpress>
365
  <active>0</active>
366
  <model>ship/carrier_startrackexpress</model>
361
  using this shipping method, please contact us.</specificerrmsg>
362
  <showmethod>1</showmethod>
363
  </pace>
364
+ <startrack>
365
+ <active>0</active>
366
+ <model>ship/carrier_startrack</model>
367
+ <title>StarTrack</title>
368
+ <name>Delivery Service</name>
369
+ <price>0.00</price>
370
+ <specificerrmsg>This shipping method is currently unavailable. If you would like to ship
371
+ using this shipping method, please contact us.</specificerrmsg>
372
+ <showmethod>1</showmethod>
373
+ </startrack>
374
  <startrackexpress>
375
  <active>0</active>
376
  <model>ship/carrier_startrackexpress</model>
app/code/community/Rvtech/Starshipit/etc/system.xml CHANGED
@@ -652,10 +652,91 @@
652
  </specificcountry>
653
  </fields>
654
  </pace>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
655
  <startrackexpress translate="label" module="ship">
656
  <label>ShipIt (StarTrack Express)</label>
657
  <frontend_type>text</frontend_type>
658
- <sort_order>87</sort_order>
659
  <show_in_default>1</show_in_default>
660
  <show_in_website>1</show_in_website>
661
  <show_in_store>1</show_in_store>
@@ -736,7 +817,7 @@
736
  <shipit translate="label" module="ship">
737
  <label>ShipIt (Rate Service)</label>
738
  <frontend_type>text</frontend_type>
739
- <sort_order>88</sort_order>
740
  <show_in_default>1</show_in_default>
741
  <show_in_website>1</show_in_website>
742
  <show_in_store>1</show_in_store>
652
  </specificcountry>
653
  </fields>
654
  </pace>
655
+ <startrack translate="label" module="ship">
656
+ <label>ShipIt (StarTrack)</label>
657
+ <frontend_type>text</frontend_type>
658
+ <sort_order>87</sort_order>
659
+ <show_in_default>1</show_in_default>
660
+ <show_in_website>1</show_in_website>
661
+ <show_in_store>1</show_in_store>
662
+ <fields>
663
+ <active translate="label">
664
+ <label>Enabled</label>
665
+ <frontend_type>select</frontend_type>
666
+ <source_model>adminhtml/system_config_source_yesno</source_model>
667
+ <sort_order>1</sort_order>
668
+ <show_in_default>1</show_in_default>
669
+ <show_in_website>1</show_in_website>
670
+ <show_in_store>1</show_in_store>
671
+ </active>
672
+ <title translate="label">
673
+ <label>Title</label>
674
+ <frontend_type>text</frontend_type>
675
+ <sort_order>2</sort_order>
676
+ <show_in_default>1</show_in_default>
677
+ <show_in_website>1</show_in_website>
678
+ <show_in_store>1</show_in_store>
679
+ </title>
680
+ <name translate="label">
681
+ <label>Method Name</label>
682
+ <frontend_type>text</frontend_type>
683
+ <sort_order>2</sort_order>
684
+ <show_in_default>1</show_in_default>
685
+ <show_in_website>1</show_in_website>
686
+ <show_in_store>1</show_in_store>
687
+ </name>
688
+ <calculate translate="label">
689
+ <label>Calculate (otherwise flat rate below)</label>
690
+ <frontend_type>select</frontend_type>
691
+ <source_model>adminhtml/system_config_source_yesno</source_model>
692
+ <sort_order>3</sort_order>
693
+ <show_in_default>1</show_in_default>
694
+ <show_in_website>1</show_in_website>
695
+ <show_in_store>0</show_in_store>
696
+ </calculate>
697
+ <price translate="label">
698
+ <label>Flat Rate Price</label>
699
+ <frontend_type>text</frontend_type>
700
+ <sort_order>4</sort_order>
701
+ <show_in_default>1</show_in_default>
702
+ <show_in_website>1</show_in_website>
703
+ <show_in_store>1</show_in_store>
704
+ </price>
705
+ <specificerrmsg translate="label">
706
+ <label>Displayed Error Message</label>
707
+ <frontend_type>textarea</frontend_type>
708
+ <sort_order>6</sort_order>
709
+ <show_in_default>1</show_in_default>
710
+ <show_in_website>1</show_in_website>
711
+ <show_in_store>1</show_in_store>
712
+ </specificerrmsg>
713
+ <sallowspecific translate="label">
714
+ <label>Ship to Applicable Countries</label>
715
+ <frontend_type>select</frontend_type>
716
+ <sort_order>90</sort_order>
717
+ <frontend_class>shipping-applicable-country</frontend_class>
718
+ <source_model>
719
+ adminhtml/system_config_source_shipping_allspecificcountries</source_model>
720
+ <show_in_default>1</show_in_default>
721
+ <show_in_website>1</show_in_website>
722
+ <show_in_store>0</show_in_store>
723
+ </sallowspecific>
724
+ <specificcountry translate="label">
725
+ <label>Ship to Specific Countries</label>
726
+ <frontend_type>multiselect</frontend_type>
727
+ <sort_order>91</sort_order>
728
+ <source_model>adminhtml/system_config_source_country</source_model>
729
+ <show_in_default>1</show_in_default>
730
+ <show_in_website>1</show_in_website>
731
+ <show_in_store>0</show_in_store>
732
+ <can_be_empty>1</can_be_empty>
733
+ </specificcountry>
734
+ </fields>
735
+ </startrack>
736
  <startrackexpress translate="label" module="ship">
737
  <label>ShipIt (StarTrack Express)</label>
738
  <frontend_type>text</frontend_type>
739
+ <sort_order>88</sort_order>
740
  <show_in_default>1</show_in_default>
741
  <show_in_website>1</show_in_website>
742
  <show_in_store>1</show_in_store>
817
  <shipit translate="label" module="ship">
818
  <label>ShipIt (Rate Service)</label>
819
  <frontend_type>text</frontend_type>
820
+ <sort_order>89</sort_order>
821
  <show_in_default>1</show_in_default>
822
  <show_in_website>1</show_in_website>
823
  <show_in_store>1</show_in_store>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Rvtech_Starshipit</name>
4
- <version>1.6.3.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
@@ -18,12 +18,12 @@ From ShipIT shipping labels can be produced, tracking of orders is supported, qu
18
  DHL Express Worldwide is supported as well &#xD;
19
  &#xD;
20
  Australia Post eParcel, CourierPost, Fastways, and more.</description>
21
- <notes>- Added support for recent PHP releases&#xD;
22
- - Fixed address lookup at checkout</notes>
23
  <authors><author><name>George Plummer</name><user>GeorgeSPlummer</user><email>george@shipit.click</email></author></authors>
24
- <date>2016-04-01</date>
25
- <time>02:10:16</time>
26
- <contents><target name="mageetc"><dir name="modules"><file name="Rvtech_Starshipit.xml" hash="5f957b335ffd3ef220188acc0a4261c2"/></dir></target><target name="magecommunity"><dir name="Rvtech"><dir name="Starshipit"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Create"><file name="Shipnote.php" hash="e3978a998056ca01f2c1eecadad492f9"/></dir><file name="Note.php" hash="b176725ad1d11312fc9b2e6da10300a3"/></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><file name="Button.php" hash="bef51209ace24c39e1d0933c4695665c"/><file name="Syncbutton.php" hash="1b90bc1d0ce6f8fd85783771ffc3720b"/></dir></dir></dir></dir><file name="Note.php" hash="d89159b063408b3496b5a7c1238b9f90"/><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="bcec9d256397a5c39879eba37520370e"/><file name="View.php" hash="bee1026715c9a99d4d0ab31c2cb58325"/></dir></dir><file name="Ship.php" hash="19080a45c06dc07b7991dd694d83708a"/><file name="Shiptracking.php" hash="a64dbb626cb60a3f62994564e0d3e288"/></dir><dir name="Helper"><file name="Data.php" hash="09a753bbbc36ce95a6222587d53cd1c1"/><file name="Starship.php" hash="ebc879a96df5c80ffae9744d11a6cac5"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Observer.php" hash="2956099cbc3109242139fb0b8e07ba47"/></dir><file name="Api.php" hash="9c0c7ad4df68db05f5caf2970b91a542"/><dir name="Carrier"><file name="Auspost.php" hash="73507c7a8e26ec0cd7f6a2583b0e4a4e"/><file name="Courierpost.php" hash="f1c57b20698f9601cecbb25ed9c4eaaa"/><file name="Couriersplease.php" hash="54f0f919582c8d83f6c60c1b895c685d"/><file name="Dhlexpress.php" hash="17b5b984bd27e024c09c6a3e781e411c"/><file name="Fastway.php" hash="db29d58c52e6d12727f43594387286b5"/><file name="Nzpost.php" hash="4588176d3ace5354fdbcc492fcbb0b42"/><file name="Pace.php" hash="20f4c1fb597804ebcc5b8a2635b122d6"/><file name="Shipit.php" hash="4885844bdc91ed748a1a458f7372f7eb"/><file name="Startrackexpress.php" hash="e0eb4ff34a0d56f8b099f48c833420b9"/></dir><file name="Note.php" hash="91fdbf3caa65797d8050e999a487c4ae"/><file name="Observer.php" hash="c21ae81b45649c886a30a2a9b6c99425"/><file name="Orders.php" hash="5e6d34681f4ffde9b8b0fcad9f898481"/><dir name="Resource"><dir name="Note"><file name="Collection.php" hash="2526c09006bf6a74b1ddcf2d94b85bd1"/></dir><file name="Note.php" hash="188639765c95bb03abf24785bbcfabbe"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ShipItController.php" hash="7a82038aa1b2e9fd8bc543b402dcbf9a"/></dir><file name="IndexController.php" hash="20b9637c3eb1a5e7c6a97faa72a0a3fb"/></dir><dir name="etc"><file name="adminhtml.xml" hash="02121bfdaabeb4aa30733462d532b211"/><file name="api.xml" hash="03ba9d58ced7f06da747006e8ddf6861"/><file name="config.xml" hash="ad9e77aeaf4cdf99bceb85023cc0d7e7"/><file name="system.xml" hash="79c3ae8d2ba1a537e565466dcbe95e89"/></dir><dir name="sql"><dir name="shipnote_setup"><file name="install-1.6.2.0.php" hash="3440e960c4ae3a4036c797c02703f025"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="shipit.xml" hash="61408954f82f5ac2edcf77d859fd4591"/><file name="shipnote.xml" hash="b30f8ced0fa77550a09c3ab5ee03f28d"/></dir><dir name="template"><dir name="shipit"><dir name="system"><dir name="config"><file name="button.phtml" hash="064f053f67fc7b749d1aec40cd352ce1"/><file name="syncbutton.phtml" hash="3e67731254d4d0298891cd2598471dc9"/></dir></dir></dir><dir name="shipnote"><file name="note-create.phtml" hash="218318453338adb8a43d01dcf3aa74f3"/><file name="note.phtml" hash="dc72f98a11c955181a3d4706e9cfd297"/><dir name="sales"><dir name="order"><dir name="create"><file name="data.phtml" hash="63aa7c2343f1d801b92e61b8497b99cb"/><file name="shipnote.phtml" hash="101f8cbd09937b1c9b232a94592e72dd"/></dir><dir name="creditmemo"><dir name="create"><file name="form.phtml" hash="95b2ca2ff1b2d48519cc9f0302179804"/></dir><dir name="view"><file name="form.phtml" hash="0b851bb2da3a68d6b21195cc88d9c3a3"/></dir></dir><dir name="invoice"><dir name="create"><file name="form.phtml" hash="00a1d471675697ff345fb8744b337a54"/></dir><dir name="view"><file name="form.phtml" hash="eb85ea9873900429a859f31585ecb93b"/></dir></dir><dir name="shipment"><dir name="create"><file name="form.phtml" hash="6655a2814e346290ebefce2d45225127"/></dir><dir name="view"><file name="form.phtml" hash="1f5790819a38b162f76a32ec725a0b77"/></dir></dir><dir name="view"><dir name="tab"><file name="info.phtml" hash="66fd085aa3d4e985f914e61ef4ca6748"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="shipnote.xml" hash="4662d0b069083e71689f79ad5ce0102e"/><file name="addressautocomplete.xml" hash="88a6cbeb5077d85cac0e98632b467b2a"/><file name="shiptracking.xml" hash="cd598d60854e00759d7e201a9b819a65"/></dir><dir name="template"><dir name="shipnote"><file name="note.phtml" hash="f6199bbe2739b4689cadd2a854a3d753"/></dir><dir name="shiptracking"><file name="shiptracking.phtml" hash="dc155a0bf7d2d83579492d432de1a6f9"/><file name="trackdetail.phtml" hash="1e6967f50a922088ec1aaf9d23910163"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir name="en_GB"><file name="Rvtech_StarshipitNote.csv" hash="45582b181cd95563d26e516d9dc5efe4"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="shipnote.css" hash="1cd880ba6ee2ae963fd8b6208d9e6fd8"/></dir><dir name="js"><dir name="shipit"><file name="jquery-1.10.2.min.js" hash="628072e7212db1e8cdacb22b21752cda"/><file name="noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><file name="onstepcheckout.js" hash="c58f76856d83f7a72dbc30b3295f015b"/><file name="onstepcheckout_shipping.js" hash="01ad944a649fff8f20537af9ca4d3faa"/></dir></dir><dir name="shiptracking"><dir name="css"><file name="shiptracking.css" hash="71583b99e56b8cc1ebd9b575e17e9414"/></dir><dir name="images"><file name="ajax-loader-tr.gif" hash="01a95f2b5387dfec28b58bab64aa32ae"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="shipit"><dir name="adminhtml"><file name="grid.js" hash="dbf45931948c6c611e1af954ae2430e5"/></dir></dir></dir></target></contents>
27
  <compatible/>
28
  <dependencies><required><php><min>5.1.0</min><max>7.0.5</max></php></required></dependencies>
29
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Rvtech_Starshipit</name>
4
+ <version>1.6.4.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
18
  DHL Express Worldwide is supported as well &#xD;
19
  &#xD;
20
  Australia Post eParcel, CourierPost, Fastways, and more.</description>
21
+ <notes>- Added StarTrack Shipping Method&#xD;
22
+ - Added Rates at Checkout for StarTrack carrier</notes>
23
  <authors><author><name>George Plummer</name><user>GeorgeSPlummer</user><email>george@shipit.click</email></author></authors>
24
+ <date>2016-04-08</date>
25
+ <time>01:09:43</time>
26
+ <contents><target name="mageetc"><dir name="modules"><file name="Rvtech_Starshipit.xml" hash="5f957b335ffd3ef220188acc0a4261c2"/></dir></target><target name="magecommunity"><dir name="Rvtech"><dir name="Starshipit"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Create"><file name="Shipnote.php" hash="e3978a998056ca01f2c1eecadad492f9"/></dir><file name="Note.php" hash="b176725ad1d11312fc9b2e6da10300a3"/></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><file name="Button.php" hash="bef51209ace24c39e1d0933c4695665c"/><file name="Syncbutton.php" hash="1b90bc1d0ce6f8fd85783771ffc3720b"/></dir></dir></dir></dir><file name="Note.php" hash="d89159b063408b3496b5a7c1238b9f90"/><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="bcec9d256397a5c39879eba37520370e"/><file name="View.php" hash="bee1026715c9a99d4d0ab31c2cb58325"/></dir></dir><file name="Ship.php" hash="19080a45c06dc07b7991dd694d83708a"/><file name="Shiptracking.php" hash="a64dbb626cb60a3f62994564e0d3e288"/></dir><dir name="Helper"><file name="Data.php" hash="09a753bbbc36ce95a6222587d53cd1c1"/><file name="Starship.php" hash="ebc879a96df5c80ffae9744d11a6cac5"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Observer.php" hash="2956099cbc3109242139fb0b8e07ba47"/></dir><file name="Api.php" hash="9c0c7ad4df68db05f5caf2970b91a542"/><dir name="Carrier"><file name="Auspost.php" hash="73507c7a8e26ec0cd7f6a2583b0e4a4e"/><file name="Courierpost.php" hash="f1c57b20698f9601cecbb25ed9c4eaaa"/><file name="Couriersplease.php" hash="54f0f919582c8d83f6c60c1b895c685d"/><file name="Dhlexpress.php" hash="17b5b984bd27e024c09c6a3e781e411c"/><file name="Fastway.php" hash="db29d58c52e6d12727f43594387286b5"/><file name="Nzpost.php" hash="4588176d3ace5354fdbcc492fcbb0b42"/><file name="Pace.php" hash="20f4c1fb597804ebcc5b8a2635b122d6"/><file name="Shipit.php" hash="4885844bdc91ed748a1a458f7372f7eb"/><file name="Startrack.php" hash="8a45ad454c597df82b52c1e3d0336874"/><file name="Startrackexpress.php" hash="e0eb4ff34a0d56f8b099f48c833420b9"/></dir><file name="Note.php" hash="91fdbf3caa65797d8050e999a487c4ae"/><file name="Observer.php" hash="c21ae81b45649c886a30a2a9b6c99425"/><file name="Orders.php" hash="5e6d34681f4ffde9b8b0fcad9f898481"/><dir name="Resource"><dir name="Note"><file name="Collection.php" hash="2526c09006bf6a74b1ddcf2d94b85bd1"/></dir><file name="Note.php" hash="188639765c95bb03abf24785bbcfabbe"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ShipItController.php" hash="7a82038aa1b2e9fd8bc543b402dcbf9a"/></dir><file name="IndexController.php" hash="20b9637c3eb1a5e7c6a97faa72a0a3fb"/></dir><dir name="etc"><file name="adminhtml.xml" hash="02121bfdaabeb4aa30733462d532b211"/><file name="api.xml" hash="03ba9d58ced7f06da747006e8ddf6861"/><file name="config.xml" hash="4b619f8ed4dbfd9ccfb7c7f2651b48a7"/><file name="system.xml" hash="837db42e1eb469603a3c002537f3d6d8"/></dir><dir name="sql"><dir name="shipnote_setup"><file name="install-1.6.2.0.php" hash="3440e960c4ae3a4036c797c02703f025"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="shipit.xml" hash="61408954f82f5ac2edcf77d859fd4591"/><file name="shipnote.xml" hash="b30f8ced0fa77550a09c3ab5ee03f28d"/></dir><dir name="template"><dir name="shipit"><dir name="system"><dir name="config"><file name="button.phtml" hash="064f053f67fc7b749d1aec40cd352ce1"/><file name="syncbutton.phtml" hash="3e67731254d4d0298891cd2598471dc9"/></dir></dir></dir><dir name="shipnote"><file name="note-create.phtml" hash="218318453338adb8a43d01dcf3aa74f3"/><file name="note.phtml" hash="dc72f98a11c955181a3d4706e9cfd297"/><dir name="sales"><dir name="order"><dir name="create"><file name="data.phtml" hash="63aa7c2343f1d801b92e61b8497b99cb"/><file name="shipnote.phtml" hash="101f8cbd09937b1c9b232a94592e72dd"/></dir><dir name="creditmemo"><dir name="create"><file name="form.phtml" hash="95b2ca2ff1b2d48519cc9f0302179804"/></dir><dir name="view"><file name="form.phtml" hash="0b851bb2da3a68d6b21195cc88d9c3a3"/></dir></dir><dir name="invoice"><dir name="create"><file name="form.phtml" hash="00a1d471675697ff345fb8744b337a54"/></dir><dir name="view"><file name="form.phtml" hash="eb85ea9873900429a859f31585ecb93b"/></dir></dir><dir name="shipment"><dir name="create"><file name="form.phtml" hash="6655a2814e346290ebefce2d45225127"/></dir><dir name="view"><file name="form.phtml" hash="1f5790819a38b162f76a32ec725a0b77"/></dir></dir><dir name="view"><dir name="tab"><file name="info.phtml" hash="66fd085aa3d4e985f914e61ef4ca6748"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="shipnote.xml" hash="4662d0b069083e71689f79ad5ce0102e"/><file name="addressautocomplete.xml" hash="88a6cbeb5077d85cac0e98632b467b2a"/><file name="shiptracking.xml" hash="cd598d60854e00759d7e201a9b819a65"/></dir><dir name="template"><dir name="shipnote"><file name="note.phtml" hash="f6199bbe2739b4689cadd2a854a3d753"/></dir><dir name="shiptracking"><file name="shiptracking.phtml" hash="dc155a0bf7d2d83579492d432de1a6f9"/><file name="trackdetail.phtml" hash="1e6967f50a922088ec1aaf9d23910163"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir name="en_GB"><file name="Rvtech_StarshipitNote.csv" hash="45582b181cd95563d26e516d9dc5efe4"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="shipnote.css" hash="1cd880ba6ee2ae963fd8b6208d9e6fd8"/></dir><dir name="js"><dir name="shipit"><file name="jquery-1.10.2.min.js" hash="628072e7212db1e8cdacb22b21752cda"/><file name="noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><file name="onstepcheckout.js" hash="c58f76856d83f7a72dbc30b3295f015b"/><file name="onstepcheckout_shipping.js" hash="01ad944a649fff8f20537af9ca4d3faa"/></dir></dir><dir name="shiptracking"><dir name="css"><file name="shiptracking.css" hash="71583b99e56b8cc1ebd9b575e17e9414"/></dir><dir name="images"><file name="ajax-loader-tr.gif" hash="01a95f2b5387dfec28b58bab64aa32ae"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="shipit"><dir name="adminhtml"><file name="grid.js" hash="dbf45931948c6c611e1af954ae2430e5"/></dir></dir></dir></target></contents>
27
  <compatible/>
28
  <dependencies><required><php><min>5.1.0</min><max>7.0.5</max></php></required></dependencies>
29
  </package>