Version Notes
In this new edition, when you creat an invoice and add a new tracking number, you can select courier supported by Trackingmore extension, not just the default courier.
Download this release
Release Info
Developer | Charles |
Extension | trackingmore_detrack |
Version | 1.0.9 |
Comparing to | |
See all releases |
Code changes from version 1.0.8 to 1.0.9
app/code/community/Trackingmore/Detrack/Block/Adminhtml/Sales/Order/Invoice/Create/Tracking.php
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magento.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magento.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Adminhtml
|
23 |
+
* @copyright Copyright (c) 2006-2017 X.commerce, Inc. and affiliates (http://www.magento.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Shipment tracking control form
|
29 |
+
*
|
30 |
+
* @category Mage
|
31 |
+
* @package Mage_Adminhtml
|
32 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
+
*/
|
34 |
+
class Trackingmore_Detrack_Block_Adminhtml_Sales_Order_Invoice_Create_Tracking extends Mage_Adminhtml_Block_Sales_Order_Invoice_Create_Tracking
|
35 |
+
{
|
36 |
+
|
37 |
+
/* public function getCarriers()
|
38 |
+
{
|
39 |
+
$express[''] = $this->__('----- Trackingmore carriers -----');
|
40 |
+
return $express;
|
41 |
+
$express = parent::getCarriers();
|
42 |
+
$enabled = Mage::getStoreConfig('tr_section_setttings/settings/status');
|
43 |
+
|
44 |
+
if (!$enabled)
|
45 |
+
return $express;
|
46 |
+
$disableDefault = isset($config['disable_default_carriers']) && $config['disable_default_carriers'] ? 1 : 0;
|
47 |
+
$TrackingmoreCarriers = Mage::getModel('detrack/carrier')
|
48 |
+
->getList();
|
49 |
+
if ($TrackingmoreCarriers) {
|
50 |
+
if ($disableDefault) {
|
51 |
+
$express = array();
|
52 |
+
}
|
53 |
+
else {
|
54 |
+
$express[''] = $this->__('----- Trackingmore carriers -----');
|
55 |
+
}
|
56 |
+
foreach ($TrackingmoreCarriers as $item) {
|
57 |
+
$express[$item->getPrefixedCode()] = $item->getData('name');
|
58 |
+
}
|
59 |
+
}
|
60 |
+
return $express;
|
61 |
+
} */
|
62 |
+
|
63 |
+
public function getCarriers()
|
64 |
+
{
|
65 |
+
$express = parent::getCarriers();
|
66 |
+
$enabled = Mage::getStoreConfig('tr_section_setttings/settings/status');
|
67 |
+
if (!$enabled)
|
68 |
+
return $express;
|
69 |
+
$disableDefault = isset($config['disable_default_carriers']) && $config['disable_default_carriers'] ? 1 : 0;
|
70 |
+
$TrackingmoreCarriers = Mage::getModel('detrack/carrier')
|
71 |
+
->getList();
|
72 |
+
if ($TrackingmoreCarriers) {
|
73 |
+
if ($disableDefault) {
|
74 |
+
$express = array();
|
75 |
+
}
|
76 |
+
else {
|
77 |
+
$express[''] = $this->__('----- Trackingmore carriers -----');
|
78 |
+
}
|
79 |
+
foreach ($TrackingmoreCarriers as $item) {
|
80 |
+
$express[$item->getPrefixedCode()] = $item->getData('name');
|
81 |
+
}
|
82 |
+
}
|
83 |
+
return $express;
|
84 |
+
}
|
85 |
+
|
86 |
+
}
|
app/code/community/Trackingmore/Detrack/etc/config.xml
CHANGED
@@ -104,6 +104,7 @@
|
|
104 |
<rewrite>
|
105 |
<sales_order_shipment_view_tracking>Trackingmore_Detrack_Block_Adminhtml_Sales_Order_Shipment_View_Tracking</sales_order_shipment_view_tracking>
|
106 |
<sales_order_shipment_create_tracking>Trackingmore_Detrack_Block_Adminhtml_Sales_Order_Shipment_Create_Tracking</sales_order_shipment_create_tracking>
|
|
|
107 |
</rewrite>
|
108 |
</adminhtml>
|
109 |
</blocks>
|
104 |
<rewrite>
|
105 |
<sales_order_shipment_view_tracking>Trackingmore_Detrack_Block_Adminhtml_Sales_Order_Shipment_View_Tracking</sales_order_shipment_view_tracking>
|
106 |
<sales_order_shipment_create_tracking>Trackingmore_Detrack_Block_Adminhtml_Sales_Order_Shipment_Create_Tracking</sales_order_shipment_create_tracking>
|
107 |
+
<sales_order_invoice_create_tracking>Trackingmore_Detrack_Block_Adminhtml_Sales_Order_Invoice_Create_Tracking</sales_order_invoice_create_tracking>
|
108 |
</rewrite>
|
109 |
</adminhtml>
|
110 |
</blocks>
|
app/design/frontend/base/default/template/detrack/popup.phtml
CHANGED
@@ -3,67 +3,27 @@
|
|
3 |
<button class="button" onclick="window.close(); window.opener.focus();"><span><span><?php echo $this->__('Close Window') ?></span></span></button>
|
4 |
</div>
|
5 |
<br>
|
6 |
-
|
7 |
<?php $models = Mage::registry('models'); ?>
|
8 |
<?php $model = Mage::registry('model'); ?>
|
9 |
<?php $key = Mage::getStoreConfig('tr_section_setttings/settings/api_key'); ?>
|
10 |
<?php if ($models) : ?>
|
11 |
<?php foreach ($models as $trackModel) : ?>
|
12 |
|
13 |
-
<?php
|
14 |
$numbers[] = $trackModel->getCode();
|
15 |
$carrierCodes[] = $trackModel->getCarrierCode();
|
16 |
$orderId = $trackModel->getOrderId();
|
17 |
-
// print_r($orderId);exit;
|
18 |
-
//取卖家的附加信息
|
19 |
-
$read = Mage::getSingleton("core/resource")->getConnection('core_read');
|
20 |
-
$sql = "select comment,created_at from sales_flat_order_status_history where parent_id='".$orderId."'";
|
21 |
-
$result = $read->fetchAll($sql);
|
22 |
-
foreach($result as $k=>$value){
|
23 |
-
if(empty($value['comment'])){
|
24 |
-
unset($result[$k]);
|
25 |
-
}else{
|
26 |
-
$result[$k]['Date'] = !empty($result[$k]['created_at'])?$result[$k]['created_at']:'';
|
27 |
-
$result[$k]['StatusDescription'] = !empty($result[$k]['comment'])?$result[$k]['comment']:'';
|
28 |
-
$result[$k]['Details'] = '';
|
29 |
-
unset($result[$k]['created_at'],$result[$k]['comment']);
|
30 |
-
}
|
31 |
-
}
|
32 |
-
|
33 |
-
$comment = !empty($result)?json_encode($result):'';
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
?>
|
38 |
<?php endforeach; ?>
|
39 |
-
|
40 |
-
<div class="popuout"><iframe id="iframepage" name="iframepage" src='<?=$href?>' scrolling="no" frameborder="0" ></iframe></div>
|
41 |
|
42 |
<?php elseif($model): ?>
|
43 |
<?php
|
44 |
$number = $model->getCode();
|
45 |
$carrierCode = $model->getCarrierCode();
|
46 |
$orderId = $model->getOrderId();
|
47 |
-
$read = Mage::getSingleton("core/resource")->getConnection('core_read');
|
48 |
-
$sql = "select comment,created_at from sales_flat_order_status_history where parent_id='".$orderId."'";
|
49 |
-
$result = $read->fetchAll($sql);
|
50 |
-
foreach($result as $k=>$value){
|
51 |
-
if(empty($value['comment'])){
|
52 |
-
unset($result[$k]);
|
53 |
-
}else{
|
54 |
-
$result[$k]['Date'] = !empty($result[$k]['created_at'])?$result[$k]['created_at']:'';
|
55 |
-
$result[$k]['StatusDescription'] = !empty($result[$k]['comment'])?$result[$k]['comment']:'';
|
56 |
-
$result[$k]['Details'] = '';
|
57 |
-
unset($result[$k]['created_at'],$result[$k]['comment']);
|
58 |
-
}
|
59 |
-
}
|
60 |
-
|
61 |
-
$comment = !empty($result)?json_encode($result):'';
|
62 |
?>
|
63 |
-
|
64 |
-
<?php $href = "//track.trackingmore.com/magento.php?comment=".$comment."&storekey=".$key."&express=".$carrierCode."&tracknumber=".$number?>
|
65 |
-
|
66 |
-
<div class="popuout"><iframe id="iframepage" name="iframepage" src='<?=$href?>' scrolling="no" frameborder="0" ></iframe></div>
|
67 |
<?php endif; ?>
|
68 |
<div class="clearfix"></div>
|
69 |
<?php if (Mage::getStoreConfig('tr_section_setttings/crosssell/cross_sell_page') && !empty($orderId)){
|
3 |
<button class="button" onclick="window.close(); window.opener.focus();"><span><span><?php echo $this->__('Close Window') ?></span></span></button>
|
4 |
</div>
|
5 |
<br>
|
|
|
6 |
<?php $models = Mage::registry('models'); ?>
|
7 |
<?php $model = Mage::registry('model'); ?>
|
8 |
<?php $key = Mage::getStoreConfig('tr_section_setttings/settings/api_key'); ?>
|
9 |
<?php if ($models) : ?>
|
10 |
<?php foreach ($models as $trackModel) : ?>
|
11 |
|
12 |
+
<?php
|
13 |
$numbers[] = $trackModel->getCode();
|
14 |
$carrierCodes[] = $trackModel->getCarrierCode();
|
15 |
$orderId = $trackModel->getOrderId();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
?>
|
17 |
<?php endforeach; ?>
|
18 |
+
<div class="popuout"><iframe id="iframepage" name="iframepage" src="//track.trackingmore.com/magento.php?storekey=<?=$key?>&express=<?php echo implode(',',$carrierCodes); ?>&tracknumber=<?php echo implode(',',$numbers); ?>" scrolling="no" frameborder="0" ></iframe></div>
|
|
|
19 |
|
20 |
<?php elseif($model): ?>
|
21 |
<?php
|
22 |
$number = $model->getCode();
|
23 |
$carrierCode = $model->getCarrierCode();
|
24 |
$orderId = $model->getOrderId();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
?>
|
26 |
+
<div class="popuout"><iframe id="iframepage" name="iframepage" src="//track.trackingmore.com/magento.php?storekey=<?=$key?>&express=<?php echo $carrierCode; ?>&tracknumber=<?php echo $number; ?>" scrolling="no" frameborder="0" ></iframe></div>
|
|
|
|
|
|
|
27 |
<?php endif; ?>
|
28 |
<div class="clearfix"></div>
|
29 |
<?php if (Mage::getStoreConfig('tr_section_setttings/crosssell/cross_sell_page') && !empty($orderId)){
|
package.xml
CHANGED
@@ -1,75 +1,74 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>trackingmore_detrack</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>real-time
|
10 |
-
<description>1.In site shipment real-time
|
11 |
-
|
12 |
-
2.Notify customers when in transit, out for delivery, delivered or exceptions (Free)<br>
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
1) Customers can have real-time access to In site
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
1) With our solution you can automate cross-selling while the package is on the way, automatically inform your customer with shipment delivery and increase your revenue.<br>
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
<notes>
|
68 |
-
</notes>
|
69 |
<authors><author><name>Charles</name><user>tracking_more</user><email>service@trackingmore.com</email></author></authors>
|
70 |
-
<date>2017-
|
71 |
-
<time>
|
72 |
-
<contents><target name="magecommunity"><dir name="Trackingmore"><dir name="Detrack"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Shipment"><dir name="Create"><file name="Tracking.php" hash="6dbfdf7442bad3c773dddea75d2035dc"/></dir><dir name="View"><file name="Tracking.php" hash="5f6fd2adecbf5be54a185025edcd54a3"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Carrier.php" hash="92b03762d5b9f3bd602347b816fced67"/></dir></dir></dir></dir></dir><file name="Crosssell.php" hash="4bdb95ee476b37ba9b2a0109e57ddf9a"/><file name="Index.php" hash="cf9ecc08b839cd14b9987291c9907f1e"/></dir><dir name="Helper"><file name="Data.php" hash="a165a1e197aa2cd3a116d6fdcb789845"/></dir><dir name="Model"><file name="Carrier.php" hash="3fb8829e1f07f7e583d3af4a860f9036"/><file name="EnableNotifications.php" hash="74ccdbab958b8ef54531a5827f6c2d41"/><file name="EnableTracking.php" hash="da74009309d8780c51239443261a132e"/><file name="Observer.php" hash="ca23304d194cbd0294a2e0bcbaa361ba"/><dir name="Order"><file name="Shipment.php" hash="729dadc50d1feb0ad2df0f1f9a8024ab"/></dir><dir name="Resource"><dir name="Carrier"><file name="Collection.php" hash="0a61ff46b71c7e9356e3e6fe2db54770"/></dir><file name="Carrier.php" hash="96cb22523f77301a01131b8ec4bdee11"/><dir name="Track"><file name="Collection.php" hash="38945e5ea9a5260ba4cb1c837be6d860"/></dir><file name="Track.php" hash="f8842f3e2946bf974f89e648d0b20a23"/></dir><file name="Track.php" hash="e465d55e2b86e8494b7f899b20b12795"/><file name="Translate.php" hash="087c4160894b31e9e8bc415259e44601"/></dir><dir name="controllers"><file name="IndexController.php" hash="daef7dc507a587047d96cd957cc9bc3e"/></dir><dir name="etc"><file name="adminhtml.xml" hash="6ea995801961bf46ea3f427d345bf156"/><file name="api.xml" hash="543598910a98371b4dacbcaff6ab8af2"/><file name="config.xml" hash="
|
73 |
<compatible/>
|
74 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
75 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>trackingmore_detrack</name>
|
4 |
+
<version>1.0.9</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>real-time track orders &amp; cross-selling solution. Support tracking of UPS, FedEx, USPS &amp; 400+ carriers. &#xD;</summary>
|
10 |
+
<description>1.In site shipment real-time tracking and display all shipments &lt;a href="//my.trackingmore.com"&gt;in one place&lt;/a&gt; - UPS, DHL,USPS, Fedex &amp; 100+ couriers (Free)&lt;br&gt;&#xD;
|
11 |
+
&#xD;
|
12 |
+
2.Notify customers when in transit, out for delivery, delivered or exceptions (Free)&lt;br&gt;&#xD;
|
13 |
+
&#xD;
|
14 |
+
3. Cross sale possibility on shipment tracking page (Free)&lt;br&gt;&#xD;
|
15 |
+
&#xD;
|
16 |
+
&#xD;
|
17 |
+
&#xD;
|
18 |
+
&lt;h2&gt;&#x2605; real-time track all shipments in one place .&lt;/h2&gt;&#xD;
|
19 |
+
&#xD;
|
20 |
+
1) Customers can have real-time access to In site track orders and shipments of their products&lt;br&gt;&#xD;
|
21 |
+
&#xD;
|
22 |
+
2) Display tracking data of one or multiple stores&lt;a href="//my.trackingmore.com"&gt; in one place&lt;/a&gt; &lt;br&gt;&#xD;
|
23 |
+
&#xD;
|
24 |
+
3) Auto detect the package Origin/Destination &lt;br&gt;&#xD;
|
25 |
+
&#xD;
|
26 |
+
4) Provides translation feature&lt;br&gt;&#xD;
|
27 |
+
&#xD;
|
28 |
+
5) Track 100+ Carriers for FREE!&lt;br&gt;&lt;br&gt;&#xD;
|
29 |
+
&#xD;
|
30 |
+
&#xD;
|
31 |
+
&#xD;
|
32 |
+
&lt;h2&gt; &#x2605; Email notifications on shipment status change&lt;/h2&gt;&#xD;
|
33 |
+
&#xD;
|
34 |
+
Trackingmore will send out delivery notifications to customers or yourself. Your choice of notification triggers - In transit, Pick Up, Delivered, Expired or Exceptions. Use your own email to send out notifications, and customize messages to add store logo, URL, a direct tracking link to get more returned customers !&lt;br&gt;&#xD;
|
35 |
+
&#xD;
|
36 |
+
&#xD;
|
37 |
+
&#xD;
|
38 |
+
&lt;h2&gt; &#x2605; cross-selling solution&lt;/h2&gt;&#xD;
|
39 |
+
&#xD;
|
40 |
+
1) With our solution you can automate cross-selling while the package is on the way, automatically inform your customer with shipment delivery and increase your revenue.&lt;br&gt;&#xD;
|
41 |
+
&#xD;
|
42 |
+
2) By bringing the tracking process over to your own website, you can:&lt;br&gt;&#xD;
|
43 |
+
&#xD;
|
44 |
+
- Up/Cross sell add-ons to go with their recent purchase.&lt;br&gt;&#xD;
|
45 |
+
&#xD;
|
46 |
+
&#x2013; Introduce them to new products.&lt;br&gt;&lt;br&gt;&#xD;
|
47 |
+
&#xD;
|
48 |
+
&#xD;
|
49 |
+
&#xD;
|
50 |
+
&#xD;
|
51 |
+
&#xD;
|
52 |
+
&#xD;
|
53 |
+
&#xD;
|
54 |
+
&#xD;
|
55 |
+
&#xD;
|
56 |
+
&#xD;
|
57 |
+
&#xD;
|
58 |
+
&lt;h2&gt;Support Tracking of 100+ Couriers&lt;h2&gt;&#xD;
|
59 |
+
&#xD;
|
60 |
+
&#xD;
|
61 |
+
&#xD;
|
62 |
+
&#x2022; DHL &#x2022; UPS &#x2022; Fedex &#x2022; TNT &#x2022; China post &#x2022; China EMS &#x2022; Singapore Post &#x2022; Singapore Speedpost &#x2022; Hong Kong Post &#x2022; Swiss Post &#x2022; USPS &#x2022; United Kingdom Royal Mail &#x2022; Parcel Force &#x2022; Netherlands Post - PostNL &#x2022; Australia post &#x2022; Australia EMS &#x2022; Canada post &#x2022; New Zealand Post &#x2022; Belgium post &#x2022; Brazil Correios &#x2022; Russian Post &#x2022; Sweden Posten &#x2022; French Post -La Poste &#x2022; France EMS - Chronopost &#x2022; Poste Italiane &#x2022; India post &#x2022; Magyar Posta &#x2022; An Post &#x2022; Mexico post &#x2022; Posten Norge &#x2022; Portugal post - CTT &#x2022; South African Post Office &#x2022; Spain post &#x2022; Swaziland post &#x2022; Switzerland post &#x2022; Taiwan post &#x2022; Ukraine post &#x2022; Ukraine EMS &#x2022; Emirates Post &#x2022; Uruguay post &#x2022; Japan post &#x2022; Po&#x219;ta Rom&#xE2;n&#x103; &#x2022; Korea Post &#x2022; ELTA Hellenic Post &#x2022; Deutsche Post &#x2022; &#x10C;esk&#xE1; Po&#x161;ta &#x2022; Correos Chile &#x2022; &#xC5;land Post &#x2022; Afghan Post &#x2022; Albania post &#x2022; Angola post &#x2022; Anguilla post &#x2022; Antilles post &#x2022; Argentina post &#x2022; Armenia post &#x2022; Aruba post &#x2022; Ascension Post &#x2022; Austrian Post &#x2022; Azerbaijan post &#x2022; Bahamas post &#x2022; Bahrain post &#x2022; Bangladesh post &#x2022; Bangladesh EMS &#x2022; Barbados post &#x2022; Belarus post &#x2022; Belize post &#x2022; Benin post &#x2022; Bermuda post &#x2022; Bhutan post &#x2022; Bolivia post &#x2022; Bosnia and Herzegovina post &#x2022; Botswana post &#x2022; Brunei post &#x2022; Bulgaria post &#x2022; Burkina Faso post &#x2022; Burundi post &#x2022; Cambodia post &#x2022; Cameroon post &#x2022; Correios Cabo Verde &#x2022; Cayman post &#x2022; Colombia post &#x2022; Costa Rica post &#x2022; Croatia post &#x2022; Cyprus post &#x2022; Denmark post &#x2022; Djibouti post &#x2022; Dominica post &#x2022; Dominican post &#x2022; Ecuador Post &#x2022; Egypt post &#x2022; El Salvador post &#x2022; Eritrea post &#x2022; Estonia post &#x2022; Ethiopia post &#x2022; Faroe Islands post &#x2022; Fiji post &#x2022; Finland post - Posti &#x2022; Georgia post &#x2022; Ghana post &#x2022; Gibraltar post &#x2022; Greenland post &#x2022; Grenada post &#x2022; Guatemala post &#x2022; Guernsey Post &#x2022; Guyana post &#x2022; Haiti post &#x2022; Honduras post &#x2022; Iceland post &#x2022; Indonesia post &#x2022; Iran post &#x2022; Israel post &#x2022; Ivory Coast post &#x2022; Ivory Coast EMS &#x2022; Jamaica post &#x2022; Jordan post &#x2022; Kazakhstan post &#x2022; Kenya post &#x2022; Kyrgyzstan post &#x2022; Latvia post &#x2022; Lebanon post &#x2022; Lesotho post &#x2022; Libya post &#x2022; Liechtenstein post &#x2022; Lithuania post &#x2022; Luxembourg post &#x2022; Macao Post &#x2022; Macedonia post &#x2022; Malawi post &#x2022; Malaysia post &#x2022; Maldives post &#x2022; Mali post &#x2022; Malta post &#x2022; Mauritania post &#x2022; Mauritius post &#x2022; Moldova post &#x2022; Monaco Post &#x2022; Monaco EMS &#x2022; Mongol Post &#x2022; Montenegro post &#x2022; Maroc Poste &#x2022; Mozambique post &#x2022; Myanmar post &#x2022; Namibia post &#x2022; Nepal post &#x2022; New Caledonia post &#x2022; Nicaragua post &#x2022; Niger post &#x2022; Nigeria post &#x2022; Oman post &#x2022; Pakistan post &#x2022; Palau post &#x2022; Panama post &#x2022; Papua New Guinea post &#x2022; Paraguay post &#x2022; Peru post &#x2022; Philippines post &#x2022; Poland post &#x2022; Qatar post &#x2022; Rwanda post &#x2022; Saint Lucia post &#x2022; SVG Post &#x2022; Samoa post &#x2022; San Marino post &#x2022; Saudi Post &#x2022; Senegal post &#x2022; Serbia post &#x2022; Seychelles post &#x2022; Slovakia post &#x2022; Slovenia post &#x2022; Solomon Post &#x2022; Sri Lanka post &#x2022; Suriname post &#x2022; Syrian post &#x2022; Tanzania post &#x2022; Thailand post &#x2022; Togo post &#x2022; Tonga post &#x2022; Trinidad Tobago Post &#x2022; Tunisia post &#x2022; Turkey post &#x2022; Turkmenistan post &#x2022; Uganda post &#x2022; Uzbekistan post &#x2022; Uzbekistan EMS &#x2022; Vanuatu post &#x2022; Vatican City post &#x2022; Venezuela post &#x2022; Vietnam post &#x2022; Western Sahara post &#x2022; Yemen post &#x2022; Zambia post &#x2022; Zimbabwe post&lt;br&gt;&lt;br&gt;&#xD;
|
63 |
+
&#xD;
|
64 |
+
&#xD;
|
65 |
+
&#xD;
|
66 |
+
If you did not find the carrier you are using, email us &lt;a href="mailto:service@trackingmore.com"&gt;service@trackingmore.com&lt;/a&gt; and we will take care of it.</description>
|
67 |
+
<notes>In this new edition, when you creat an invoice and add a new tracking number, you can select courier supported by Trackingmore extension, not just the default courier.</notes>
|
|
|
68 |
<authors><author><name>Charles</name><user>tracking_more</user><email>service@trackingmore.com</email></author></authors>
|
69 |
+
<date>2017-06-24</date>
|
70 |
+
<time>10:24:17</time>
|
71 |
+
<contents><target name="magecommunity"><dir name="Trackingmore"><dir name="Detrack"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Invoice"><dir name="Create"><file name="Tracking.php" hash="d8e87e6bbd0deef4caa6c26cbc17968e"/></dir></dir><dir name="Shipment"><dir name="Create"><file name="Tracking.php" hash="6dbfdf7442bad3c773dddea75d2035dc"/></dir><dir name="View"><file name="Tracking.php" hash="5f6fd2adecbf5be54a185025edcd54a3"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Carrier.php" hash="92b03762d5b9f3bd602347b816fced67"/></dir></dir></dir></dir></dir><file name="Crosssell.php" hash="4bdb95ee476b37ba9b2a0109e57ddf9a"/><file name="Index.php" hash="cf9ecc08b839cd14b9987291c9907f1e"/></dir><dir name="Helper"><file name="Data.php" hash="a165a1e197aa2cd3a116d6fdcb789845"/></dir><dir name="Model"><file name="Carrier.php" hash="3fb8829e1f07f7e583d3af4a860f9036"/><file name="EnableNotifications.php" hash="74ccdbab958b8ef54531a5827f6c2d41"/><file name="EnableTracking.php" hash="da74009309d8780c51239443261a132e"/><file name="Observer.php" hash="ca23304d194cbd0294a2e0bcbaa361ba"/><dir name="Order"><file name="Shipment.php" hash="729dadc50d1feb0ad2df0f1f9a8024ab"/></dir><dir name="Resource"><dir name="Carrier"><file name="Collection.php" hash="0a61ff46b71c7e9356e3e6fe2db54770"/></dir><file name="Carrier.php" hash="96cb22523f77301a01131b8ec4bdee11"/><dir name="Track"><file name="Collection.php" hash="38945e5ea9a5260ba4cb1c837be6d860"/></dir><file name="Track.php" hash="f8842f3e2946bf974f89e648d0b20a23"/></dir><file name="Track.php" hash="e465d55e2b86e8494b7f899b20b12795"/><file name="Translate.php" hash="087c4160894b31e9e8bc415259e44601"/></dir><dir name="controllers"><file name="IndexController.php" hash="daef7dc507a587047d96cd957cc9bc3e"/></dir><dir name="etc"><file name="adminhtml.xml" hash="6ea995801961bf46ea3f427d345bf156"/><file name="api.xml" hash="543598910a98371b4dacbcaff6ab8af2"/><file name="config.xml" hash="07421cd484df45b0330e8fbeecefea21"/><file name="system.xml" hash="7ca5f82538622eceef0b00a72253bcbf"/></dir><dir name="sql"><dir name="detrack_setup"><file name="mysql4-install-1.0.5.php" hash="d28a3cf8ca93731dd8f515876fcdcb64"/><file name="mysql4-upgrade-1.0.7-1.0.9.php" hash="04e9efc84ad102faf3194e1a5c718e93"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="detrack.xml" hash="331aecb00dc4b29b48aa7d024f2ac8a0"/></dir><dir name="template"><dir name="detrack"><file name="crosssell.phtml" hash="5f5abe320409845cf06a1aa20286ea52"/><file name="pagepopup.phtml" hash="e8adf37065860b3a43007d952d4d5bae"/><file name="popup.phtml" hash="4c7956b96fb3dd6635ae5a7ed2de40ff"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Trackingmore_Detrack.xml" hash="650abf45d5fea060cb8403b740cd3eeb"/></dir></target><target name="mage"><dir name="js"><dir name="detrack"><file name="iframeResizer.min.js" hash="3a2d3465a2a22022b9efa891618554c6"/><file name="jquery.min.js" hash="8fc25e27d42774aeae6edbc0a18b72aa"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="detrack.css" hash="b0ac9386efa2733623f09478481c7b6b"/></dir></dir></dir></dir></target></contents>
|
72 |
<compatible/>
|
73 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
74 |
</package>
|