TNT_Express_Fr - Version 3.0.13

Version Notes

Extension officielle vous permettant de proposer les services TNT à vos clients.

- compatibilité Magento 1.8
- optimisation des alertes lors de l'expédition
- correction arrondi lors du calcul des FDP gratuits
- interdiction des poids vides
- ajout user_agent pour connexion au WS

Download this release

Release Info

Developer Infostrates
Extension TNT_Express_Fr
Version 3.0.13
Comparing to
See all releases


Code changes from version 3.0.10 to 3.0.13

app/code/community/Infostrates/Tnt/Model/Shipping/Carrier/Tnt.php CHANGED
@@ -21,10 +21,10 @@ implements Mage_Shipping_Model_Carrier_Interface
21
  //$timestamp = Mage::getModel('core/date')->timestamp(time());
22
 
23
  //permet de passer outre les jours fériés en imposant le 10/01/xx à la faisabilité TNT
24
- $currentTimestamp = Mage::getModel('core/date')->timestamp(time());
25
  $currentYear = date('Y', $currentTimestamp);
26
 
27
- $anyDate = $currentYear.'-01-10 00:00:00';
28
  $dateTimestamp = Mage::getModel('core/date')->timestamp(strtotime($anyDate));
29
 
30
  if( $currentTimestamp < $dateTimestamp ) {
@@ -140,9 +140,20 @@ implements Mage_Shipping_Model_Carrier_Interface
140
 
141
  $authvars = new SoapVar($authheader, XSD_ANYXML);
142
  $header = new SoapHeader("http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "Security", $authvars);
143
-
144
- $soap = new SoapClient($url, array('trace'=>1));
145
- $soap->__setSOAPHeaders(array($header));
 
 
 
 
 
 
 
 
 
 
 
146
 
147
  try {
148
  if($fonction == 'feasibility') {
@@ -209,11 +220,11 @@ implements Mage_Shipping_Model_Carrier_Interface
209
  $rate = Mage::getModel('shipping/rate_result_method');
210
 
211
  $totals = Mage::getSingleton('checkout/session')->getQuote()->getTotals(); //Total object
212
- $totalCart = round($totals["subtotal"]->getValue()); //Subtotal value
213
 
214
  if(isset($totals['discount']) && $totals['discount']->getValue()) {
215
  $totalCart = $totalCart + $totals['discount']->getValue();
216
- }
217
 
218
  $items = Mage::getSingleton('checkout/session')->getQuote()->getAllItems();
219
  $shipping_weight = 0;
@@ -221,7 +232,7 @@ implements Mage_Shipping_Model_Carrier_Interface
221
 
222
  foreach($items as $item) {
223
  if( $item->getProductType() == 'configurable' ) {
224
- } else {
225
  //check l'article le plus lourd
226
  if( $item->getWeight() > $heaviest_item) {
227
  $heaviest_item = $item->getWeight();
@@ -268,23 +279,35 @@ implements Mage_Shipping_Model_Carrier_Interface
268
 
269
  if( $this->getConfigData($m['serviceCode'].'_free') != 0 && $this->getConfigData($m['serviceCode'].'_free') <= $totalCart ) {
270
  $tarif = '0';
271
- } else {
272
- $table = explode(",", $this->getConfigData($m['serviceCode'].'_amount'));
273
 
274
  $tarifTrouve=true;
275
- //si le commercant choisi un forfait plutot qu'une table de correspondance poids:prix
276
  if(count($table) == 1) {
277
  $tarif = $table[0];
278
  } else {
279
  for ($i = 0; $i < sizeof($table); $i++) {
280
  $tmp = explode(":", $table[$i]);
281
 
282
- if ($shipping_weight > $tmp[0])
283
- continue;
284
- if (($shipping_weight <= $tmp[0]) AND $tarifTrouve) {
285
- $tarif=$tmp[1];
286
- $tarifTrouve=false;
287
- }
 
 
 
 
 
 
 
 
 
 
 
 
288
  }
289
  }
290
  }
21
  //$timestamp = Mage::getModel('core/date')->timestamp(time());
22
 
23
  //permet de passer outre les jours fériés en imposant le 10/01/xx à la faisabilité TNT
24
+ $currentTimestamp = Mage::getModel('core/date')->timestamp(time());
25
  $currentYear = date('Y', $currentTimestamp);
26
 
27
+ $anyDate = $currentYear.'-01-10 00:00:00';
28
  $dateTimestamp = Mage::getModel('core/date')->timestamp(strtotime($anyDate));
29
 
30
  if( $currentTimestamp < $dateTimestamp ) {
140
 
141
  $authvars = new SoapVar($authheader, XSD_ANYXML);
142
  $header = new SoapHeader("http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "Security", $authvars);
143
+
144
+ //$soap = new SoapClient($url, array('trace'=>1));
145
+ $soap = new SoapClient($url, array('trace'=> 1,
146
+ 'stream_context'=>stream_context_create(array(
147
+ 'http'=> array(
148
+ 'user_agent' => 'PHP/SOAP',
149
+ 'accept' => 'application/xml'
150
+ )
151
+ ))
152
+ )
153
+ );
154
+
155
+
156
+ $soap->__setSOAPHeaders(array($header));
157
 
158
  try {
159
  if($fonction == 'feasibility') {
220
  $rate = Mage::getModel('shipping/rate_result_method');
221
 
222
  $totals = Mage::getSingleton('checkout/session')->getQuote()->getTotals(); //Total object
223
+ $totalCart = $totals["subtotal"]->getValue(); //Subtotal value
224
 
225
  if(isset($totals['discount']) && $totals['discount']->getValue()) {
226
  $totalCart = $totalCart + $totals['discount']->getValue();
227
+ }
228
 
229
  $items = Mage::getSingleton('checkout/session')->getQuote()->getAllItems();
230
  $shipping_weight = 0;
232
 
233
  foreach($items as $item) {
234
  if( $item->getProductType() == 'configurable' ) {
235
+ } else {
236
  //check l'article le plus lourd
237
  if( $item->getWeight() > $heaviest_item) {
238
  $heaviest_item = $item->getWeight();
279
 
280
  if( $this->getConfigData($m['serviceCode'].'_free') != 0 && $this->getConfigData($m['serviceCode'].'_free') <= $totalCart ) {
281
  $tarif = '0';
282
+ } else {
283
+ $table = explode(",", $this->getConfigData($m['serviceCode'].'_amount'));
284
 
285
  $tarifTrouve=true;
286
+ //si le commercant choisi un forfait plutot qu'une table de correspondance poids:prix ou panier:prix
287
  if(count($table) == 1) {
288
  $tarif = $table[0];
289
  } else {
290
  for ($i = 0; $i < sizeof($table); $i++) {
291
  $tmp = explode(":", $table[$i]);
292
 
293
+ //si le commercant choisi une table de correspondance panier:prix
294
+ if( preg_match("/€/", $tmp[0]) ) {
295
+ $prix = str_replace('€', '', $tmp[0]);
296
+
297
+ if ($totalCart > $prix)
298
+ continue;
299
+ if (($totalCart <= $prix) AND $tarifTrouve) {
300
+ $tarif=$tmp[1];
301
+ $tarifTrouve=false;
302
+ }
303
+ } else {
304
+ if ($shipping_weight > $tmp[0])
305
+ continue;
306
+ if (($shipping_weight <= $tmp[0]) AND $tarifTrouve) {
307
+ $tarif=$tmp[1];
308
+ $tarifTrouve=false;
309
+ }
310
+ }
311
  }
312
  }
313
  }
app/code/community/Infostrates/Tnt/controllers/TntController.php CHANGED
@@ -102,7 +102,7 @@ class Infostrates_Tnt_TntController extends Mage_Core_Controller_Front_Action {
102
  $address->setCity ( urldecode ( $shipping ['city'] ) );
103
  $address->setCompany ( trim(urldecode ( $shipping ['description'] )) );
104
  $address->setTntInfosComp ( trim(urldecode ( $shipping ['info_comp'] )) );
105
- $address->save ();
106
  $current->setShippingAddress ( $address );
107
  $current->save ();
108
  }
102
  $address->setCity ( urldecode ( $shipping ['city'] ) );
103
  $address->setCompany ( trim(urldecode ( $shipping ['description'] )) );
104
  $address->setTntInfosComp ( trim(urldecode ( $shipping ['info_comp'] )) );
105
+ $address->save ();
106
  $current->setShippingAddress ( $address );
107
  $current->save ();
108
  }
app/code/community/Infostrates/Tnt/etc/config.xml CHANGED
@@ -3,7 +3,7 @@
3
  <config>
4
  <modules>
5
  <Infostrates_Tnt>
6
- <version>3.0.10</version>
7
  <depends>
8
  <Mage_Adminhtml />
9
  <Mage_Shipping />
3
  <config>
4
  <modules>
5
  <Infostrates_Tnt>
6
+ <version>3.0.13</version>
7
  <depends>
8
  <Mage_Adminhtml />
9
  <Mage_Shipping />
app/code/community/Infostrates/Tnt/etc/system.xml CHANGED
@@ -139,7 +139,7 @@
139
  <show_in_website>1</show_in_website>
140
  <show_in_store>0</show_in_store>
141
  <validate>required-entry</validate>
142
- <comment>Soit un montant unique ex : 15.99. Soit au format poids/prix ex : 10:23.90,20:52.30,1000:99</comment>
143
  </JZ_amount>
144
  <JZ_free>
145
  <label>Minimum d'achat pour TNT 24h à Domicile offert</label>
@@ -159,7 +159,7 @@
159
  <show_in_website>1</show_in_website>
160
  <show_in_store>0</show_in_store>
161
  <validate>required-entry</validate>
162
- <comment>Soit un montant unique ex : 15.99. Soit au format poids/prix ex : 10:23.90,20:52.30,1000:99</comment>
163
  </J_amount>
164
  <J_free>
165
  <label>Minimum d'achat pour TNT 24h Entreprise offert</label>
@@ -179,7 +179,7 @@
179
  <show_in_website>1</show_in_website>
180
  <show_in_store>0</show_in_store>
181
  <validate>required-entry</validate>
182
- <comment>Soit un montant unique ex : 15.99. Soit au format poids/prix ex : 10:23.90,20:52.30,1000:99</comment>
183
  </JD_amount>
184
  <JD_free>
185
  <label>Minimum d'achat pour TNT 24h en Relais Colis® offert</label>
139
  <show_in_website>1</show_in_website>
140
  <show_in_store>0</show_in_store>
141
  <validate>required-entry</validate>
142
+ <comment>Soit un montant unique ex : 15.99. Soit au format poids panier/prix ex : 10:23.90,20:52.30,1000:99. Soit au format montant panier/prix ex : 20€:5.90,40€:9.90,150€:15.90</comment>
143
  </JZ_amount>
144
  <JZ_free>
145
  <label>Minimum d'achat pour TNT 24h à Domicile offert</label>
159
  <show_in_website>1</show_in_website>
160
  <show_in_store>0</show_in_store>
161
  <validate>required-entry</validate>
162
+ <comment>Soit un montant unique ex : 15.99. Soit au format poids panier/prix ex : 10:23.90,20:52.30,1000:99. Soit au format montant panier/prix ex : 20€:5.90,40€:9.90,150€:15.90</comment>
163
  </J_amount>
164
  <J_free>
165
  <label>Minimum d'achat pour TNT 24h Entreprise offert</label>
179
  <show_in_website>1</show_in_website>
180
  <show_in_store>0</show_in_store>
181
  <validate>required-entry</validate>
182
+ <comment>Soit un montant unique ex : 15.99. Soit au format poids panier/prix ex : 10:23.90,20:52.30,1000:99. Soit au format montant panier/prix ex : 20€:5.90,40€:9.90,150€:15.90</comment>
183
  </JD_amount>
184
  <JD_free>
185
  <label>Minimum d'achat pour TNT 24h en Relais Colis® offert</label>
app/design/adminhtml/default/tnt/template/sales/order/shipment/create/form.phtml CHANGED
@@ -69,7 +69,7 @@
69
  <div id="createColis">
70
  <?php for($c=1; $c<=$nbColis; $c++) {
71
  //if( $c == $nbColis ) { $poidsColis = $reste; } else { $poidsColis = $poidsMaxColis; $reste-= $poidsColis; } ?>
72
- Poids colis <?php echo $c; ?> : <input type="text" name="colis<?php echo $c; ?>" value="<?php //echo $poidsColis; ?>" class="colis" /><br />
73
  <?php } ?>
74
  </div>
75
  <?php if( $entreprise == '1' ) { ?>
@@ -89,8 +89,8 @@
89
  singleClick : true
90
  });
91
 
92
- function checkNbColis() {
93
- if($("nb_colis").value > 4) {
94
  alert('Attention, la livraison de plus de 4 colis engendre un coût supplémentaire.');
95
  }
96
  }
69
  <div id="createColis">
70
  <?php for($c=1; $c<=$nbColis; $c++) {
71
  //if( $c == $nbColis ) { $poidsColis = $reste; } else { $poidsColis = $poidsMaxColis; $reste-= $poidsColis; } ?>
72
+ Poids colis <?php echo $c; ?> : <input type="text" name="colis<?php echo $c; ?>" value="<?php if($nbColis==1) { echo $orderPoids; } ?>" class="colis" /><br />
73
  <?php } ?>
74
  </div>
75
  <?php if( $entreprise == '1' ) { ?>
89
  singleClick : true
90
  });
91
 
92
+ function checkNbColis() { //plus utile
93
+ if($("nb_colis").value > 99) {
94
  alert('Attention, la livraison de plus de 4 colis engendre un coût supplémentaire.');
95
  }
96
  }
app/design/adminhtml/default/tnt/template/sales/order/shipment/create/items.phtml CHANGED
@@ -127,17 +127,22 @@ function toggleCreateLabelCheckbox(){
127
  function submitShipment(btn){
128
  if( $('orderPoids') ) {
129
  var checkPoids = '0';
 
130
  var colis = $$('.colis').each(function(e) {
131
  checkPoids = parseFloat(checkPoids)+parseFloat(e.value);
132
- if( parseInt(e.value) > parseInt($('maxPoids').value) ) {
133
- alert( "Le poids de chaque colis ne doit pas dépasser "+$('maxPoids').value+"Kg" );
134
- return false;
135
  }
136
  });
 
 
 
 
 
137
 
138
- if( checkPoids == '0' || checkPoids != $('orderPoids').value ) {
139
- if( isNaN(checkPoids) ) { checkPoids = '0'; }
140
- if(!confirm("La somme de vos colis n'est pas correcte ("+checkPoids+"Kg au lieu de "+$('orderPoids').value+"Kg).")) {
141
  return false;
142
  }
143
  }
127
  function submitShipment(btn){
128
  if( $('orderPoids') ) {
129
  var checkPoids = '0';
130
+ var mess = '';
131
  var colis = $$('.colis').each(function(e) {
132
  checkPoids = parseFloat(checkPoids)+parseFloat(e.value);
133
+ if( e.value == '' ||parseFloat(e.value) == 0 || parseFloat(e.value) > parseInt($('maxPoids').value) ) {
134
+ mess = "Le poids de chaque colis doit être compris entre 0.1Kg et "+$('maxPoids').value+"Kg";
 
135
  }
136
  });
137
+ if( mess != '' ) {
138
+ alert( mess );
139
+ return false;
140
+ }
141
+
142
 
143
+ if( checkPoids == '0.1' || checkPoids != $('orderPoids').value ) {
144
+ if( isNaN(checkPoids) ) { checkPoids = '0.1'; }
145
+ if(!confirm("La somme de vos colis n'est pas correcte ("+checkPoids+"Kg au lieu de "+$('orderPoids').value+"Kg).\n\nCliquer sur 'Annuler' pour revenir à l'écran précédent\nCliquer sur 'OK' pour confirmer vos valeurs")) {
146
  return false;
147
  }
148
  }
app/design/frontend/default/default/template/tnt/sales/order/info.phtml CHANGED
@@ -29,7 +29,6 @@
29
 
30
  <?php //commande non TNT
31
  if( preg_match('/^tnt_/',$_order->getShippingMethod()) == 0 ) { ?>
32
-
33
 
34
  <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
35
  <div class="page-title title-buttons">
29
 
30
  <?php //commande non TNT
31
  if( preg_match('/^tnt_/',$_order->getShippingMethod()) == 0 ) { ?>
 
32
 
33
  <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
34
  <div class="page-title title-buttons">
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>TNT_Express_Fr</name>
4
- <version>3.0.10</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
@@ -10,13 +10,15 @@
10
  <description>Extension officielle vous permettant de proposer les services TNT &#xE0; vos clients.</description>
11
  <notes>Extension officielle vous permettant de proposer les services TNT &#xE0; vos clients.&#xD;
12
  &#xD;
13
- - modification du dispatche manuel du poids des colis&#xD;
14
- - modification du + d'infos TNT 24 domicile&#xD;
15
- - suppression de l'image du calendar sp&#xE9;cifique - ajout de l'image calendar g&#xE9;n&#xE9;rique</notes>
 
 
16
  <authors><author><name>Infostrates</name><user>InfoDev</user><email>magento@infostrates.fr</email></author></authors>
17
- <date>2014-01-09</date>
18
- <time>16:06:26</time>
19
- <contents><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="tnt"><file name="jquery.superbox.css" hash="37f0e7a9f1df77385dd867fa9dadd60c"/><file name="tnt.css" hash="faf9c57cc23546009a0ef17bbec18f46"/><file name="tntB2CRelaisColis.css" hash="8588bc35d86524d2f4cdb26e7c39e337"/><file name="tntB2CSuiviColis.css" hash="b36325da4e3ca8dc4e819674a4e82166"/><file name="ui.dialog.css" hash="4f3c0afd97f9ccc5bcc31fe3f8fdec7f"/><file name="ui.tabs.css" hash="9a9fd1b8fef22474fcbf1917975acfbd"/></dir></dir><dir name="images"><dir name="tnt"><file name="24h_domicile.jpg" hash="4f3895df09982e1eb04a5a11360e88ec"/><file name="24h_entreprise.jpg" hash="eab57029f655d350d37047822c30b85a"/><file name="24h_relais.jpg" hash="1ab1dc90034ab68830c69070e45b5248"/><dir><dir name="relaisColis"><file name="24_relaiscolis.jpg" hash="70927a36854fefdee6da4811dead9e78"/><file name="5-puce-choix-gris2.gif" hash="f44619bac31b7e043bc74292b8dfe4d4"/><file name="_5-puce-choix-gris2.gif" hash="f96ef8fba6563b2235a8d09ffb4b7ae1"/><file name="_logo_24_chezmoi.jpg" hash="6c8a989da7d879fabe6441d06be1d490"/><file name="_logo_24_relaiscolis.jpg" hash="b306bc299490f9711c3e0406bbd8e4e8"/><file name="_logo_24h_chezmoi_RVB.gif" hash="ccd78b8af3cfb2b27d9ffea6c2b60201"/><file name="_logo_24h_relaiscolis_RVB.gif" hash="7711185412061132689da9e6f212c5a8"/><file name="_logos_24.jpg" hash="65a78581e9207eadcd5e9797032bdf4f"/><file name="_picto_localiser.png" hash="ba0a3fce978e167d96915bf06cf03c32"/><file name="bt-CodePostal-1.jpg" hash="1f7f61d1201fa69ef65bb2ce656b768f"/><file name="bt-CodePostal-2.jpg" hash="0bdf3314a4e098f8e1a2397c08dc5ff9"/><file name="bt-CodePostal.jpg" hash="c5bc1cbc689c7fd0949b4c903d347b7f"/><file name="bt-Continuer-1.jpg" hash="9b9e4090bc8fda9e4d2d798a65812928"/><file name="bt-Continuer-2.jpg" hash="5804403af6a183f097b39b903961bea2"/><file name="bt-Continuer.jpg" hash="534c8b990fbad574e47477ab9e7de70b"/><file name="bt-OK-1.jpg" hash="ce026dcdcdcc602dd328832a37a2decd"/><file name="bt-OK-2.jpg" hash="c7fc5c48be5a95b2afecbe0e5c1b5fda"/><file name="bt-OK.jpg" hash="9ed6a96f09935b5bb23b678b8cffec1a"/><file name="bt-Retour.gif" hash="7c9fbc4a1db1817d7067b38275e79be5"/><file name="close_icon_double.png" hash="ed52a65fb5a37b3ab1c9d738c86b8d39"/><file name="exception.gif" hash="14462eb5176873950105cb78cfd1c04b"/><file name="exception2.gif" hash="cae24d8d4eafdbc2419b4f9c654a3bcc"/><dir name="google"><file name="agenceTnt.png" hash="c9161d6c4ada4a5456bea12941ba0903"/><file name="red-pushpin-s.png" hash="7d9f46d93a22ed450fdfdb8fb9879315"/><file name="red-pushpin.png" hash="5238107f41902ba37131e0c5198f9ab4"/><file name="relaisColis.png" hash="15e24cbcc83f4e4c0d7e94e71c80368e"/><file name="relaisColis2.png" hash="4643153e81e18762f745e8827c82b252"/></dir><file name="lg_tnt.gif" hash="78bb3e001b1a6bc4bd616f032b81ace6"/><file name="livreur.gif" hash="49dd7ebf54141aec0d39cd97af1b3385"/><file name="logo-tnt-petit.jpg" hash="0e35a515b81d1753e31e7746669b92c5"/><file name="logo_24_chezmoi.jpg" hash="b5afafec026f93c6c04bbe9e005521be"/><file name="logo_24_relaiscolis.jpg" hash="259879aa1cf663479f74db1b62518e90"/><file name="logo_24h_chezmoi_RVB.gif" hash="b8ea43f3b62ae1db6f4562a6fed53647"/><file name="logo_24h_relaiscolis_RVB.gif" hash="3521b422871a2e054135f83bd979be98"/><file name="logos_24.jpg" hash="ae1b3561e501ec8ce536b66fff1e2372"/><file name="loupe.gif" hash="1c66ca841e102964ee7e70f574b13bb1"/><file name="notes.gif" hash="5f39e1129163dc549d59b8818432035c"/><file name="picto-delai.gif" hash="6f40c84eada13e0802de3d573b978023"/><file name="picto_localiser.jpg" hash="14c7373ef0a05236301a80657b94c429"/><file name="tnt_logo.gif" hash="5ebdea118496c59e473afbf6168c72b2"/><dir name="ui-dialog"><file name="217bc0_11x11_icon_arrows_leftright.gif" hash="a508197674479672df0cae36dc3e992b"/><file name="217bc0_11x11_icon_arrows_updown.gif" hash="2b164351ff902aa671d2162fe7ef80de"/><file name="217bc0_11x11_icon_close.gif" hash="aa11d350f6f257b30c51854c7457bdf7"/><file name="217bc0_11x11_icon_doc.gif" hash="6cd3d31f9de2072fe5cdc37697fa7047"/><file name="217bc0_11x11_icon_folder_closed.gif" hash="e1f6751b382b9f44c59793b9fd65b973"/><file name="217bc0_11x11_icon_folder_open.gif" hash="8c974aa27045cc6b2b4b18a502809af5"/><file name="217bc0_11x11_icon_minus.gif" hash="13b2ecea240c868c8a8886e085e41151"/><file name="217bc0_11x11_icon_plus.gif" hash="343c341f26245649be3af43962d3970c"/><file name="217bc0_7x7_arrow_down.gif" hash="8488267c8578c890eb9188964007eb42"/><file name="217bc0_7x7_arrow_left.gif" hash="30e3c1f097e6fec149583d21e9aaf721"/><file name="217bc0_7x7_arrow_right.gif" hash="3aff45eeae4f2f25625db2562ee64b4a"/><file name="217bc0_7x7_arrow_up.gif" hash="d7d60619ed69b64d3d6b61e78c6cf99f"/><file name="469bdd_11x11_icon_arrows_leftright.gif" hash="70f1a152ac20476191607b63e0129406"/><file name="469bdd_11x11_icon_arrows_updown.gif" hash="28debf817357b696699e709c010240e0"/><file name="469bdd_11x11_icon_doc.gif" hash="590aa4403d141186cc4430caefa644a2"/><file name="469bdd_11x11_icon_minus.gif" hash="715e3925135ef192149d1ec62763c9a8"/><file name="469bdd_11x11_icon_plus.gif" hash="a4aa61ec7cf9a274ac42224d0418d16d"/><file name="469bdd_11x11_icon_resize_se.gif" hash="d840dafe31b345b43dcd608983f4d2f2"/><file name="469bdd_7x7_arrow_down.gif" hash="794c5003bb6baa630c1664560293ed22"/><file name="469bdd_7x7_arrow_left.gif" hash="95f61faab2a3052985b81ba63b9e5143"/><file name="469bdd_7x7_arrow_right.gif" hash="363bb40ec764ff0ee8971e0e603614b4"/><file name="469bdd_7x7_arrow_up.gif" hash="e82fb46bea72014c55b24de8cf4e5816"/><file name="6da8d5_11x11_icon_arrows_leftright.gif" hash="ed511d07417fb6e54521e6d069118c3e"/><file name="6da8d5_11x11_icon_arrows_updown.gif" hash="4c183fc8665336cc06b6b5ecec5ab9d4"/><file name="6da8d5_11x11_icon_close.gif" hash="f5c1a073a4516aa1bcb1d2adc11d694d"/><file name="6da8d5_11x11_icon_doc.gif" hash="d4c31ffd164bd11dafda91f71154fd94"/><file name="6da8d5_11x11_icon_folder_closed.gif" hash="75cca9e354d9c70493956701036d17b3"/><file name="6da8d5_11x11_icon_folder_open.gif" hash="b6d4ccf28bc8135f5447e4d7037f4273"/><file name="6da8d5_11x11_icon_minus.gif" hash="ce777f34f7d0c45d97f8a4a81dc7a864"/><file name="6da8d5_11x11_icon_plus.gif" hash="4ee03d80718cda0dfed3dc40da49defe"/><file name="6da8d5_7x7_arrow_down.gif" hash="5f14085c6a95eefb7de0298fde0f8cf7"/><file name="6da8d5_7x7_arrow_left.gif" hash="c1830e94ea979068a24bf65cb3273bbc"/><file name="6da8d5_7x7_arrow_right.gif" hash="f07a63dc872885b363ab0263e9e87a81"/><file name="6da8d5_7x7_arrow_up.gif" hash="23388675052b0e0b1c377a39b8e33daf"/><file name="d0e5f5_40x100_textures_02_glass_75.png" hash="4227dfeb91bc0ada19e6ce9c9dd1d177"/><file name="dfeffc_40x100_textures_02_glass_85.png" hash="65821097dd7360af378ba87064657c5a"/><file name="f5f8f9_40x100_textures_06_inset_hard_100.png" hash="d0b8b7bc1da19027c5f1928821ca2425"/><file name="f9bd01_11x11_icon_arrows_leftright.gif" hash="a606b4cf221bc4835e888045582d3741"/><file name="f9bd01_11x11_icon_arrows_updown.gif" hash="fd37fbab3d065ff801423592ce9ddef4"/><file name="f9bd01_11x11_icon_close.gif" hash="2f29d1345450fc6ceff21b47b1299add"/><file name="f9bd01_11x11_icon_doc.gif" hash="b496d9150cf0b5485773d1809a15711e"/><file name="f9bd01_11x11_icon_folder_closed.gif" hash="10f1f11a9e8511c58780bd4c27bc58bf"/><file name="f9bd01_11x11_icon_folder_open.gif" hash="a93490b49caa0d29e0a4a74a19db5a75"/><file name="f9bd01_11x11_icon_minus.gif" hash="aae85e05c6fc1c89aaa40ed81d6a5745"/><file name="f9bd01_11x11_icon_plus.gif" hash="8d336dad6b6d735c8caffa6979111ec8"/><file name="f9bd01_7x7_arrow_down.gif" hash="7245b25313350cf9c42630cf56a77b32"/><file name="f9bd01_7x7_arrow_left.gif" hash="d52f626932d222de01e6ae56d693de30"/><file name="f9bd01_7x7_arrow_right.gif" hash="dda3a08ff0a655d2098eea93f8d40f1c"/><file name="f9bd01_7x7_arrow_up.gif" hash="9fc71f02a267f44015b8fcdad65652ae"/><file name="fcfdfd_40x100_textures_06_inset_hard_100.png" hash="9a409d5eae9edcb987ee579e1d2fd1ca"/></dir></dir><dir name="swf"><file name="banniere_TNT_0.swf" hash="2d5ff87f17c339506cf94e14ed02049b"/><file name="banniere_TNT_1.swf" hash="19452213d15cac22ea4400f9a2428d54"/><file name="banniere_TNT_2.swf" hash="774c739c758226638ea18eb9840cbeae"/><file name="banniere_TNT_3.swf" hash="7d7312336f6fd5b7e1eb3bad903dea29"/><file name="banniere_TNT_4.swf" hash="cbb9dd4c5f24b9754c5c30133e09f6f1"/><file name="banniere_TNT_5.swf" hash="96c51a21962293691471973bc9f9020a"/><file name="banniere_TNT_6.swf" hash="a4dab8afecc0a26e5149787026e9591d"/><file name="banniere_TNT_7.swf" hash="22a76b62d84d1dbf9bc2ffe7f67249e3"/></dir></dir><file name="tnt_j.png" hash="8d0f21db3ea7d8466948d0b661c65b71"/><file name="tnt_jd.png" hash="d98546789b206f87424ecae50307b97a"/><file name="tnt_jz.png" hash="4420aba4343d1d170a1e3662d53130dc"/><file name="tnt_sure_we_can.png" hash="6e609b1dfea22cc59b5f1699857cbc58"/><file name="tnt_t.png" hash="58348232c798883b70d008b98da8d0ec"/></dir></dir><dir name="js"><dir name="tnt"><file name="jquery-ui.js" hash="c4338f18312354facf7fcaecadf07e04"/><file name="jquery.js" hash="3d5c23458ff980bd76bee32e76faac86"/><file name="jquery.superbox.js" hash="30228a5235fa735bdfb03130cc64ddbe"/><file name="jquery_162.js" hash="8752b76fb981b68e7283ef4341a1c29a"/><file name="relaisColis.js" hash="a7ac4aafa111b0e5906e585925314eb6"/><file name="relaisColisIE7.js" hash="9825ac3a00a44431e499180c4edefb5a"/><file name="suiviColis.js" hash="f702e717d80c9b2806c54a91149e2571"/><file name="swfobject.js" hash="892a543f3abb54e8ec1ada55be3b0649"/><file name="tnt.js" hash="9bc11f07a50bbfba02b3d14dc0383de6"/></dir></dir><file name="tnt_relaisColis.php" hash="dacf44bb13b29a788bbd44d61f72b656"/><file name="tnt_suiviColis.php" hash="3083a2d8a8229d6f37d8bb2402b6553b"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="WS_Tnt.xml" hash="2176fa2b98c129841599ac0cf2b96d87"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="tnt"><dir><dir name="template"><dir name="sales"><dir name="items"><dir name="column"><file name="name.phtml" hash="37c3722f4eee055b79febe30b06f3c46"/></dir></dir><dir name="order"><dir name="invoice"><dir name="create"><file name="form.phtml" hash="39a5685c507a02242ba2145e5a2d2efe"/><file name="tracking.phtml" hash="a03541d8ca4f4061e74a37fe33f4a75a"/></dir></dir><dir name="shipment"><dir name="create"><file name="form.phtml" hash="197fbba3d7d93344a12224a893d6334d"/><file name="items.phtml" hash="88f5f24c3b00b0fdb88f9cd3a6601624"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="tnt.xml" hash="5308155ce5230e3c298b6d407fde4fba"/></dir><dir name="template"><dir name="tnt"><dir><dir name="onepage"><dir name="shipping_method"><file name="available.phtml" hash="e778a63e5d668669607abbbae578d9fa"/></dir><file name="shipping_method.phtml" hash="ec7ad924d51398d83d6854ad24f7ca16"/></dir><dir name="sales"><dir name="order"><file name="info.phtml" hash="d3a94a5affd8c5cde40555d97c784962"/><file name="view.phtml" hash="82e3780bde649e34a49217b9199f70bf"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Infostrates"><dir name="Tnt"><dir><dir name="Block"><dir name="Onepage"><dir name="Shipping"><dir name="Method"><dir name="Available"><file name="Item.php" hash="c8c409dbee12a674b2a4581c82d1e943"/></dir><file name="Available.php" hash="e962d4ad442a82575bc84e64b94c82ce"/></dir></dir></dir><dir name="Sales"><file name="Impression.php" hash="c72cb0a7611a83d977fc3d69df36ab8d"/><dir name="Order"><dir name="Shipment"><file name="View.php" hash="805c992e53d98f35f3103364ecf4ff46"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="9bfa61660b7c6f897fbb87b133afbd09"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="d4893de82f6c207dfcb81acdebe3f713"/></dir><dir name="Model"><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="1b29213ab1939cc37df340994587c90e"/></dir></dir><dir name="Shipping"><dir name="Carrier"><dir name="Tnt"><dir name="Source"><file name="Labelformat.php" hash="c70d28c1c54620b87719da9b91aab5db"/><file name="Method.php" hash="72131007614ea7eba8a82018bb259517"/><file name="Tntmaxweight.php" hash="ee2f5213c81fab21fbeff78134ac3207"/></dir></dir><file name="Tnt.php" hash="95c053d623036b2ff3d138307f6d90d7"/></dir></dir></dir><dir name="controllers"><dir name="Sales"><file name="ImpressionController.php" hash="515ece46edde3d3634e289d92afb1b34"/><dir name="Order"><file name="ShipmentController.php" hash="1d92c90103bdd53326eaf237cb582a67"/></dir></dir><file name="TntController.php" hash="f430e24ea87fbd43c7647320fd2a0f07"/></dir><dir name="etc"><file name="config.xml" hash="2930d5c06d226cde340858b0b26f5a67"/><file name="system.xml" hash="0e553bc8e1e37204917a0090e80ddc6a"/></dir><dir name="sql"><dir name="tnt_setup"><file name="mysql4-install-0.1.0-0.1.1.php" hash="f8b88a51166fca8f990340a748b48245"/><file name="mysql4-install-0.1.0.php" hash="eb0dac832f3182d6111adb8618296a03"/><file name="mysql4-upgrade-1.0.0-2.0.0.php" hash="0b69a4c2f5fe40403d5f1ff37d36197c"/><file name="mysql4-upgrade-2.0.1-2.0.3.php" hash="88109fe619040cbf466b269e800597b2"/></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="pdf_bt"><file name="index.html" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></target><target name="magelocal"><dir name="Varien"><dir name="Data"><dir name="Collection"><file name="Db.php" hash="5b3a003f583929b8f518790bffe4e533"/></dir></dir></dir></target></contents>
20
  <compatible/>
21
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
22
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>TNT_Express_Fr</name>
4
+ <version>3.0.13</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
10
  <description>Extension officielle vous permettant de proposer les services TNT &#xE0; vos clients.</description>
11
  <notes>Extension officielle vous permettant de proposer les services TNT &#xE0; vos clients.&#xD;
12
  &#xD;
13
+ - compatibilit&#xE9; Magento 1.8&#xD;
14
+ - optimisation des alertes lors de l'exp&#xE9;dition&#xD;
15
+ - correction arrondi lors du calcul des FDP gratuits&#xD;
16
+ - interdiction des poids vides&#xD;
17
+ - ajout user_agent pour connexion au WS</notes>
18
  <authors><author><name>Infostrates</name><user>InfoDev</user><email>magento@infostrates.fr</email></author></authors>
19
+ <date>2014-06-23</date>
20
+ <time>07:39:13</time>
21
+ <contents><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="tnt"><file name="jquery.superbox.css" hash="37f0e7a9f1df77385dd867fa9dadd60c"/><file name="tnt.css" hash="faf9c57cc23546009a0ef17bbec18f46"/><file name="tntB2CRelaisColis.css" hash="8588bc35d86524d2f4cdb26e7c39e337"/><file name="tntB2CSuiviColis.css" hash="b36325da4e3ca8dc4e819674a4e82166"/><file name="ui.dialog.css" hash="4f3c0afd97f9ccc5bcc31fe3f8fdec7f"/><file name="ui.tabs.css" hash="9a9fd1b8fef22474fcbf1917975acfbd"/></dir></dir><dir name="images"><dir name="tnt"><file name="24h_domicile.jpg" hash="4f3895df09982e1eb04a5a11360e88ec"/><file name="24h_entreprise.jpg" hash="eab57029f655d350d37047822c30b85a"/><file name="24h_relais.jpg" hash="1ab1dc90034ab68830c69070e45b5248"/><dir><dir name="relaisColis"><file name="24_relaiscolis.jpg" hash="70927a36854fefdee6da4811dead9e78"/><file name="5-puce-choix-gris2.gif" hash="f44619bac31b7e043bc74292b8dfe4d4"/><file name="_5-puce-choix-gris2.gif" hash="f96ef8fba6563b2235a8d09ffb4b7ae1"/><file name="_logo_24_chezmoi.jpg" hash="6c8a989da7d879fabe6441d06be1d490"/><file name="_logo_24_relaiscolis.jpg" hash="b306bc299490f9711c3e0406bbd8e4e8"/><file name="_logo_24h_chezmoi_RVB.gif" hash="ccd78b8af3cfb2b27d9ffea6c2b60201"/><file name="_logo_24h_relaiscolis_RVB.gif" hash="7711185412061132689da9e6f212c5a8"/><file name="_logos_24.jpg" hash="65a78581e9207eadcd5e9797032bdf4f"/><file name="_picto_localiser.png" hash="ba0a3fce978e167d96915bf06cf03c32"/><file name="bt-CodePostal-1.jpg" hash="1f7f61d1201fa69ef65bb2ce656b768f"/><file name="bt-CodePostal-2.jpg" hash="0bdf3314a4e098f8e1a2397c08dc5ff9"/><file name="bt-CodePostal.jpg" hash="c5bc1cbc689c7fd0949b4c903d347b7f"/><file name="bt-Continuer-1.jpg" hash="9b9e4090bc8fda9e4d2d798a65812928"/><file name="bt-Continuer-2.jpg" hash="5804403af6a183f097b39b903961bea2"/><file name="bt-Continuer.jpg" hash="534c8b990fbad574e47477ab9e7de70b"/><file name="bt-OK-1.jpg" hash="ce026dcdcdcc602dd328832a37a2decd"/><file name="bt-OK-2.jpg" hash="c7fc5c48be5a95b2afecbe0e5c1b5fda"/><file name="bt-OK.jpg" hash="9ed6a96f09935b5bb23b678b8cffec1a"/><file name="bt-Retour.gif" hash="7c9fbc4a1db1817d7067b38275e79be5"/><file name="close_icon_double.png" hash="ed52a65fb5a37b3ab1c9d738c86b8d39"/><file name="exception.gif" hash="14462eb5176873950105cb78cfd1c04b"/><file name="exception2.gif" hash="cae24d8d4eafdbc2419b4f9c654a3bcc"/><dir name="google"><file name="agenceTnt.png" hash="c9161d6c4ada4a5456bea12941ba0903"/><file name="red-pushpin-s.png" hash="7d9f46d93a22ed450fdfdb8fb9879315"/><file name="red-pushpin.png" hash="5238107f41902ba37131e0c5198f9ab4"/><file name="relaisColis.png" hash="15e24cbcc83f4e4c0d7e94e71c80368e"/><file name="relaisColis2.png" hash="4643153e81e18762f745e8827c82b252"/></dir><file name="lg_tnt.gif" hash="78bb3e001b1a6bc4bd616f032b81ace6"/><file name="livreur.gif" hash="49dd7ebf54141aec0d39cd97af1b3385"/><file name="logo-tnt-petit.jpg" hash="0e35a515b81d1753e31e7746669b92c5"/><file name="logo_24_chezmoi.jpg" hash="b5afafec026f93c6c04bbe9e005521be"/><file name="logo_24_relaiscolis.jpg" hash="259879aa1cf663479f74db1b62518e90"/><file name="logo_24h_chezmoi_RVB.gif" hash="b8ea43f3b62ae1db6f4562a6fed53647"/><file name="logo_24h_relaiscolis_RVB.gif" hash="3521b422871a2e054135f83bd979be98"/><file name="logos_24.jpg" hash="ae1b3561e501ec8ce536b66fff1e2372"/><file name="loupe.gif" hash="1c66ca841e102964ee7e70f574b13bb1"/><file name="notes.gif" hash="5f39e1129163dc549d59b8818432035c"/><file name="picto-delai.gif" hash="6f40c84eada13e0802de3d573b978023"/><file name="picto_localiser.jpg" hash="14c7373ef0a05236301a80657b94c429"/><file name="tnt_logo.gif" hash="5ebdea118496c59e473afbf6168c72b2"/><dir name="ui-dialog"><file name="217bc0_11x11_icon_arrows_leftright.gif" hash="a508197674479672df0cae36dc3e992b"/><file name="217bc0_11x11_icon_arrows_updown.gif" hash="2b164351ff902aa671d2162fe7ef80de"/><file name="217bc0_11x11_icon_close.gif" hash="aa11d350f6f257b30c51854c7457bdf7"/><file name="217bc0_11x11_icon_doc.gif" hash="6cd3d31f9de2072fe5cdc37697fa7047"/><file name="217bc0_11x11_icon_folder_closed.gif" hash="e1f6751b382b9f44c59793b9fd65b973"/><file name="217bc0_11x11_icon_folder_open.gif" hash="8c974aa27045cc6b2b4b18a502809af5"/><file name="217bc0_11x11_icon_minus.gif" hash="13b2ecea240c868c8a8886e085e41151"/><file name="217bc0_11x11_icon_plus.gif" hash="343c341f26245649be3af43962d3970c"/><file name="217bc0_7x7_arrow_down.gif" hash="8488267c8578c890eb9188964007eb42"/><file name="217bc0_7x7_arrow_left.gif" hash="30e3c1f097e6fec149583d21e9aaf721"/><file name="217bc0_7x7_arrow_right.gif" hash="3aff45eeae4f2f25625db2562ee64b4a"/><file name="217bc0_7x7_arrow_up.gif" hash="d7d60619ed69b64d3d6b61e78c6cf99f"/><file name="469bdd_11x11_icon_arrows_leftright.gif" hash="70f1a152ac20476191607b63e0129406"/><file name="469bdd_11x11_icon_arrows_updown.gif" hash="28debf817357b696699e709c010240e0"/><file name="469bdd_11x11_icon_doc.gif" hash="590aa4403d141186cc4430caefa644a2"/><file name="469bdd_11x11_icon_minus.gif" hash="715e3925135ef192149d1ec62763c9a8"/><file name="469bdd_11x11_icon_plus.gif" hash="a4aa61ec7cf9a274ac42224d0418d16d"/><file name="469bdd_11x11_icon_resize_se.gif" hash="d840dafe31b345b43dcd608983f4d2f2"/><file name="469bdd_7x7_arrow_down.gif" hash="794c5003bb6baa630c1664560293ed22"/><file name="469bdd_7x7_arrow_left.gif" hash="95f61faab2a3052985b81ba63b9e5143"/><file name="469bdd_7x7_arrow_right.gif" hash="363bb40ec764ff0ee8971e0e603614b4"/><file name="469bdd_7x7_arrow_up.gif" hash="e82fb46bea72014c55b24de8cf4e5816"/><file name="6da8d5_11x11_icon_arrows_leftright.gif" hash="ed511d07417fb6e54521e6d069118c3e"/><file name="6da8d5_11x11_icon_arrows_updown.gif" hash="4c183fc8665336cc06b6b5ecec5ab9d4"/><file name="6da8d5_11x11_icon_close.gif" hash="f5c1a073a4516aa1bcb1d2adc11d694d"/><file name="6da8d5_11x11_icon_doc.gif" hash="d4c31ffd164bd11dafda91f71154fd94"/><file name="6da8d5_11x11_icon_folder_closed.gif" hash="75cca9e354d9c70493956701036d17b3"/><file name="6da8d5_11x11_icon_folder_open.gif" hash="b6d4ccf28bc8135f5447e4d7037f4273"/><file name="6da8d5_11x11_icon_minus.gif" hash="ce777f34f7d0c45d97f8a4a81dc7a864"/><file name="6da8d5_11x11_icon_plus.gif" hash="4ee03d80718cda0dfed3dc40da49defe"/><file name="6da8d5_7x7_arrow_down.gif" hash="5f14085c6a95eefb7de0298fde0f8cf7"/><file name="6da8d5_7x7_arrow_left.gif" hash="c1830e94ea979068a24bf65cb3273bbc"/><file name="6da8d5_7x7_arrow_right.gif" hash="f07a63dc872885b363ab0263e9e87a81"/><file name="6da8d5_7x7_arrow_up.gif" hash="23388675052b0e0b1c377a39b8e33daf"/><file name="d0e5f5_40x100_textures_02_glass_75.png" hash="4227dfeb91bc0ada19e6ce9c9dd1d177"/><file name="dfeffc_40x100_textures_02_glass_85.png" hash="65821097dd7360af378ba87064657c5a"/><file name="f5f8f9_40x100_textures_06_inset_hard_100.png" hash="d0b8b7bc1da19027c5f1928821ca2425"/><file name="f9bd01_11x11_icon_arrows_leftright.gif" hash="a606b4cf221bc4835e888045582d3741"/><file name="f9bd01_11x11_icon_arrows_updown.gif" hash="fd37fbab3d065ff801423592ce9ddef4"/><file name="f9bd01_11x11_icon_close.gif" hash="2f29d1345450fc6ceff21b47b1299add"/><file name="f9bd01_11x11_icon_doc.gif" hash="b496d9150cf0b5485773d1809a15711e"/><file name="f9bd01_11x11_icon_folder_closed.gif" hash="10f1f11a9e8511c58780bd4c27bc58bf"/><file name="f9bd01_11x11_icon_folder_open.gif" hash="a93490b49caa0d29e0a4a74a19db5a75"/><file name="f9bd01_11x11_icon_minus.gif" hash="aae85e05c6fc1c89aaa40ed81d6a5745"/><file name="f9bd01_11x11_icon_plus.gif" hash="8d336dad6b6d735c8caffa6979111ec8"/><file name="f9bd01_7x7_arrow_down.gif" hash="7245b25313350cf9c42630cf56a77b32"/><file name="f9bd01_7x7_arrow_left.gif" hash="d52f626932d222de01e6ae56d693de30"/><file name="f9bd01_7x7_arrow_right.gif" hash="dda3a08ff0a655d2098eea93f8d40f1c"/><file name="f9bd01_7x7_arrow_up.gif" hash="9fc71f02a267f44015b8fcdad65652ae"/><file name="fcfdfd_40x100_textures_06_inset_hard_100.png" hash="9a409d5eae9edcb987ee579e1d2fd1ca"/></dir></dir><dir name="swf"><file name="banniere_TNT_0.swf" hash="2d5ff87f17c339506cf94e14ed02049b"/><file name="banniere_TNT_1.swf" hash="19452213d15cac22ea4400f9a2428d54"/><file name="banniere_TNT_2.swf" hash="774c739c758226638ea18eb9840cbeae"/><file name="banniere_TNT_3.swf" hash="7d7312336f6fd5b7e1eb3bad903dea29"/><file name="banniere_TNT_4.swf" hash="cbb9dd4c5f24b9754c5c30133e09f6f1"/><file name="banniere_TNT_5.swf" hash="96c51a21962293691471973bc9f9020a"/><file name="banniere_TNT_6.swf" hash="a4dab8afecc0a26e5149787026e9591d"/><file name="banniere_TNT_7.swf" hash="22a76b62d84d1dbf9bc2ffe7f67249e3"/></dir></dir><file name="tnt_j.png" hash="8d0f21db3ea7d8466948d0b661c65b71"/><file name="tnt_jd.png" hash="d98546789b206f87424ecae50307b97a"/><file name="tnt_jz.png" hash="4420aba4343d1d170a1e3662d53130dc"/><file name="tnt_sure_we_can.png" hash="6e609b1dfea22cc59b5f1699857cbc58"/><file name="tnt_t.png" hash="58348232c798883b70d008b98da8d0ec"/></dir></dir><dir name="js"><dir name="tnt"><file name="jquery-ui.js" hash="c4338f18312354facf7fcaecadf07e04"/><file name="jquery.js" hash="3d5c23458ff980bd76bee32e76faac86"/><file name="jquery.superbox.js" hash="30228a5235fa735bdfb03130cc64ddbe"/><file name="jquery_162.js" hash="8752b76fb981b68e7283ef4341a1c29a"/><file name="relaisColis.js" hash="a7ac4aafa111b0e5906e585925314eb6"/><file name="relaisColisIE7.js" hash="9825ac3a00a44431e499180c4edefb5a"/><file name="suiviColis.js" hash="f702e717d80c9b2806c54a91149e2571"/><file name="swfobject.js" hash="892a543f3abb54e8ec1ada55be3b0649"/><file name="tnt.js" hash="a5444669e9f771afe0e587a032d756fc"/></dir></dir><file name="tnt_relaisColis.php" hash="dacf44bb13b29a788bbd44d61f72b656"/><file name="tnt_suiviColis.php" hash="3083a2d8a8229d6f37d8bb2402b6553b"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="WS_Tnt.xml" hash="2176fa2b98c129841599ac0cf2b96d87"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="tnt"><dir><dir name="template"><dir name="sales"><dir name="items"><dir name="column"><file name="name.phtml" hash="37c3722f4eee055b79febe30b06f3c46"/></dir></dir><dir name="order"><dir name="invoice"><dir name="create"><file name="form.phtml" hash="39a5685c507a02242ba2145e5a2d2efe"/><file name="tracking.phtml" hash="a03541d8ca4f4061e74a37fe33f4a75a"/></dir></dir><dir name="shipment"><dir name="create"><file name="form.phtml" hash="5a90e5a893b55d9f4ad84a8f8114fd77"/><file name="items.phtml" hash="a6b6d92d51fb0b5adfd517ee193a0789"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="tnt.xml" hash="5308155ce5230e3c298b6d407fde4fba"/></dir><dir name="template"><dir name="tnt"><dir><dir name="onepage"><dir name="shipping_method"><file name="available.phtml" hash="e778a63e5d668669607abbbae578d9fa"/></dir><file name="shipping_method.phtml" hash="ec7ad924d51398d83d6854ad24f7ca16"/></dir><dir name="sales"><dir name="order"><file name="info.phtml" hash="f8b3de1a77abe9b1054cccba4db3fa68"/><file name="view.phtml" hash="82e3780bde649e34a49217b9199f70bf"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Infostrates"><dir name="Tnt"><dir><dir name="Block"><dir name="Onepage"><dir name="Shipping"><dir name="Method"><dir name="Available"><file name="Item.php" hash="c8c409dbee12a674b2a4581c82d1e943"/></dir><file name="Available.php" hash="e962d4ad442a82575bc84e64b94c82ce"/></dir></dir></dir><dir name="Sales"><file name="Impression.php" hash="c72cb0a7611a83d977fc3d69df36ab8d"/><dir name="Order"><dir name="Shipment"><file name="View.php" hash="805c992e53d98f35f3103364ecf4ff46"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="9bfa61660b7c6f897fbb87b133afbd09"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="d4893de82f6c207dfcb81acdebe3f713"/></dir><dir name="Model"><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="1b29213ab1939cc37df340994587c90e"/></dir></dir><dir name="Shipping"><dir name="Carrier"><dir name="Tnt"><dir name="Source"><file name="Labelformat.php" hash="c70d28c1c54620b87719da9b91aab5db"/><file name="Method.php" hash="72131007614ea7eba8a82018bb259517"/><file name="Tntmaxweight.php" hash="ee2f5213c81fab21fbeff78134ac3207"/></dir></dir><file name="Tnt.php" hash="356ca3103c108a0c96a435b5dfbf6c46"/></dir></dir></dir><dir name="controllers"><dir name="Sales"><file name="ImpressionController.php" hash="515ece46edde3d3634e289d92afb1b34"/><dir name="Order"><file name="ShipmentController.php" hash="1d92c90103bdd53326eaf237cb582a67"/></dir></dir><file name="TntController.php" hash="8c7c9f35cb4dc3746d6aa419bf27d995"/></dir><dir name="etc"><file name="config.xml" hash="4ffb4db79fab46ecdd99a3425a4185a8"/><file name="system.xml" hash="3fe749efe61f5da714437e04772b844a"/></dir><dir name="sql"><dir name="tnt_setup"><file name="mysql4-install-0.1.0-0.1.1.php" hash="f8b88a51166fca8f990340a748b48245"/><file name="mysql4-install-0.1.0.php" hash="eb0dac832f3182d6111adb8618296a03"/><file name="mysql4-upgrade-1.0.0-2.0.0.php" hash="0b69a4c2f5fe40403d5f1ff37d36197c"/><file name="mysql4-upgrade-2.0.1-2.0.3.php" hash="88109fe619040cbf466b269e800597b2"/></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="pdf_bt"><file name="index.html" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></target><target name="magelocal"><dir name="Varien"><dir name="Data"><dir name="Collection"><file name="Db.php" hash="5b3a003f583929b8f518790bffe4e533"/></dir></dir></dir></target></contents>
22
  <compatible/>
23
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
24
  </package>
skin/frontend/default/default/js/tnt/tnt.js CHANGED
@@ -168,6 +168,11 @@ function shippingMethodTnt(url){
168
  parameters:{street:street,description:description,postcode:postcode,city:city,info_comp:info_comp}
169
  });
170
  }
 
 
 
 
 
171
 
172
  if ($("tnt_pr_choix") != null) {
173
  $("tnt_pr_choix").innerHTML = '';
168
  parameters:{street:street,description:description,postcode:postcode,city:city,info_comp:info_comp}
169
  });
170
  }
171
+
172
+ if($("s_method_tnt_JD") && $("s_method_tnt_JD").checked){
173
+ var newShippingAddress = jQuery('.name-firstname input').val()+' '+jQuery('.name-lastname input').val()+'<br />'+description+'<br />'+street+'<br />'+city+', '+postcode+'<br />France';
174
+ jQuery('#shipping-progress-opcheckout dd address').html(newShippingAddress);
175
+ }
176
 
177
  if ($("tnt_pr_choix") != null) {
178
  $("tnt_pr_choix").innerHTML = '';