Version Notes
Módulo de cálculo de PAC, Sedex, E-Sedex, Sedex 10, Sedex Hoje e Sedex a Cobrar.
Download this release
Release Info
Developer | Magento Core Team |
Extension | PedroTeixeira_Correios |
Version | 4.2.0 |
Comparing to | |
See all releases |
Code changes from version 4.1.0 to 4.2.0
- app/code/community/PedroTeixeira/Correios/Helper/Data.php +18 -18
- app/code/community/PedroTeixeira/Correios/Model/Carrier/CorreiosMethod.php +694 -782
- app/code/community/PedroTeixeira/Correios/Model/Source/PostMethods.php +35 -36
- app/code/community/PedroTeixeira/Correios/Model/Source/UrlMethods.php +0 -29
- app/code/community/PedroTeixeira/Correios/Model/Source/WeightType.php +29 -29
- app/code/community/PedroTeixeira/Correios/etc/config.xml +146 -138
- app/code/community/PedroTeixeira/Correios/etc/system.xml +331 -318
- app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/mysql4-install-4.0.0.php +4 -5
- app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/mysql4-upgrade-4.0.0-4.1.0.php +4 -5
- app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/mysql4-upgrade-4.1.0-4.2.0.php +46 -0
- app/etc/modules/PedroTeixeira_Correios.xml +26 -26
- package.xml +8 -10
app/code/community/PedroTeixeira/Correios/Helper/Data.php
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Pedro Teixeira
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* It is also available through the world-wide-web at this URL:
|
9 |
-
* http://
|
10 |
-
*
|
11 |
-
* @category PedroTeixeira
|
12 |
-
* @package PedroTeixeira_Correios
|
13 |
-
* @copyright Copyright (c)
|
14 |
-
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
-
* @license http://
|
16 |
-
*/
|
17 |
-
|
18 |
-
class PedroTeixeira_Correios_Helper_Data extends Mage_Core_Helper_Abstract { }
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Pedro Teixeira
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the New BSD License.
|
8 |
+
* It is also available through the world-wide-web at this URL:
|
9 |
+
* http://www.pteixeira.com.br/new-bsd-license/
|
10 |
+
*
|
11 |
+
* @category PedroTeixeira
|
12 |
+
* @package PedroTeixeira_Correios
|
13 |
+
* @copyright Copyright (c) 2011 Pedro Teixeira (http://www.pteixeira.com.br)
|
14 |
+
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
+
* @license http://www.pteixeira.com.br/new-bsd-license/ New BSD License
|
16 |
+
*/
|
17 |
+
|
18 |
+
class PedroTeixeira_Correios_Helper_Data extends Mage_Core_Helper_Abstract { }
|
app/code/community/PedroTeixeira/Correios/Model/Carrier/CorreiosMethod.php
CHANGED
@@ -1,782 +1,694 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Pedro Teixeira
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* It is also available through the world-wide-web at this URL:
|
9 |
-
* http://
|
10 |
-
*
|
11 |
-
* @category PedroTeixeira
|
12 |
-
* @package PedroTeixeira_Correios
|
13 |
-
* @copyright Copyright (c)
|
14 |
-
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
-
* @license http://
|
16 |
-
*/
|
17 |
-
|
18 |
-
/**
|
19 |
-
* PedroTeixeira_Correios_Model_Carrier_CorreiosMethod
|
20 |
-
*
|
21 |
-
* @category PedroTeixeira
|
22 |
-
* @package PedroTeixeira_Correios
|
23 |
-
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
24 |
-
*/
|
25 |
-
|
26 |
-
class PedroTeixeira_Correios_Model_Carrier_CorreiosMethod
|
27 |
-
extends Mage_Shipping_Model_Carrier_Abstract
|
28 |
-
implements Mage_Shipping_Model_Carrier_Interface
|
29 |
-
{
|
30 |
-
|
31 |
-
/**
|
32 |
-
* _code property
|
33 |
-
*
|
34 |
-
* @var string
|
35 |
-
*/
|
36 |
-
protected $_code = 'pedroteixeira_correios';
|
37 |
-
|
38 |
-
/**
|
39 |
-
* _result property
|
40 |
-
*
|
41 |
-
* @var Mage_Shipping_Model_Rate_Result / Mage_Shipping_Model_Tracking_Result
|
42 |
-
*/
|
43 |
-
protected $_result = null;
|
44 |
-
|
45 |
-
/**
|
46 |
-
* ZIP code vars
|
47 |
-
*/
|
48 |
-
protected $_fromZip = null;
|
49 |
-
protected $_toZip = null;
|
50 |
-
|
51 |
-
/**
|
52 |
-
* Value and Weight
|
53 |
-
*/
|
54 |
-
protected $_packageValue = null;
|
55 |
-
protected $_packageWeight = null;
|
56 |
-
protected $
|
57 |
-
protected $_freeMethodWeight = null;
|
58 |
-
|
59 |
-
/**
|
60 |
-
* Post methods
|
61 |
-
*/
|
62 |
-
protected $_postMethods = null;
|
63 |
-
protected $_postMethodsFixed = null;
|
64 |
-
protected $_postMethodsExplode = null;
|
65 |
-
|
66 |
-
/**
|
67 |
-
* Free method request
|
68 |
-
*/
|
69 |
-
protected $_freeMethodRequest = false;
|
70 |
-
protected $_freeMethodRequestResult = null;
|
71 |
-
|
72 |
-
/**
|
73 |
-
* Collect Rates
|
74 |
-
*
|
75 |
-
* @param Mage_Shipping_Model_Rate_Request $request
|
76 |
-
* @return Mage_Shipping_Model_Rate_Result
|
77 |
-
*/
|
78 |
-
public function collectRates(Mage_Shipping_Model_Rate_Request $request)
|
79 |
-
{
|
80 |
-
// Do initial check
|
81 |
-
if($this->_inicialCheck($request) === false)
|
82 |
-
{
|
83 |
-
return false;
|
84 |
-
}
|
85 |
-
|
86 |
-
// Check package value
|
87 |
-
if($this->_packageValue < $this->getConfigData('min_order_value') || $this->_packageValue > $this->getConfigData('max_order_value'))
|
88 |
-
{
|
89 |
-
//Value limits
|
90 |
-
$this->_throwError('valueerror', 'Value limits', __LINE__);
|
91 |
-
return $this->_result;
|
92 |
-
}
|
93 |
-
|
94 |
-
// Check ZIP Code
|
95 |
-
if(!preg_match("/^([0-9]{8})$/", $this->_toZip))
|
96 |
-
|
97 |
-
//Invalid Zip Code
|
98 |
-
$this->_throwError('zipcodeerror', 'Invalid Zip Code', __LINE__);
|
99 |
-
return $this->_result;
|
100 |
-
}
|
101 |
-
|
102 |
-
// Fix weight
|
103 |
-
$weightCompare = $this->getConfigData('maxweight');
|
104 |
-
if($this->getConfigData('weight_type') == 'gr')
|
105 |
-
{
|
106 |
-
$this->_packageWeight = number_format($this->_packageWeight/1000, 2, '.', '');
|
107 |
-
$weightCompare = number_format($weightCompare/1000, 2, '.', '');
|
108 |
-
}
|
109 |
-
|
110 |
-
// Check weght
|
111 |
-
if ($this->_packageWeight > $weightCompare)
|
112 |
-
{
|
113 |
-
//Weight exceeded limit
|
114 |
-
$this->_throwError('maxweighterror', 'Weight exceeded limit', __LINE__);
|
115 |
-
return $this->_result;
|
116 |
-
}
|
117 |
-
|
118 |
-
// Check weight zero
|
119 |
-
if ($this->_packageWeight <= 0)
|
120 |
-
{
|
121 |
-
//Weight zero
|
122 |
-
$this->_throwError('weightzeroerror', 'Weight zero', __LINE__);
|
123 |
-
return $this->_result;
|
124 |
-
}
|
125 |
-
|
126 |
-
// Generate
|
127 |
-
$this->
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
// Get
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
//
|
140 |
-
$this->
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
$
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
$
|
396 |
-
|
397 |
-
|
398 |
-
$
|
399 |
-
}
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
$this->
|
526 |
-
$this->
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
$
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
{
|
609 |
-
$this->
|
610 |
-
|
611 |
-
|
612 |
-
$
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
$
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
if (!preg_match('#<table ([^>]+)>(.*?)</table>#is', $body, $matches)) {
|
696 |
-
$this->_result->append($error);
|
697 |
-
return false;
|
698 |
-
}
|
699 |
-
$table = $matches[2];
|
700 |
-
|
701 |
-
if (!preg_match_all('/<tr>(.*)<\/tr>/i', $table, $columns, PREG_SET_ORDER)) {
|
702 |
-
$this->_result->append($error);
|
703 |
-
return false;
|
704 |
-
}
|
705 |
-
|
706 |
-
$progress = array();
|
707 |
-
for ($i = 0; $i < count($columns); $i++) {
|
708 |
-
$column = $columns[$i][1];
|
709 |
-
|
710 |
-
$description = '';
|
711 |
-
$found = false;
|
712 |
-
if (preg_match('/<td rowspan="?2"?/i', $column) && preg_match('/<td rowspan="?2"?>(.*)<\/td><td>(.*)<\/td><td><font color="[A-Z0-9]{6}">(.*)<\/font><\/td>/i', $column, $matches)) {
|
713 |
-
if (preg_match('/<td colspan="?2"?>(.*)<\/td>/i', $columns[$i+1][1], $matchesDescription)) {
|
714 |
-
$description = str_replace(' ', '', $matchesDescription[1]);
|
715 |
-
}
|
716 |
-
|
717 |
-
$found = true;
|
718 |
-
} elseif (preg_match('/<td rowspan="?1"?>(.*)<\/td><td>(.*)<\/td><td><font color="[A-Z0-9]{6}">(.*)<\/font><\/td>/i', $column, $matches)) {
|
719 |
-
$found = true;
|
720 |
-
}
|
721 |
-
|
722 |
-
if ($found) {
|
723 |
-
$datetime = explode(' ', $matches[1]);
|
724 |
-
$locale = new Zend_Locale('pt_BR');
|
725 |
-
$date='';
|
726 |
-
$date = new Zend_Date($datetime[0], 'dd/MM/YYYY', $locale);
|
727 |
-
|
728 |
-
$track = array(
|
729 |
-
'deliverydate' => $date->toString('YYYY-MM-dd'),
|
730 |
-
'deliverytime' => $datetime[1] . ':00',
|
731 |
-
'deliverylocation' => htmlentities($matches[2]),
|
732 |
-
'status' => htmlentities($matches[3]),
|
733 |
-
'activity' => htmlentities($matches[3])
|
734 |
-
);
|
735 |
-
|
736 |
-
if ($description !== '') {
|
737 |
-
$track['activity'] = $matches[3] . ' - ' . htmlentities($description);
|
738 |
-
}
|
739 |
-
|
740 |
-
$progress[] = $track;
|
741 |
-
}
|
742 |
-
}
|
743 |
-
|
744 |
-
if (!empty($progress)) {
|
745 |
-
$track = $progress[0];
|
746 |
-
$track['progressdetail'] = $progress;
|
747 |
-
|
748 |
-
$tracking = Mage::getModel('shipping/tracking_result_status');
|
749 |
-
$tracking->setTracking($code);
|
750 |
-
$tracking->setCarrier('correios');
|
751 |
-
$tracking->setCarrierTitle($this->getConfigData('title'));
|
752 |
-
$tracking->addData($track);
|
753 |
-
|
754 |
-
$this->_result->append($tracking);
|
755 |
-
return true;
|
756 |
-
} else {
|
757 |
-
$this->_result->append($error);
|
758 |
-
return false;
|
759 |
-
}
|
760 |
-
}
|
761 |
-
|
762 |
-
/**
|
763 |
-
* Returns the allowed carrier methods
|
764 |
-
*
|
765 |
-
* @return array
|
766 |
-
*/
|
767 |
-
public function getAllowedMethods()
|
768 |
-
{
|
769 |
-
return array($this->_code => $this->getConfigData('title'));
|
770 |
-
}
|
771 |
-
|
772 |
-
/**
|
773 |
-
* Define ZIP Code as required
|
774 |
-
*
|
775 |
-
* @return boolean
|
776 |
-
*/
|
777 |
-
public function isZipCodeRequired()
|
778 |
-
{
|
779 |
-
return true;
|
780 |
-
}
|
781 |
-
|
782 |
-
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Pedro Teixeira
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the New BSD License.
|
8 |
+
* It is also available through the world-wide-web at this URL:
|
9 |
+
* http://www.pteixeira.com.br/new-bsd-license/
|
10 |
+
*
|
11 |
+
* @category PedroTeixeira
|
12 |
+
* @package PedroTeixeira_Correios
|
13 |
+
* @copyright Copyright (c) 2011 Pedro Teixeira (http://www.pteixeira.com.br)
|
14 |
+
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
+
* @license http://www.pteixeira.com.br/new-bsd-license/ New BSD License
|
16 |
+
*/
|
17 |
+
|
18 |
+
/**
|
19 |
+
* PedroTeixeira_Correios_Model_Carrier_CorreiosMethod
|
20 |
+
*
|
21 |
+
* @category PedroTeixeira
|
22 |
+
* @package PedroTeixeira_Correios
|
23 |
+
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
24 |
+
*/
|
25 |
+
|
26 |
+
class PedroTeixeira_Correios_Model_Carrier_CorreiosMethod
|
27 |
+
extends Mage_Shipping_Model_Carrier_Abstract
|
28 |
+
implements Mage_Shipping_Model_Carrier_Interface
|
29 |
+
{
|
30 |
+
|
31 |
+
/**
|
32 |
+
* _code property
|
33 |
+
*
|
34 |
+
* @var string
|
35 |
+
*/
|
36 |
+
protected $_code = 'pedroteixeira_correios';
|
37 |
+
|
38 |
+
/**
|
39 |
+
* _result property
|
40 |
+
*
|
41 |
+
* @var Mage_Shipping_Model_Rate_Result / Mage_Shipping_Model_Tracking_Result
|
42 |
+
*/
|
43 |
+
protected $_result = null;
|
44 |
+
|
45 |
+
/**
|
46 |
+
* ZIP code vars
|
47 |
+
*/
|
48 |
+
protected $_fromZip = null;
|
49 |
+
protected $_toZip = null;
|
50 |
+
|
51 |
+
/**
|
52 |
+
* Value and Weight
|
53 |
+
*/
|
54 |
+
protected $_packageValue = null;
|
55 |
+
protected $_packageWeight = null;
|
56 |
+
protected $_volumeWeight = null;
|
57 |
+
protected $_freeMethodWeight = null;
|
58 |
+
|
59 |
+
/**
|
60 |
+
* Post methods
|
61 |
+
*/
|
62 |
+
protected $_postMethods = null;
|
63 |
+
protected $_postMethodsFixed = null;
|
64 |
+
protected $_postMethodsExplode = null;
|
65 |
+
|
66 |
+
/**
|
67 |
+
* Free method request
|
68 |
+
*/
|
69 |
+
protected $_freeMethodRequest = false;
|
70 |
+
protected $_freeMethodRequestResult = null;
|
71 |
+
|
72 |
+
/**
|
73 |
+
* Collect Rates
|
74 |
+
*
|
75 |
+
* @param Mage_Shipping_Model_Rate_Request $request
|
76 |
+
* @return Mage_Shipping_Model_Rate_Result
|
77 |
+
*/
|
78 |
+
public function collectRates(Mage_Shipping_Model_Rate_Request $request)
|
79 |
+
{
|
80 |
+
// Do initial check
|
81 |
+
if($this->_inicialCheck($request) === false)
|
82 |
+
{
|
83 |
+
return false;
|
84 |
+
}
|
85 |
+
|
86 |
+
// Check package value
|
87 |
+
if($this->_packageValue < $this->getConfigData('min_order_value') || $this->_packageValue > $this->getConfigData('max_order_value'))
|
88 |
+
{
|
89 |
+
// Value limits
|
90 |
+
$this->_throwError('valueerror', 'Value limits', __LINE__);
|
91 |
+
return $this->_result;
|
92 |
+
}
|
93 |
+
|
94 |
+
// Check ZIP Code
|
95 |
+
if(!preg_match("/^([0-9]{8})$/", $this->_toZip))
|
96 |
+
{
|
97 |
+
// Invalid Zip Code
|
98 |
+
$this->_throwError('zipcodeerror', 'Invalid Zip Code', __LINE__);
|
99 |
+
return $this->_result;
|
100 |
+
}
|
101 |
+
|
102 |
+
// Fix weight
|
103 |
+
$weightCompare = $this->getConfigData('maxweight');
|
104 |
+
if($this->getConfigData('weight_type') == 'gr')
|
105 |
+
{
|
106 |
+
$this->_packageWeight = number_format($this->_packageWeight/1000, 2, '.', '');
|
107 |
+
$weightCompare = number_format($weightCompare/1000, 2, '.', '');
|
108 |
+
}
|
109 |
+
|
110 |
+
// Check weght
|
111 |
+
if ($this->_packageWeight > $weightCompare)
|
112 |
+
{
|
113 |
+
//Weight exceeded limit
|
114 |
+
$this->_throwError('maxweighterror', 'Weight exceeded limit', __LINE__);
|
115 |
+
return $this->_result;
|
116 |
+
}
|
117 |
+
|
118 |
+
// Check weight zero
|
119 |
+
if ($this->_packageWeight <= 0)
|
120 |
+
{
|
121 |
+
// Weight zero
|
122 |
+
$this->_throwError('weightzeroerror', 'Weight zero', __LINE__);
|
123 |
+
return $this->_result;
|
124 |
+
}
|
125 |
+
|
126 |
+
// Generate Volume Weight
|
127 |
+
if($this->_generateVolumeWeight() === false)
|
128 |
+
{
|
129 |
+
// Dimension error
|
130 |
+
$this->_throwError('dimensionerror', 'Dimension error', __LINE__);
|
131 |
+
return $this->_result;
|
132 |
+
}
|
133 |
+
|
134 |
+
// Get post methods
|
135 |
+
$this->_postMethods = $this->getConfigData('postmethods');
|
136 |
+
$this->_postMethodsFixed = $this->_postMethods;
|
137 |
+
$this->_postMethodsExplode = explode(",", $this->getConfigData('postmethods'));
|
138 |
+
|
139 |
+
// Get quotes
|
140 |
+
if($this->_getQuotes()->getError()) {
|
141 |
+
return $this->_result;
|
142 |
+
}
|
143 |
+
|
144 |
+
// Use descont codes
|
145 |
+
$this->_updateFreeMethodQuote($request);
|
146 |
+
|
147 |
+
// Return rates / errors
|
148 |
+
return $this->_result;
|
149 |
+
|
150 |
+
}
|
151 |
+
|
152 |
+
/**
|
153 |
+
* Get shipping quote
|
154 |
+
*
|
155 |
+
* @return object
|
156 |
+
*/
|
157 |
+
protected function _getQuotes(){
|
158 |
+
|
159 |
+
$dieErrors = explode(",", $this->getConfigData('die_errors'));
|
160 |
+
|
161 |
+
// Call Correios
|
162 |
+
$correiosReturn = $this->_getCorreiosReturn();
|
163 |
+
|
164 |
+
if($correiosReturn !== false){
|
165 |
+
|
166 |
+
// Check if exist return from Correios
|
167 |
+
$existReturn = false;
|
168 |
+
|
169 |
+
foreach($correiosReturn as $servicos){
|
170 |
+
|
171 |
+
// Get Correios error
|
172 |
+
$errorId = $this->_cleanCorreiosError((string)$servicos->Erro);
|
173 |
+
|
174 |
+
if($errorId != 0){
|
175 |
+
// Error, throw error message
|
176 |
+
if(in_array($errorId, $dieErrors)){
|
177 |
+
$this->_throwError('correioserror', 'Correios Error: ' . (string)$servicos->MsgErro . ' [Cod. ' . $errorId . '] [Serv. ' . (string)$servicos->Codigo . ']' , __LINE__, (string)$servicos->MsgErro . ' (Cod. ' . $errorId . ')');
|
178 |
+
return $this->_result;
|
179 |
+
}else{
|
180 |
+
continue;
|
181 |
+
}
|
182 |
+
}
|
183 |
+
|
184 |
+
$shippingPrice = floatval(str_replace(",",".",(string)$servicos->Valor));
|
185 |
+
$shippingDelivery = (int)$servicos->PrazoEntrega;
|
186 |
+
|
187 |
+
if($shippingPrice <= 0){
|
188 |
+
continue;
|
189 |
+
}
|
190 |
+
|
191 |
+
// Apend shipping
|
192 |
+
$this->_apendShippingReturn((string)$servicos->Codigo, $shippingPrice, $shippingDelivery);
|
193 |
+
$existReturn = true;
|
194 |
+
}
|
195 |
+
|
196 |
+
// All services are ignored
|
197 |
+
if($existReturn === false){
|
198 |
+
$this->_throwError('urlerror', 'URL Error, all services return with error', __LINE__);
|
199 |
+
return $this->_result;
|
200 |
+
}
|
201 |
+
|
202 |
+
}else{
|
203 |
+
// Error on HTTP Correios
|
204 |
+
return $this->_result;
|
205 |
+
}
|
206 |
+
|
207 |
+
// Success
|
208 |
+
if($this->_freeMethodRequest === true){
|
209 |
+
return $this->_freeMethodRequestResult;
|
210 |
+
}else{
|
211 |
+
return $this->_result;
|
212 |
+
}
|
213 |
+
}
|
214 |
+
|
215 |
+
|
216 |
+
/**
|
217 |
+
* Make initial checks and iniciate module variables
|
218 |
+
*
|
219 |
+
* @param Mage_Shipping_Model_Rate_Request $request
|
220 |
+
* @return boolean
|
221 |
+
*/
|
222 |
+
protected function _inicialCheck(Mage_Shipping_Model_Rate_Request $request){
|
223 |
+
|
224 |
+
if (!$this->getConfigFlag('active'))
|
225 |
+
{
|
226 |
+
//Disabled
|
227 |
+
Mage::log('PedroTeixeira_Correios: Disabled');
|
228 |
+
return false;
|
229 |
+
}
|
230 |
+
|
231 |
+
|
232 |
+
$origCountry = Mage::getStoreConfig('shipping/origin/country_id', $this->getStore());
|
233 |
+
$destCountry = $request->getDestCountryId();
|
234 |
+
if ($origCountry != "BR" || $destCountry != "BR"){
|
235 |
+
//Out of delivery area
|
236 |
+
Mage::log('PedroTeixeira_Correios: Out of delivery area');
|
237 |
+
return false;
|
238 |
+
}
|
239 |
+
|
240 |
+
// ZIP Code
|
241 |
+
$this->_fromZip = Mage::getStoreConfig('shipping/origin/postcode', $this->getStore());
|
242 |
+
$this->_toZip = $request->getDestPostcode();
|
243 |
+
|
244 |
+
//Fix Zip Code
|
245 |
+
$this->_fromZip = str_replace(array('-','.'), '', trim($this->_fromZip));
|
246 |
+
$this->_toZip = str_replace(array('-','.'), '', trim($this->_toZip));
|
247 |
+
|
248 |
+
if(!preg_match("/^([0-9]{8})$/", $this->_fromZip)){
|
249 |
+
//From zip code error
|
250 |
+
Mage::log('PedroTeixeira_Correios: From ZIP Code Error');
|
251 |
+
return false;
|
252 |
+
}
|
253 |
+
|
254 |
+
// Result model
|
255 |
+
$this->_result = Mage::getModel('shipping/rate_result');
|
256 |
+
|
257 |
+
// Value
|
258 |
+
$this->_packageValue = $request->getBaseCurrency()->convert(
|
259 |
+
$request->getPackageValue(),
|
260 |
+
$request->getPackageCurrency()
|
261 |
+
);
|
262 |
+
|
263 |
+
// Weight
|
264 |
+
$this->_packageWeight = number_format($request->getPackageWeight(), 2, '.', '');
|
265 |
+
|
266 |
+
// Free method weight
|
267 |
+
$this->_freeMethodWeight = number_format($request->getFreeMethodWeight(), 2, '.', '');
|
268 |
+
|
269 |
+
}
|
270 |
+
|
271 |
+
/**
|
272 |
+
* Get Correios return
|
273 |
+
*
|
274 |
+
* @return bool
|
275 |
+
*/
|
276 |
+
protected function _getCorreiosReturn(){
|
277 |
+
|
278 |
+
$filename = $this->getConfigData('url_ws_correios');
|
279 |
+
$contratoCodes = explode(",", $this->getConfigData('contrato_codes'));
|
280 |
+
|
281 |
+
try {
|
282 |
+
$client = new Zend_Http_Client($filename);
|
283 |
+
$client->setConfig(array(
|
284 |
+
'timeout' => $this->getConfigData('ws_timeout')
|
285 |
+
));
|
286 |
+
|
287 |
+
$client->setParameterGet('StrRetorno', 'xml');
|
288 |
+
$client->setParameterGet('nCdServico', $this->_postMethods);
|
289 |
+
|
290 |
+
if($this->_volumeWeight > $this->getConfigData('volume_weight_min') && $this->_volumeWeight > $this->_packageWeight){
|
291 |
+
$client->setParameterGet('nVlPeso', $this->_volumeWeight);
|
292 |
+
}else{
|
293 |
+
$client->setParameterGet('nVlPeso', $this->_packageWeight);
|
294 |
+
}
|
295 |
+
|
296 |
+
$client->setParameterGet('sCepOrigem', $this->_fromZip);
|
297 |
+
$client->setParameterGet('sCepDestino', $this->_toZip);
|
298 |
+
$client->setParameterGet('nCdFormato',1);
|
299 |
+
$client->setParameterGet('nVlComprimento',$this->getConfigData('comprimento_sent'));
|
300 |
+
$client->setParameterGet('nVlAltura',$this->getConfigData('altura_sent'));
|
301 |
+
$client->setParameterGet('nVlLargura',$this->getConfigData('largura_sent'));
|
302 |
+
|
303 |
+
if($this->getConfigData('mao_propria')){
|
304 |
+
$client->setParameterGet('sCdMaoPropria','S');
|
305 |
+
}else{
|
306 |
+
$client->setParameterGet('sCdMaoPropria','N');
|
307 |
+
}
|
308 |
+
|
309 |
+
if($this->getConfigData('aviso_recebimento')){
|
310 |
+
$client->setParameterGet('sCdAvisoRecebimento','S');
|
311 |
+
}else{
|
312 |
+
$client->setParameterGet('sCdAvisoRecebimento','N');
|
313 |
+
}
|
314 |
+
|
315 |
+
if($this->getConfigData('valor_declarado') || in_array($this->getConfigData('acobrar_code'), $this->_postMethodsExplode)){
|
316 |
+
$client->setParameterGet('nVlValorDeclarado',number_format($this->_packageValue, 2, ',', '.'));
|
317 |
+
}else{
|
318 |
+
$client->setParameterGet('nVlValorDeclarado',0);
|
319 |
+
}
|
320 |
+
|
321 |
+
$contrato = false;
|
322 |
+
foreach($contratoCodes as $contratoEach){
|
323 |
+
if(in_array($contratoEach, $this->_postMethodsExplode)){
|
324 |
+
$contrato = true;
|
325 |
+
}
|
326 |
+
}
|
327 |
+
|
328 |
+
if($contrato){
|
329 |
+
if($this->getConfigData('cod_admin') == '' || $this->getConfigData('senha_admin') == ''){
|
330 |
+
// Need correios admin data
|
331 |
+
$this->_throwError('coderror', 'Need correios admin data', __LINE__);
|
332 |
+
return false;
|
333 |
+
}else{
|
334 |
+
$client->setParameterGet('nCdEmpresa',$this->getConfigData('cod_admin'));
|
335 |
+
$client->setParameterGet('sDsSenha',$this->getConfigData('senha_admin'));
|
336 |
+
}
|
337 |
+
}
|
338 |
+
|
339 |
+
$content = $client->request()->getBody();
|
340 |
+
|
341 |
+
if ($content == ""){
|
342 |
+
throw new Exception("No XML returned [" . __LINE__ . "]");
|
343 |
+
}
|
344 |
+
|
345 |
+
libxml_use_internal_errors(true);
|
346 |
+
$sxe = simplexml_load_string($content);
|
347 |
+
if (!$sxe) {
|
348 |
+
throw new Exception("Bad XML [" . __LINE__ . "]");
|
349 |
+
}
|
350 |
+
|
351 |
+
// Load XML
|
352 |
+
$xml = new SimpleXMLElement($content);
|
353 |
+
|
354 |
+
if(count($xml->cServico) <= 0){
|
355 |
+
throw new Exception("No tag cServico in Correios XML [" . __LINE__ . "]");
|
356 |
+
}
|
357 |
+
|
358 |
+
return $xml->cServico;
|
359 |
+
|
360 |
+
} catch (Exception $e) {
|
361 |
+
//URL Error
|
362 |
+
$this->_throwError('urlerror', 'URL Error - ' . $e->getMessage(), __LINE__);
|
363 |
+
return false;
|
364 |
+
};
|
365 |
+
}
|
366 |
+
|
367 |
+
/**
|
368 |
+
* Apend shipping value to return
|
369 |
+
*
|
370 |
+
* @param $shipping_method string
|
371 |
+
* @param $shippingPrice float
|
372 |
+
* @param $correiosReturn array
|
373 |
+
* @return void
|
374 |
+
*/
|
375 |
+
protected function _apendShippingReturn($shipping_method, $shippingPrice = 0, $correiosDelivery = 0){
|
376 |
+
|
377 |
+
$method = Mage::getModel('shipping/rate_result_method');
|
378 |
+
$method->setCarrier($this->_code);
|
379 |
+
$method->setCarrierTitle($this->getConfigData('title'));
|
380 |
+
$method->setMethod($shipping_method);
|
381 |
+
|
382 |
+
$shippingCost = $shippingPrice;
|
383 |
+
$shippingPrice = $shippingPrice + $this->getConfigData('handling_fee');
|
384 |
+
|
385 |
+
$shipping_data = explode(',', $this->getConfigData('serv_' . $shipping_method));
|
386 |
+
|
387 |
+
if($shipping_method == $this->getConfigData('acobrar_code')){
|
388 |
+
$shipping_data[0] = $shipping_data[0] . ' ( R$' . number_format($shippingPrice, 2, ',', '.') . ' )';
|
389 |
+
$shippingPrice = 0;
|
390 |
+
}
|
391 |
+
|
392 |
+
// Show delivery days
|
393 |
+
if ($this->getConfigFlag('prazo_entrega')){
|
394 |
+
// Delivery days from WS
|
395 |
+
if($correiosDelivery > 0){
|
396 |
+
$method->setMethodTitle(sprintf($this->getConfigData('msgprazo'), $shipping_data[0], (int)($correiosDelivery + $this->getConfigData('add_prazo'))));
|
397 |
+
}else{
|
398 |
+
$method->setMethodTitle(sprintf($this->getConfigData('msgprazo'), $shipping_data[0], (int)($shipping_data[1] + $this->getConfigData('add_prazo'))));
|
399 |
+
}
|
400 |
+
}else{
|
401 |
+
$method->setMethodTitle($shipping_data[0]);
|
402 |
+
}
|
403 |
+
|
404 |
+
$method->setPrice($shippingPrice);
|
405 |
+
$method->setCost($shippingCost);
|
406 |
+
|
407 |
+
if($this->_freeMethodRequest === true){
|
408 |
+
$this->_freeMethodRequestResult->append($method);
|
409 |
+
}else{
|
410 |
+
$this->_result->append($method);
|
411 |
+
}
|
412 |
+
}
|
413 |
+
|
414 |
+
/**
|
415 |
+
* Throw error
|
416 |
+
*
|
417 |
+
* @param $message string
|
418 |
+
* @param $log string
|
419 |
+
* @param $line int
|
420 |
+
* @param $custom string
|
421 |
+
* @return void
|
422 |
+
*/
|
423 |
+
protected function _throwError($message, $log = null, $line = 'NO LINE', $custom = null){
|
424 |
+
|
425 |
+
$this->_result = null;
|
426 |
+
$this->_result = Mage::getModel('shipping/rate_result');
|
427 |
+
|
428 |
+
// Get error model
|
429 |
+
$error = Mage::getModel('shipping/rate_result_error');
|
430 |
+
$error->setCarrier($this->_code);
|
431 |
+
$error->setCarrierTitle($this->getConfigData('title'));
|
432 |
+
|
433 |
+
if(is_null($custom) || $this->getConfigData($message) == ''){
|
434 |
+
//Log error
|
435 |
+
Mage::log($this->_code . ' [' . $line . ']: ' . $log);
|
436 |
+
$error->setErrorMessage($this->getConfigData($message));
|
437 |
+
}else{
|
438 |
+
//Log error
|
439 |
+
Mage::log($this->_code . ' [' . $line . ']: ' . $log);
|
440 |
+
$error->setErrorMessage(sprintf($this->getConfigData($message), $custom));
|
441 |
+
}
|
442 |
+
|
443 |
+
// Apend error
|
444 |
+
$this->_result->append($error);
|
445 |
+
}
|
446 |
+
|
447 |
+
/**
|
448 |
+
* Generate Volume weight
|
449 |
+
*
|
450 |
+
* @return bool
|
451 |
+
*/
|
452 |
+
protected function _generateVolumeWeight(){
|
453 |
+
//Create volume weight
|
454 |
+
$pesoCubicoTotal = 0;
|
455 |
+
|
456 |
+
// Get all visible itens from quote
|
457 |
+
$items = Mage::getModel('checkout/cart')->getQuote()->getAllVisibleItems();
|
458 |
+
|
459 |
+
foreach($items as $item){
|
460 |
+
|
461 |
+
$itemAltura= 0;
|
462 |
+
$itemLargura = 0;
|
463 |
+
$itemComprimento = 0;
|
464 |
+
|
465 |
+
$_product = $item->getProduct();
|
466 |
+
|
467 |
+
if($_product->getData('volume_altura') == '' || (int)$_product->getData('volume_altura') == 0)
|
468 |
+
$itemAltura = $this->getConfigData('altura_padrao');
|
469 |
+
else
|
470 |
+
$itemAltura = $_product->getData('volume_altura');
|
471 |
+
|
472 |
+
if($_product->getData('volume_largura') == '' || (int)$_product->getData('volume_largura') == 0)
|
473 |
+
$itemLargura = $this->getConfigData('largura_padrao');
|
474 |
+
else
|
475 |
+
$itemLargura = $_product->getData('volume_largura');
|
476 |
+
|
477 |
+
if($_product->getData('volume_comprimento') == '' || (int)$_product->getData('volume_comprimento') == 0)
|
478 |
+
$itemComprimento = $this->getConfigData('comprimento_padrao');
|
479 |
+
else
|
480 |
+
$itemComprimento = $_product->getData('volume_comprimento');
|
481 |
+
|
482 |
+
if($this->getConfigFlag('check_dimensions')){
|
483 |
+
if(
|
484 |
+
$itemAltura > $this->getConfigData('volume_validation/altura_max')
|
485 |
+
|| $itemAltura < $this->getConfigData('volume_validation/altura_min')
|
486 |
+
|| $itemLargura > $this->getConfigData('volume_validation/largura_max')
|
487 |
+
|| $itemLargura < $this->getConfigData('volume_validation/largura_min')
|
488 |
+
|| $itemComprimento > $this->getConfigData('volume_validation/comprimento_max')
|
489 |
+
|| $itemComprimento < $this->getConfigData('volume_validation/comprimento_min')
|
490 |
+
|| ($itemAltura+$itemLargura+$itemComprimento) > $this->getConfigData('volume_validation/sum_max')
|
491 |
+
){
|
492 |
+
return false;
|
493 |
+
}
|
494 |
+
}
|
495 |
+
|
496 |
+
$pesoCubicoTotal += (($itemAltura*$itemLargura*$itemComprimento)*$item->getQty())/$this->getConfigData('coeficiente_volume');
|
497 |
+
}
|
498 |
+
|
499 |
+
$this->_volumeWeight = number_format($pesoCubicoTotal, 2, '.', '');
|
500 |
+
|
501 |
+
return true;
|
502 |
+
}
|
503 |
+
|
504 |
+
/**
|
505 |
+
* Generate free shipping for a product
|
506 |
+
*
|
507 |
+
* @param string $freeMethod
|
508 |
+
* @return void
|
509 |
+
*/
|
510 |
+
protected function _setFreeMethodRequest($freeMethod)
|
511 |
+
{
|
512 |
+
// Set request as free method request
|
513 |
+
$this->_freeMethodRequest = true;
|
514 |
+
$this->_freeMethodRequestResult = Mage::getModel('shipping/rate_result');
|
515 |
+
|
516 |
+
$this->_postMethods = $freeMethod;
|
517 |
+
$this->_postMethodsExplode = array($freeMethod);
|
518 |
+
|
519 |
+
// Tranform free shipping weight
|
520 |
+
if($this->getConfigData('weight_type') == 'gr')
|
521 |
+
{
|
522 |
+
$this->_freeMethodWeight = number_format($this->_freeMethodWeight/1000, 2, '.', '');
|
523 |
+
}
|
524 |
+
|
525 |
+
$this->_packageWeight = $this->_freeMethodWeight;
|
526 |
+
$this->_pacWeight = $this->_freeMethodWeight;
|
527 |
+
}
|
528 |
+
|
529 |
+
/**
|
530 |
+
* Clean correios error code, usualy with "-" before the code
|
531 |
+
*
|
532 |
+
* @param string $error
|
533 |
+
* @return int
|
534 |
+
*/
|
535 |
+
protected function _cleanCorreiosError($error){
|
536 |
+
$error = str_replace('-', '', $error);
|
537 |
+
$error = (int)$error;
|
538 |
+
return $error;
|
539 |
+
}
|
540 |
+
|
541 |
+
|
542 |
+
/**
|
543 |
+
* Check if current carrier offer support to tracking
|
544 |
+
*
|
545 |
+
* @return boolean true
|
546 |
+
*/
|
547 |
+
public function isTrackingAvailable() {
|
548 |
+
return true;
|
549 |
+
}
|
550 |
+
|
551 |
+
/**
|
552 |
+
* Get Tracking Info
|
553 |
+
*
|
554 |
+
* @param mixed $tracking
|
555 |
+
* @return mixed
|
556 |
+
*/
|
557 |
+
public function getTrackingInfo($tracking) {
|
558 |
+
$result = $this->getTracking($tracking);
|
559 |
+
if ($result instanceof Mage_Shipping_Model_Tracking_Result){
|
560 |
+
if ($trackings = $result->getAllTrackings()) {
|
561 |
+
return $trackings[0];
|
562 |
+
}
|
563 |
+
} elseif (is_string($result) && !empty($result)) {
|
564 |
+
return $result;
|
565 |
+
}
|
566 |
+
return false;
|
567 |
+
}
|
568 |
+
|
569 |
+
/**
|
570 |
+
* Get Tracking
|
571 |
+
*
|
572 |
+
* @param array $trackings
|
573 |
+
* @return Mage_Shipping_Model_Tracking_Result
|
574 |
+
*/
|
575 |
+
public function getTracking($trackings) {
|
576 |
+
$this->_result = Mage::getModel('shipping/tracking_result');
|
577 |
+
foreach ((array) $trackings as $code) {
|
578 |
+
$this->_getTracking($code);
|
579 |
+
}
|
580 |
+
return $this->_result;
|
581 |
+
}
|
582 |
+
|
583 |
+
/**
|
584 |
+
* Protected Get Tracking, opens the request to Correios
|
585 |
+
*
|
586 |
+
* @param string $code
|
587 |
+
* @return boolean
|
588 |
+
*/
|
589 |
+
protected function _getTracking($code) {
|
590 |
+
$error = Mage::getModel('shipping/tracking_result_error');
|
591 |
+
$error->setTracking($code);
|
592 |
+
$error->setCarrier($this->_code);
|
593 |
+
$error->setCarrierTitle($this->getConfigData('title'));
|
594 |
+
$error->setErrorMessage($this->getConfigData('urlerror'));
|
595 |
+
|
596 |
+
$url = 'http://websro.correios.com.br/sro_bin/txect01$.QueryList';
|
597 |
+
$url .= '?P_LINGUA=001&P_TIPO=001&P_COD_UNI=' . $code;
|
598 |
+
try {
|
599 |
+
$client = new Zend_Http_Client();
|
600 |
+
$client->setUri($url);
|
601 |
+
$content = $client->request();
|
602 |
+
$body = $content->getBody();
|
603 |
+
} catch (Exception $e) {
|
604 |
+
$this->_result->append($error);
|
605 |
+
return false;
|
606 |
+
}
|
607 |
+
|
608 |
+
if (!preg_match('#<table ([^>]+)>(.*?)</table>#is', $body, $matches)) {
|
609 |
+
$this->_result->append($error);
|
610 |
+
return false;
|
611 |
+
}
|
612 |
+
$table = $matches[2];
|
613 |
+
|
614 |
+
if (!preg_match_all('/<tr>(.*)<\/tr>/i', $table, $columns, PREG_SET_ORDER)) {
|
615 |
+
$this->_result->append($error);
|
616 |
+
return false;
|
617 |
+
}
|
618 |
+
|
619 |
+
$progress = array();
|
620 |
+
for ($i = 0; $i < count($columns); $i++) {
|
621 |
+
$column = $columns[$i][1];
|
622 |
+
|
623 |
+
$description = '';
|
624 |
+
$found = false;
|
625 |
+
if (preg_match('/<td rowspan="?2"?/i', $column) && preg_match('/<td rowspan="?2"?>(.*)<\/td><td>(.*)<\/td><td><font color="[A-Z0-9]{6}">(.*)<\/font><\/td>/i', $column, $matches)) {
|
626 |
+
if (preg_match('/<td colspan="?2"?>(.*)<\/td>/i', $columns[$i+1][1], $matchesDescription)) {
|
627 |
+
$description = str_replace(' ', '', $matchesDescription[1]);
|
628 |
+
}
|
629 |
+
|
630 |
+
$found = true;
|
631 |
+
} elseif (preg_match('/<td rowspan="?1"?>(.*)<\/td><td>(.*)<\/td><td><font color="[A-Z0-9]{6}">(.*)<\/font><\/td>/i', $column, $matches)) {
|
632 |
+
$found = true;
|
633 |
+
}
|
634 |
+
|
635 |
+
if ($found) {
|
636 |
+
$datetime = explode(' ', $matches[1]);
|
637 |
+
$locale = new Zend_Locale('pt_BR');
|
638 |
+
$date='';
|
639 |
+
$date = new Zend_Date($datetime[0], 'dd/MM/YYYY', $locale);
|
640 |
+
|
641 |
+
$track = array(
|
642 |
+
'deliverydate' => $date->toString('YYYY-MM-dd'),
|
643 |
+
'deliverytime' => $datetime[1] . ':00',
|
644 |
+
'deliverylocation' => htmlentities($matches[2]),
|
645 |
+
'status' => htmlentities($matches[3]),
|
646 |
+
'activity' => htmlentities($matches[3])
|
647 |
+
);
|
648 |
+
|
649 |
+
if ($description !== '') {
|
650 |
+
$track['activity'] = $matches[3] . ' - ' . htmlentities($description);
|
651 |
+
}
|
652 |
+
|
653 |
+
$progress[] = $track;
|
654 |
+
}
|
655 |
+
}
|
656 |
+
|
657 |
+
if (!empty($progress)) {
|
658 |
+
$track = $progress[0];
|
659 |
+
$track['progressdetail'] = $progress;
|
660 |
+
|
661 |
+
$tracking = Mage::getModel('shipping/tracking_result_status');
|
662 |
+
$tracking->setTracking($code);
|
663 |
+
$tracking->setCarrier('correios');
|
664 |
+
$tracking->setCarrierTitle($this->getConfigData('title'));
|
665 |
+
$tracking->addData($track);
|
666 |
+
|
667 |
+
$this->_result->append($tracking);
|
668 |
+
return true;
|
669 |
+
} else {
|
670 |
+
$this->_result->append($error);
|
671 |
+
return false;
|
672 |
+
}
|
673 |
+
}
|
674 |
+
|
675 |
+
/**
|
676 |
+
* Returns the allowed carrier methods
|
677 |
+
*
|
678 |
+
* @return array
|
679 |
+
*/
|
680 |
+
public function getAllowedMethods()
|
681 |
+
{
|
682 |
+
return array($this->_code => $this->getConfigData('title'));
|
683 |
+
}
|
684 |
+
|
685 |
+
/**
|
686 |
+
* Define ZIP Code as required
|
687 |
+
*
|
688 |
+
* @return boolean
|
689 |
+
*/
|
690 |
+
public function isZipCodeRequired()
|
691 |
+
{
|
692 |
+
return true;
|
693 |
+
}
|
694 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/PedroTeixeira/Correios/Model/Source/PostMethods.php
CHANGED
@@ -1,36 +1,35 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Pedro Teixeira
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* It is also available through the world-wide-web at this URL:
|
9 |
-
* http://
|
10 |
-
*
|
11 |
-
* @category PedroTeixeira
|
12 |
-
* @package PedroTeixeira_Correios
|
13 |
-
* @copyright Copyright (c)
|
14 |
-
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
-
* @license http://
|
16 |
-
*/
|
17 |
-
|
18 |
-
class PedroTeixeira_Correios_Model_Source_PostMethods
|
19 |
-
{
|
20 |
-
|
21 |
-
public function toOptionArray()
|
22 |
-
{
|
23 |
-
return array(
|
24 |
-
array('value'=>40010, 'label'=>Mage::helper('adminhtml')->__('Sedex Sem Contrato (
|
25 |
-
array('value'=>40096, 'label'=>Mage::helper('adminhtml')->__('Sedex Com Contrato (
|
26 |
-
array('value'=>81019, 'label'=>Mage::helper('adminhtml')->__('E-Sedex Com Contrato (
|
27 |
-
array('value'=>
|
28 |
-
array('value'=>
|
29 |
-
array('value'=>
|
30 |
-
array('value'=>
|
31 |
-
array('value'=>
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Pedro Teixeira
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the New BSD License.
|
8 |
+
* It is also available through the world-wide-web at this URL:
|
9 |
+
* http://www.pteixeira.com.br/new-bsd-license/
|
10 |
+
*
|
11 |
+
* @category PedroTeixeira
|
12 |
+
* @package PedroTeixeira_Correios
|
13 |
+
* @copyright Copyright (c) 2011 Pedro Teixeira (http://www.pteixeira.com.br)
|
14 |
+
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
+
* @license http://www.pteixeira.com.br/new-bsd-license/ New BSD License
|
16 |
+
*/
|
17 |
+
|
18 |
+
class PedroTeixeira_Correios_Model_Source_PostMethods
|
19 |
+
{
|
20 |
+
|
21 |
+
public function toOptionArray()
|
22 |
+
{
|
23 |
+
return array(
|
24 |
+
array('value'=>40010, 'label'=>Mage::helper('adminhtml')->__('Sedex Sem Contrato (40010)')),
|
25 |
+
array('value'=>40096, 'label'=>Mage::helper('adminhtml')->__('Sedex Com Contrato (40096)')),
|
26 |
+
array('value'=>81019, 'label'=>Mage::helper('adminhtml')->__('E-Sedex Com Contrato (81019)')),
|
27 |
+
array('value'=>41106, 'label'=>Mage::helper('adminhtml')->__('PAC Sem Contrato (41106)')),
|
28 |
+
array('value'=>41068, 'label'=>Mage::helper('adminhtml')->__('PAC Com Contrato (41068)')),
|
29 |
+
array('value'=>40215, 'label'=>Mage::helper('adminhtml')->__('Sedex 10 (40215)')),
|
30 |
+
array('value'=>40290, 'label'=>Mage::helper('adminhtml')->__('Sedex HOJE (40290)')),
|
31 |
+
array('value'=>40045, 'label'=>Mage::helper('adminhtml')->__('Sedex a Cobrar (40045)')),
|
32 |
+
);
|
33 |
+
}
|
34 |
+
|
35 |
+
}
|
|
app/code/community/PedroTeixeira/Correios/Model/Source/UrlMethods.php
DELETED
@@ -1,29 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Pedro Teixeira
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL).
|
8 |
-
* It is also available through the world-wide-web at this URL:
|
9 |
-
* http://opensource.org/licenses/osl-3.0.php
|
10 |
-
*
|
11 |
-
* @category PedroTeixeira
|
12 |
-
* @package PedroTeixeira_Correios
|
13 |
-
* @copyright Copyright (c) 2010 Pedro Teixeira (http://www.pteixeira.com.br)
|
14 |
-
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
16 |
-
*/
|
17 |
-
|
18 |
-
class PedroTeixeira_Correios_Model_Source_UrlMethods
|
19 |
-
{
|
20 |
-
|
21 |
-
public function toOptionArray()
|
22 |
-
{
|
23 |
-
return array(
|
24 |
-
array('value'=>1, 'label'=>Mage::helper('adminhtml')->__('Locaweb')),
|
25 |
-
array('value'=>0, 'label'=>Mage::helper('adminhtml')->__('Correios')),
|
26 |
-
);
|
27 |
-
}
|
28 |
-
|
29 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/PedroTeixeira/Correios/Model/Source/WeightType.php
CHANGED
@@ -1,29 +1,29 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Pedro Teixeira
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* It is also available through the world-wide-web at this URL:
|
9 |
-
* http://
|
10 |
-
*
|
11 |
-
* @category PedroTeixeira
|
12 |
-
* @package PedroTeixeira_Correios
|
13 |
-
* @copyright Copyright (c)
|
14 |
-
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
-
* @license http://
|
16 |
-
*/
|
17 |
-
|
18 |
-
class PedroTeixeira_Correios_Model_Source_WeightType
|
19 |
-
{
|
20 |
-
|
21 |
-
public function toOptionArray()
|
22 |
-
{
|
23 |
-
return array(
|
24 |
-
array('value'=>'gr', 'label'=>Mage::helper('adminhtml')->__('Gramas')),
|
25 |
-
array('value'=>'kg', 'label'=>Mage::helper('adminhtml')->__('Kilos')),
|
26 |
-
);
|
27 |
-
}
|
28 |
-
|
29 |
-
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Pedro Teixeira
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the New BSD License.
|
8 |
+
* It is also available through the world-wide-web at this URL:
|
9 |
+
* http://www.pteixeira.com.br/new-bsd-license/
|
10 |
+
*
|
11 |
+
* @category PedroTeixeira
|
12 |
+
* @package PedroTeixeira_Correios
|
13 |
+
* @copyright Copyright (c) 2011 Pedro Teixeira (http://www.pteixeira.com.br)
|
14 |
+
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
+
* @license http://www.pteixeira.com.br/new-bsd-license/ New BSD License
|
16 |
+
*/
|
17 |
+
|
18 |
+
class PedroTeixeira_Correios_Model_Source_WeightType
|
19 |
+
{
|
20 |
+
|
21 |
+
public function toOptionArray()
|
22 |
+
{
|
23 |
+
return array(
|
24 |
+
array('value'=>'gr', 'label'=>Mage::helper('adminhtml')->__('Gramas')),
|
25 |
+
array('value'=>'kg', 'label'=>Mage::helper('adminhtml')->__('Kilos')),
|
26 |
+
);
|
27 |
+
}
|
28 |
+
|
29 |
+
}
|
app/code/community/PedroTeixeira/Correios/etc/config.xml
CHANGED
@@ -1,138 +1,146 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<!--
|
3 |
-
/**
|
4 |
-
* Pedro Teixeira
|
5 |
-
*
|
6 |
-
* NOTICE OF LICENSE
|
7 |
-
*
|
8 |
-
* This source file is subject to the
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
-
*
|
12 |
-
* @category PedroTeixeira
|
13 |
-
* @package PedroTeixeira_Correios
|
14 |
-
* @copyright Copyright (c)
|
15 |
-
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
16 |
-
* @license http://
|
17 |
-
*/
|
18 |
-
-->
|
19 |
-
<config>
|
20 |
-
<modules>
|
21 |
-
<PedroTeixeira_Correios>
|
22 |
-
<version>4.
|
23 |
-
<depends>
|
24 |
-
<Mage_Shipping />
|
25 |
-
</depends>
|
26 |
-
</PedroTeixeira_Correios>
|
27 |
-
</modules>
|
28 |
-
<global>
|
29 |
-
<sales>
|
30 |
-
<quote>
|
31 |
-
<item>
|
32 |
-
<product_attributes>
|
33 |
-
<volume_altura/>
|
34 |
-
<volume_comprimento/>
|
35 |
-
<volume_largura/>
|
36 |
-
</product_attributes>
|
37 |
-
</item>
|
38 |
-
</quote>
|
39 |
-
</sales>
|
40 |
-
<models>
|
41 |
-
<pedroteixeira_correios>
|
42 |
-
<class>PedroTeixeira_Correios_Model</class>
|
43 |
-
</pedroteixeira_correios>
|
44 |
-
</models>
|
45 |
-
<resources>
|
46 |
-
<pedroteixeira_correios_setup>
|
47 |
-
<setup>
|
48 |
-
<module>PedroTeixeira_Correios</module>
|
49 |
-
</setup>
|
50 |
-
<connection>
|
51 |
-
<use>directory_setup</use>
|
52 |
-
</connection>
|
53 |
-
</pedroteixeira_correios_setup>
|
54 |
-
</resources>
|
55 |
-
<helpers>
|
56 |
-
<pedroteixeira_correios>
|
57 |
-
<class>PedroTeixeira_Correios_Helper</class>
|
58 |
-
</pedroteixeira_correios>
|
59 |
-
</helpers>
|
60 |
-
<sales>
|
61 |
-
<shipping>
|
62 |
-
<carriers>
|
63 |
-
<pedroteixeira_correios>
|
64 |
-
<class>PedroTeixeira_Correios_Model_Carrier_CorreiosMethod</class>
|
65 |
-
</pedroteixeira_correios>
|
66 |
-
</carriers>
|
67 |
-
</shipping>
|
68 |
-
</sales>
|
69 |
-
</global>
|
70 |
-
|
71 |
-
<default>
|
72 |
-
<carriers>
|
73 |
-
<pedroteixeira_correios>
|
74 |
-
<!-- GENERAL -->
|
75 |
-
<active>1</active>
|
76 |
-
<model>PedroTeixeira_Correios_Model_Carrier_CorreiosMethod</model>
|
77 |
-
<title>Correios</title>
|
78 |
-
<postmethods>40010</postmethods>
|
79 |
-
<die_errors>1,2,3,4,5,33,34,35,36,37,38,888,7,99</die_errors>
|
80 |
-
<prazo_entrega>0</prazo_entrega>
|
81 |
-
<
|
82 |
-
<
|
83 |
-
<
|
84 |
-
<
|
85 |
-
<
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
<
|
90 |
-
<
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
<
|
95 |
-
<
|
96 |
-
<
|
97 |
-
<
|
98 |
-
<
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
<
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
<
|
114 |
-
<
|
115 |
-
<
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
<
|
120 |
-
<
|
121 |
-
<
|
122 |
-
<
|
123 |
-
<
|
124 |
-
<
|
125 |
-
<
|
126 |
-
<
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
<
|
131 |
-
|
132 |
-
<
|
133 |
-
<
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Pedro Teixeira
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the New BSD License.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.pteixeira.com.br/new-bsd-license/
|
11 |
+
*
|
12 |
+
* @category PedroTeixeira
|
13 |
+
* @package PedroTeixeira_Correios
|
14 |
+
* @copyright Copyright (c) 2011 Pedro Teixeira (http://www.pteixeira.com.br)
|
15 |
+
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
16 |
+
* @license http://www.pteixeira.com.br/new-bsd-license/ New BSD License
|
17 |
+
*/
|
18 |
+
-->
|
19 |
+
<config>
|
20 |
+
<modules>
|
21 |
+
<PedroTeixeira_Correios>
|
22 |
+
<version>4.2.0</version>
|
23 |
+
<depends>
|
24 |
+
<Mage_Shipping />
|
25 |
+
</depends>
|
26 |
+
</PedroTeixeira_Correios>
|
27 |
+
</modules>
|
28 |
+
<global>
|
29 |
+
<sales>
|
30 |
+
<quote>
|
31 |
+
<item>
|
32 |
+
<product_attributes>
|
33 |
+
<volume_altura/>
|
34 |
+
<volume_comprimento/>
|
35 |
+
<volume_largura/>
|
36 |
+
</product_attributes>
|
37 |
+
</item>
|
38 |
+
</quote>
|
39 |
+
</sales>
|
40 |
+
<models>
|
41 |
+
<pedroteixeira_correios>
|
42 |
+
<class>PedroTeixeira_Correios_Model</class>
|
43 |
+
</pedroteixeira_correios>
|
44 |
+
</models>
|
45 |
+
<resources>
|
46 |
+
<pedroteixeira_correios_setup>
|
47 |
+
<setup>
|
48 |
+
<module>PedroTeixeira_Correios</module>
|
49 |
+
</setup>
|
50 |
+
<connection>
|
51 |
+
<use>directory_setup</use>
|
52 |
+
</connection>
|
53 |
+
</pedroteixeira_correios_setup>
|
54 |
+
</resources>
|
55 |
+
<helpers>
|
56 |
+
<pedroteixeira_correios>
|
57 |
+
<class>PedroTeixeira_Correios_Helper</class>
|
58 |
+
</pedroteixeira_correios>
|
59 |
+
</helpers>
|
60 |
+
<sales>
|
61 |
+
<shipping>
|
62 |
+
<carriers>
|
63 |
+
<pedroteixeira_correios>
|
64 |
+
<class>PedroTeixeira_Correios_Model_Carrier_CorreiosMethod</class>
|
65 |
+
</pedroteixeira_correios>
|
66 |
+
</carriers>
|
67 |
+
</shipping>
|
68 |
+
</sales>
|
69 |
+
</global>
|
70 |
+
|
71 |
+
<default>
|
72 |
+
<carriers>
|
73 |
+
<pedroteixeira_correios>
|
74 |
+
<!-- GENERAL -->
|
75 |
+
<active>1</active>
|
76 |
+
<model>PedroTeixeira_Correios_Model_Carrier_CorreiosMethod</model>
|
77 |
+
<title>Correios</title>
|
78 |
+
<postmethods>40010</postmethods>
|
79 |
+
<die_errors>1,2,3,4,5,33,34,35,36,37,38,888,7,99</die_errors>
|
80 |
+
<prazo_entrega>0</prazo_entrega>
|
81 |
+
<check_dimensions>1</check_dimensions>
|
82 |
+
<min_order_value>0</min_order_value>
|
83 |
+
<max_order_value>10000</max_order_value>
|
84 |
+
<maxweight>30</maxweight>
|
85 |
+
<handling_fee>0</handling_fee>
|
86 |
+
<ws_timeout>20</ws_timeout>
|
87 |
+
|
88 |
+
<!-- OPTIONS -->
|
89 |
+
<mao_propria>0</mao_propria>
|
90 |
+
<aviso_recebimento>0</aviso_recebimento>
|
91 |
+
<valor_declarado>0</valor_declarado>
|
92 |
+
|
93 |
+
<!-- VOLUME -->
|
94 |
+
<altura_padrao>2</altura_padrao>
|
95 |
+
<comprimento_padrao>16</comprimento_padrao>
|
96 |
+
<largura_padrao>11</largura_padrao>
|
97 |
+
<altura_sent>2</altura_sent>
|
98 |
+
<comprimento_sent>16</comprimento_sent>
|
99 |
+
<largura_sent>11</largura_sent>
|
100 |
+
|
101 |
+
<!-- http://www.correios.com.br/encomendas/prazo/Formato.cfm -->
|
102 |
+
<volume_validation>
|
103 |
+
<altura_max>90</altura_max>
|
104 |
+
<altura_min>2</altura_min>
|
105 |
+
<comprimento_max>90</comprimento_max>
|
106 |
+
<comprimento_min>16</comprimento_min>
|
107 |
+
<largura_max>90</largura_max>
|
108 |
+
<largura_min>11</largura_min>
|
109 |
+
<sum_max>160</sum_max>
|
110 |
+
</volume_validation>
|
111 |
+
|
112 |
+
<!-- CONFIG -->
|
113 |
+
<free_method>40010</free_method>
|
114 |
+
<weight_type>kg</weight_type>
|
115 |
+
<add_prazo>0</add_prazo>
|
116 |
+
<showmethod>1</showmethod>
|
117 |
+
|
118 |
+
<!-- MESSAGES -->
|
119 |
+
<msgprazo>%s - Em média %d dia(s)</msgprazo>
|
120 |
+
<correioserror>Houve um erro inesperado, por favor entre em contato. %s</correioserror>
|
121 |
+
<valueerror>Valor de compra fora do permitido pelos Correios. Por favor entre em contato conosco.</valueerror>
|
122 |
+
<zipcodeerror>Por favor, corrija o CEP digitado, ele não está correto.</zipcodeerror>
|
123 |
+
<maxweighterror>Peso dos produtos acima do permitido pelos Correios. Por favor entre em contato conosco.</maxweighterror>
|
124 |
+
<weightzeroerror>Lojista: O peso do produto deverá ser maior que zero. Se você está usando a media de peso como gramas, o peso mínimo é de 10 gramas.</weightzeroerror>
|
125 |
+
<coderror>Lojista: Para calcular esse serviço você precisa ter contrato com os Correios.</coderror>
|
126 |
+
<urlerror>Esse método de envio está fora do ar. Por favor entre em contato conosco.</urlerror>
|
127 |
+
<dimensionerror>Dimensões dos produtos fora do permitido pelos Correios.</dimensionerror>
|
128 |
+
|
129 |
+
<!-- SYSTEM -->
|
130 |
+
<serv_40010>Sedex,3</serv_40010>
|
131 |
+
<serv_40096>Sedex,3</serv_40096>
|
132 |
+
<serv_81019>E-Sedex,3</serv_81019>
|
133 |
+
<serv_41106>PAC,3</serv_41106>
|
134 |
+
<serv_41068>PAC,3</serv_41068>
|
135 |
+
<serv_40215>Sedex 10,1</serv_40215>
|
136 |
+
<serv_40290>Sedex HOJE,1</serv_40290>
|
137 |
+
<serv_40045>Sedex a Cobrar,5</serv_40045>
|
138 |
+
<volume_weight_min>5</volume_weight_min>
|
139 |
+
<coeficiente_volume>6000</coeficiente_volume>
|
140 |
+
<acobrar_code>40045</acobrar_code>
|
141 |
+
<contrato_codes>40096,81019,41068</contrato_codes>
|
142 |
+
<url_ws_correios>http://ws.correios.com.br/calculador/CalcPrecoPrazo.aspx</url_ws_correios>
|
143 |
+
</pedroteixeira_correios>
|
144 |
+
</carriers>
|
145 |
+
</default>
|
146 |
+
</config>
|
app/code/community/PedroTeixeira/Correios/etc/system.xml
CHANGED
@@ -1,318 +1,331 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<!--
|
3 |
-
/**
|
4 |
-
* Pedro Teixeira
|
5 |
-
*
|
6 |
-
* NOTICE OF LICENSE
|
7 |
-
*
|
8 |
-
* This source file is subject to the
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
-
*
|
12 |
-
* @category PedroTeixeira
|
13 |
-
* @package PedroTeixeira_Correios
|
14 |
-
* @copyright Copyright (c)
|
15 |
-
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
16 |
-
* @license http://
|
17 |
-
*/
|
18 |
-
-->
|
19 |
-
<config>
|
20 |
-
<sections>
|
21 |
-
<carriers>
|
22 |
-
<groups>
|
23 |
-
<pedroteixeira_correios translate="label" module="pedroteixeira_correios">
|
24 |
-
<label>Correios - Pedro Teixeira</label>
|
25 |
-
<frontend_type>text</frontend_type>
|
26 |
-
<sort_order>1</sort_order>
|
27 |
-
<show_in_default>1</show_in_default>
|
28 |
-
<show_in_website>1</show_in_website>
|
29 |
-
<show_in_store>1</show_in_store>
|
30 |
-
<comment>
|
31 |
-
<![CDATA[
|
32 |
-
<div>
|
33 |
-
<br />
|
34 |
-
<strong style="font-size:14px">Informações Importantes</strong><br /><br />
|
35 |
-
Você pode tirar dúvidas ou sugerir melhorias do módulo através do site
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
Para
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
<
|
54 |
-
<
|
55 |
-
<
|
56 |
-
<
|
57 |
-
<
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
<
|
63 |
-
<
|
64 |
-
<
|
65 |
-
<
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
<
|
71 |
-
<
|
72 |
-
<
|
73 |
-
<
|
74 |
-
<
|
75 |
-
<
|
76 |
-
|
77 |
-
|
78 |
-
<
|
79 |
-
|
80 |
-
|
81 |
-
<
|
82 |
-
<
|
83 |
-
<
|
84 |
-
<
|
85 |
-
<
|
86 |
-
<
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
<
|
92 |
-
<
|
93 |
-
<
|
94 |
-
<
|
95 |
-
<
|
96 |
-
<
|
97 |
-
|
98 |
-
|
99 |
-
<
|
100 |
-
|
101 |
-
|
102 |
-
<
|
103 |
-
<
|
104 |
-
<
|
105 |
-
<
|
106 |
-
<
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
<
|
111 |
-
<
|
112 |
-
<sort_order>40</sort_order>
|
113 |
-
<show_in_default>1</show_in_default>
|
114 |
-
<show_in_website>1</show_in_website>
|
115 |
-
<show_in_store>1</show_in_store>
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
<
|
120 |
-
<
|
121 |
-
<
|
122 |
-
<
|
123 |
-
<
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
<
|
129 |
-
<
|
130 |
-
<
|
131 |
-
<
|
132 |
-
<
|
133 |
-
|
134 |
-
|
135 |
-
<
|
136 |
-
|
137 |
-
|
138 |
-
<
|
139 |
-
<
|
140 |
-
<
|
141 |
-
<
|
142 |
-
|
143 |
-
|
144 |
-
<
|
145 |
-
|
146 |
-
|
147 |
-
<
|
148 |
-
<
|
149 |
-
<
|
150 |
-
<
|
151 |
-
|
152 |
-
|
153 |
-
<
|
154 |
-
|
155 |
-
|
156 |
-
<
|
157 |
-
<
|
158 |
-
<
|
159 |
-
<
|
160 |
-
|
161 |
-
|
162 |
-
<
|
163 |
-
|
164 |
-
|
165 |
-
<
|
166 |
-
<
|
167 |
-
<
|
168 |
-
<
|
169 |
-
|
170 |
-
|
171 |
-
<
|
172 |
-
<
|
173 |
-
|
174 |
-
|
175 |
-
<
|
176 |
-
<
|
177 |
-
<
|
178 |
-
|
179 |
-
|
180 |
-
<
|
181 |
-
<
|
182 |
-
|
183 |
-
|
184 |
-
<
|
185 |
-
<
|
186 |
-
<
|
187 |
-
|
188 |
-
|
189 |
-
<
|
190 |
-
<
|
191 |
-
|
192 |
-
|
193 |
-
<
|
194 |
-
<
|
195 |
-
|
196 |
-
|
197 |
-
<
|
198 |
-
<
|
199 |
-
<
|
200 |
-
|
201 |
-
|
202 |
-
<
|
203 |
-
|
204 |
-
|
205 |
-
<
|
206 |
-
<
|
207 |
-
<
|
208 |
-
|
209 |
-
|
210 |
-
<
|
211 |
-
<
|
212 |
-
|
213 |
-
|
214 |
-
<
|
215 |
-
<
|
216 |
-
|
217 |
-
|
218 |
-
<
|
219 |
-
<
|
220 |
-
<
|
221 |
-
|
222 |
-
|
223 |
-
<
|
224 |
-
<
|
225 |
-
|
226 |
-
|
227 |
-
<
|
228 |
-
<
|
229 |
-
<
|
230 |
-
|
231 |
-
|
232 |
-
<
|
233 |
-
<
|
234 |
-
|
235 |
-
|
236 |
-
<
|
237 |
-
<
|
238 |
-
|
239 |
-
|
240 |
-
<
|
241 |
-
<
|
242 |
-
<
|
243 |
-
|
244 |
-
|
245 |
-
<
|
246 |
-
|
247 |
-
|
248 |
-
<
|
249 |
-
<
|
250 |
-
<
|
251 |
-
|
252 |
-
|
253 |
-
<
|
254 |
-
|
255 |
-
|
256 |
-
<
|
257 |
-
<
|
258 |
-
<
|
259 |
-
|
260 |
-
|
261 |
-
<
|
262 |
-
|
263 |
-
|
264 |
-
<
|
265 |
-
<
|
266 |
-
<
|
267 |
-
|
268 |
-
|
269 |
-
<
|
270 |
-
|
271 |
-
|
272 |
-
<
|
273 |
-
<
|
274 |
-
<
|
275 |
-
|
276 |
-
|
277 |
-
<
|
278 |
-
|
279 |
-
|
280 |
-
<
|
281 |
-
<
|
282 |
-
<
|
283 |
-
|
284 |
-
|
285 |
-
<
|
286 |
-
|
287 |
-
|
288 |
-
<
|
289 |
-
<
|
290 |
-
<
|
291 |
-
|
292 |
-
|
293 |
-
<
|
294 |
-
|
295 |
-
|
296 |
-
<
|
297 |
-
<
|
298 |
-
<
|
299 |
-
|
300 |
-
|
301 |
-
<
|
302 |
-
<
|
303 |
-
<
|
304 |
-
|
305 |
-
|
306 |
-
<
|
307 |
-
|
308 |
-
|
309 |
-
<
|
310 |
-
<
|
311 |
-
<
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Pedro Teixeira
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the New BSD License.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.pteixeira.com.br/new-bsd-license/
|
11 |
+
*
|
12 |
+
* @category PedroTeixeira
|
13 |
+
* @package PedroTeixeira_Correios
|
14 |
+
* @copyright Copyright (c) 2011 Pedro Teixeira (http://www.pteixeira.com.br)
|
15 |
+
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
16 |
+
* @license http://www.pteixeira.com.br/new-bsd-license/ New BSD License
|
17 |
+
*/
|
18 |
+
-->
|
19 |
+
<config>
|
20 |
+
<sections>
|
21 |
+
<carriers>
|
22 |
+
<groups>
|
23 |
+
<pedroteixeira_correios translate="label" module="pedroteixeira_correios">
|
24 |
+
<label>Correios - Pedro Teixeira</label>
|
25 |
+
<frontend_type>text</frontend_type>
|
26 |
+
<sort_order>1</sort_order>
|
27 |
+
<show_in_default>1</show_in_default>
|
28 |
+
<show_in_website>1</show_in_website>
|
29 |
+
<show_in_store>1</show_in_store>
|
30 |
+
<comment>
|
31 |
+
<![CDATA[
|
32 |
+
<div>
|
33 |
+
<br />
|
34 |
+
<strong style="font-size:14px">Informações Importantes</strong><br /><br />
|
35 |
+
Você pode tirar dúvidas ou sugerir melhorias do módulo através do site
|
36 |
+
<a href="http://www.pteixeira.com.br/" target="_blank">www.pteixeira.com.br</a>.<br /><br />
|
37 |
+
Na versão <b>4.2.0</b> o módulo de cálculo de frete foi atualizado para utilizar a nova
|
38 |
+
lógica de cálculo de peso volumétrico para todos os serviços, teve sua licença
|
39 |
+
alterada para <a href="http://www.pteixeira.com.br/new-bsd-license/" target="_blank">New BSD</a>,
|
40 |
+
possibilidade de utilizar limites de dimensões dos Correios, retirada da URL de cálculo da
|
41 |
+
Locaweb além de outras correções e melhorias.<br /><br />
|
42 |
+
Lembre-se de configurar as "Definições de Envio" no menu ao lado esquerdo.<br /><br />
|
43 |
+
Para serviços que tenham em seu nome "Com Contrato", é necessário configurar o "Código
|
44 |
+
Administrativo dos Correios" e "Senha Administrativa dos Correios".<br /><br />
|
45 |
+
Para utilizar as regras de desconto de frete, você deve configurar o "Serviço para entrega gratuita",
|
46 |
+
lembre-se de habilitar o serviço.<br /><br />
|
47 |
+
<hr /><br /><br />
|
48 |
+
</div>
|
49 |
+
]]>
|
50 |
+
</comment>
|
51 |
+
<fields>
|
52 |
+
<active translate="label">
|
53 |
+
<label>Habilitar</label>
|
54 |
+
<frontend_type>select</frontend_type>
|
55 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
56 |
+
<sort_order>10</sort_order>
|
57 |
+
<show_in_default>1</show_in_default>
|
58 |
+
<show_in_website>1</show_in_website>
|
59 |
+
<show_in_store>1</show_in_store>
|
60 |
+
</active>
|
61 |
+
<title translate="label">
|
62 |
+
<label>Nome do Meio de Entrega</label>
|
63 |
+
<frontend_type>text</frontend_type>
|
64 |
+
<sort_order>15</sort_order>
|
65 |
+
<show_in_default>1</show_in_default>
|
66 |
+
<show_in_website>1</show_in_website>
|
67 |
+
<show_in_store>1</show_in_store>
|
68 |
+
</title>
|
69 |
+
<weight_type translate="label">
|
70 |
+
<label>Formato do Peso</label>
|
71 |
+
<frontend_type>select</frontend_type>
|
72 |
+
<source_model>PedroTeixeira_Correios_Model_Source_WeightType</source_model>
|
73 |
+
<sort_order>20</sort_order>
|
74 |
+
<show_in_default>1</show_in_default>
|
75 |
+
<show_in_website>1</show_in_website>
|
76 |
+
<show_in_store>1</show_in_store>
|
77 |
+
<comment>Formato do peso dos produtos.</comment>
|
78 |
+
<tooltip>O formato do peso irá implicar na maneira como o mesmo é cadastrado no produto, por exemplo, 1 Kg no formato "Kilo" será "1.000", já em "Gramas" será "1000.000".</tooltip>
|
79 |
+
</weight_type>
|
80 |
+
<postmethods translate="label">
|
81 |
+
<label>Serviços</label>
|
82 |
+
<frontend_type>multiselect</frontend_type>
|
83 |
+
<source_model>PedroTeixeira_Correios_Model_Source_PostMethods</source_model>
|
84 |
+
<sort_order>25</sort_order>
|
85 |
+
<show_in_default>1</show_in_default>
|
86 |
+
<show_in_website>1</show_in_website>
|
87 |
+
<show_in_store>1</show_in_store>
|
88 |
+
<comment>Serviços que estarão disponíveis, lembre-se de usar os serviços correspondentes a fonte configurada.</comment>
|
89 |
+
</postmethods>
|
90 |
+
<free_method translate="label">
|
91 |
+
<label>Serviço Para Entrega Gratuita</label>
|
92 |
+
<frontend_type>select</frontend_type>
|
93 |
+
<frontend_class>free-method</frontend_class>
|
94 |
+
<source_model>PedroTeixeira_Correios_Model_Source_PostMethods</source_model>
|
95 |
+
<sort_order>30</sort_order>
|
96 |
+
<show_in_default>1</show_in_default>
|
97 |
+
<show_in_website>1</show_in_website>
|
98 |
+
<show_in_store>1</show_in_store>
|
99 |
+
<comment>Quando usar um cupom oferecendo frete gratuito, qual serviço será gratuito. Lembre-se de habilitar o serviço.</comment>
|
100 |
+
</free_method>
|
101 |
+
<cod_admin translate="label">
|
102 |
+
<label>Código Administrativo dos Correios (Serviços Com Contrato)</label>
|
103 |
+
<frontend_type>text</frontend_type>
|
104 |
+
<sort_order>35</sort_order>
|
105 |
+
<show_in_default>1</show_in_default>
|
106 |
+
<show_in_website>1</show_in_website>
|
107 |
+
<show_in_store>1</show_in_store>
|
108 |
+
</cod_admin>
|
109 |
+
<senha_admin translate="label">
|
110 |
+
<label>Senha Administrativa dos Correios (Serviços Com Contrato)</label>
|
111 |
+
<frontend_type>text</frontend_type>
|
112 |
+
<sort_order>40</sort_order>
|
113 |
+
<show_in_default>1</show_in_default>
|
114 |
+
<show_in_website>1</show_in_website>
|
115 |
+
<show_in_store>1</show_in_store>
|
116 |
+
<comment>O padrão de senha são os 8 primeiros dígitos do CNPJ</comment>
|
117 |
+
</senha_admin>
|
118 |
+
<prazo_entrega translate="label">
|
119 |
+
<label>Exibir Prazo de Entrega</label>
|
120 |
+
<frontend_type>select</frontend_type>
|
121 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
122 |
+
<sort_order>45</sort_order>
|
123 |
+
<show_in_default>1</show_in_default>
|
124 |
+
<show_in_website>1</show_in_website>
|
125 |
+
<show_in_store>1</show_in_store>
|
126 |
+
</prazo_entrega>
|
127 |
+
<msgprazo translate="label">
|
128 |
+
<label>Mensagem que Exibe o Prazo de Entrega</label>
|
129 |
+
<frontend_type>text</frontend_type>
|
130 |
+
<sort_order>50</sort_order>
|
131 |
+
<show_in_default>1</show_in_default>
|
132 |
+
<show_in_website>1</show_in_website>
|
133 |
+
<show_in_store>1</show_in_store>
|
134 |
+
<tooltip>"%s" para o nome do serviço, por exemplo "Sedex", "%d" para o número de dias.</tooltip>
|
135 |
+
<depends><prazo_entrega>1</prazo_entrega></depends>
|
136 |
+
</msgprazo>
|
137 |
+
<mao_propria translate="label">
|
138 |
+
<label>Utilizar Serviço de Mão Própria</label>
|
139 |
+
<frontend_type>select</frontend_type>
|
140 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
141 |
+
<sort_order>60</sort_order>
|
142 |
+
<show_in_default>1</show_in_default>
|
143 |
+
<show_in_website>1</show_in_website>
|
144 |
+
<show_in_store>1</show_in_store>
|
145 |
+
</mao_propria>
|
146 |
+
<aviso_recebimento translate="label">
|
147 |
+
<label>Utilizar Serviço de Aviso de Recebimento</label>
|
148 |
+
<frontend_type>select</frontend_type>
|
149 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
150 |
+
<sort_order>70</sort_order>
|
151 |
+
<show_in_default>1</show_in_default>
|
152 |
+
<show_in_website>1</show_in_website>
|
153 |
+
<show_in_store>1</show_in_store>
|
154 |
+
</aviso_recebimento>
|
155 |
+
<valor_declarado translate="label">
|
156 |
+
<label>Utilizar Serviço de Valor Declarado</label>
|
157 |
+
<frontend_type>select</frontend_type>
|
158 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
159 |
+
<sort_order>80</sort_order>
|
160 |
+
<show_in_default>1</show_in_default>
|
161 |
+
<show_in_website>1</show_in_website>
|
162 |
+
<show_in_store>1</show_in_store>
|
163 |
+
</valor_declarado>
|
164 |
+
<check_dimensions>
|
165 |
+
<label>Validar Dimensões dos Produtos</label>
|
166 |
+
<frontend_type>select</frontend_type>
|
167 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
168 |
+
<sort_order>90</sort_order>
|
169 |
+
<show_in_default>1</show_in_default>
|
170 |
+
<show_in_website>1</show_in_website>
|
171 |
+
<show_in_store>1</show_in_store>
|
172 |
+
<comment><![CDATA[Ao habilitar essa funcionalidade cada produto será validado seguindo a regra de dimensões dos Correios.<br />A regra pode ser encontrada <a href="http://www.correios.com.br/encomendas/prazo/Formato.cfm" target="_blank">nesse link</a>.]]></comment>
|
173 |
+
</check_dimensions>
|
174 |
+
<altura_padrao translate="label">
|
175 |
+
<label>Altura Padrão (cm)</label>
|
176 |
+
<frontend_type>text</frontend_type>
|
177 |
+
<sort_order>100</sort_order>
|
178 |
+
<show_in_default>1</show_in_default>
|
179 |
+
<show_in_website>1</show_in_website>
|
180 |
+
<show_in_store>1</show_in_store>
|
181 |
+
<comment><![CDATA[Quando não configurada no produto será usada.<br />Mínimo de 2 cm.]]></comment>
|
182 |
+
</altura_padrao>
|
183 |
+
<comprimento_padrao translate="label">
|
184 |
+
<label>Comprimento Padrão (cm)</label>
|
185 |
+
<frontend_type>text</frontend_type>
|
186 |
+
<sort_order>110</sort_order>
|
187 |
+
<show_in_default>1</show_in_default>
|
188 |
+
<show_in_website>1</show_in_website>
|
189 |
+
<show_in_store>1</show_in_store>
|
190 |
+
<comment><![CDATA[Quando não configurado no produto será usado.<br />Mínimo de 16 cm.]]></comment>
|
191 |
+
</comprimento_padrao>
|
192 |
+
<largura_padrao translate="label">
|
193 |
+
<label>Largura Padrão (cm)</label>
|
194 |
+
<frontend_type>text</frontend_type>
|
195 |
+
<sort_order>120</sort_order>
|
196 |
+
<show_in_default>1</show_in_default>
|
197 |
+
<show_in_website>1</show_in_website>
|
198 |
+
<show_in_store>1</show_in_store>
|
199 |
+
<comment><![CDATA[Quando não configurada no produto será usada.<br />Mínimo de 11 cm.]]></comment>
|
200 |
+
</largura_padrao>
|
201 |
+
<min_order_value translate="label">
|
202 |
+
<label>Valor Mínimo de Compra</label>
|
203 |
+
<frontend_type>text</frontend_type>
|
204 |
+
<sort_order>130</sort_order>
|
205 |
+
<show_in_default>1</show_in_default>
|
206 |
+
<show_in_website>1</show_in_website>
|
207 |
+
<show_in_store>1</show_in_store>
|
208 |
+
</min_order_value>
|
209 |
+
<max_order_value translate="label">
|
210 |
+
<label>Valor Máximo de Compra</label>
|
211 |
+
<frontend_type>text</frontend_type>
|
212 |
+
<sort_order>140</sort_order>
|
213 |
+
<show_in_default>1</show_in_default>
|
214 |
+
<show_in_website>1</show_in_website>
|
215 |
+
<show_in_store>1</show_in_store>
|
216 |
+
</max_order_value>
|
217 |
+
<maxweight translate="label">
|
218 |
+
<label>Peso Máximo Permitido Pelos Correios</label>
|
219 |
+
<frontend_type>text</frontend_type>
|
220 |
+
<sort_order>150</sort_order>
|
221 |
+
<show_in_default>1</show_in_default>
|
222 |
+
<show_in_website>1</show_in_website>
|
223 |
+
<show_in_store>1</show_in_store>
|
224 |
+
<comment>Utilize o mesmo formato de peso configurado no módulo, kilos ou gramas.</comment>
|
225 |
+
</maxweight>
|
226 |
+
<handling_fee translate="label">
|
227 |
+
<label>Taxa de Postagem</label>
|
228 |
+
<frontend_type>text</frontend_type>
|
229 |
+
<sort_order>160</sort_order>
|
230 |
+
<show_in_default>1</show_in_default>
|
231 |
+
<show_in_website>1</show_in_website>
|
232 |
+
<show_in_store>1</show_in_store>
|
233 |
+
<comment>Essa taxa será adicionada ao valor do frete.</comment>
|
234 |
+
</handling_fee>
|
235 |
+
<add_prazo translate="label">
|
236 |
+
<label>Adicionar ao prazo dos Correios (dias)</label>
|
237 |
+
<frontend_type>text</frontend_type>
|
238 |
+
<sort_order>170</sort_order>
|
239 |
+
<show_in_default>1</show_in_default>
|
240 |
+
<show_in_website>1</show_in_website>
|
241 |
+
<show_in_store>1</show_in_store>
|
242 |
+
<comment>Adicionará mais dias aos prazos fornecidos pelos Correios.</comment>
|
243 |
+
</add_prazo>
|
244 |
+
<correioserror translate="label">
|
245 |
+
<label>Mensagem que Exibe os Erros dos Correios</label>
|
246 |
+
<frontend_type>text</frontend_type>
|
247 |
+
<sort_order>180</sort_order>
|
248 |
+
<show_in_default>1</show_in_default>
|
249 |
+
<show_in_website>1</show_in_website>
|
250 |
+
<show_in_store>1</show_in_store>
|
251 |
+
</correioserror>
|
252 |
+
<dimensionerror translate="label">
|
253 |
+
<label>Mensagem de Dimensões Fora do Permitido</label>
|
254 |
+
<frontend_type>textarea</frontend_type>
|
255 |
+
<sort_order>190</sort_order>
|
256 |
+
<show_in_default>1</show_in_default>
|
257 |
+
<show_in_website>1</show_in_website>
|
258 |
+
<show_in_store>1</show_in_store>
|
259 |
+
</dimensionerror>
|
260 |
+
<valueerror translate="label">
|
261 |
+
<label>Mensagem de Valor Fora do Permitido</label>
|
262 |
+
<frontend_type>textarea</frontend_type>
|
263 |
+
<sort_order>200</sort_order>
|
264 |
+
<show_in_default>1</show_in_default>
|
265 |
+
<show_in_website>1</show_in_website>
|
266 |
+
<show_in_store>1</show_in_store>
|
267 |
+
</valueerror>
|
268 |
+
<zipcodeerror translate="label">
|
269 |
+
<label>Mensagem de CEP Incorreto</label>
|
270 |
+
<frontend_type>textarea</frontend_type>
|
271 |
+
<sort_order>210</sort_order>
|
272 |
+
<show_in_default>1</show_in_default>
|
273 |
+
<show_in_website>1</show_in_website>
|
274 |
+
<show_in_store>1</show_in_store>
|
275 |
+
</zipcodeerror>
|
276 |
+
<maxweighterror translate="label">
|
277 |
+
<label>Mensagem de Peso Fora do Permitido</label>
|
278 |
+
<frontend_type>textarea</frontend_type>
|
279 |
+
<sort_order>220</sort_order>
|
280 |
+
<show_in_default>1</show_in_default>
|
281 |
+
<show_in_website>1</show_in_website>
|
282 |
+
<show_in_store>1</show_in_store>
|
283 |
+
</maxweighterror>
|
284 |
+
<weightzeroerror translate="label">
|
285 |
+
<label>Mensagem de Peso Zero</label>
|
286 |
+
<frontend_type>textarea</frontend_type>
|
287 |
+
<sort_order>230</sort_order>
|
288 |
+
<show_in_default>1</show_in_default>
|
289 |
+
<show_in_website>1</show_in_website>
|
290 |
+
<show_in_store>1</show_in_store>
|
291 |
+
</weightzeroerror>
|
292 |
+
<urlerror translate="label">
|
293 |
+
<label>Mensagem de URL Fora do Ar</label>
|
294 |
+
<frontend_type>textarea</frontend_type>
|
295 |
+
<sort_order>240</sort_order>
|
296 |
+
<show_in_default>1</show_in_default>
|
297 |
+
<show_in_website>1</show_in_website>
|
298 |
+
<show_in_store>1</show_in_store>
|
299 |
+
</urlerror>
|
300 |
+
<coderror translate="label">
|
301 |
+
<label>Mensagem de Falta de Código Administrativo</label>
|
302 |
+
<frontend_type>textarea</frontend_type>
|
303 |
+
<sort_order>250</sort_order>
|
304 |
+
<show_in_default>1</show_in_default>
|
305 |
+
<show_in_website>1</show_in_website>
|
306 |
+
<show_in_store>1</show_in_store>
|
307 |
+
</coderror>
|
308 |
+
<showmethod translate="label">
|
309 |
+
<label>Mostrar Método Mesmo se Não Aplicável</label>
|
310 |
+
<frontend_type>select</frontend_type>
|
311 |
+
<sort_order>260</sort_order>
|
312 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
313 |
+
<show_in_default>1</show_in_default>
|
314 |
+
<show_in_website>1</show_in_website>
|
315 |
+
<show_in_store>1</show_in_store>
|
316 |
+
<comment>Se houver um erro ou o método não for aplicável naquela situação, mesmo assim mostrar as mensagens de erro?</comment>
|
317 |
+
</showmethod>
|
318 |
+
<sort_order translate="label">
|
319 |
+
<label>Ordenar Por</label>
|
320 |
+
<frontend_type>text</frontend_type>
|
321 |
+
<sort_order>270</sort_order>
|
322 |
+
<show_in_default>1</show_in_default>
|
323 |
+
<show_in_website>1</show_in_website>
|
324 |
+
<show_in_store>1</show_in_store>
|
325 |
+
</sort_order>
|
326 |
+
</fields>
|
327 |
+
</pedroteixeira_correios>
|
328 |
+
</groups>
|
329 |
+
</carriers>
|
330 |
+
</sections>
|
331 |
+
</config>
|
app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/mysql4-install-4.0.0.php
CHANGED
@@ -4,15 +4,15 @@
|
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
* It is also available through the world-wide-web at this URL:
|
9 |
-
* http://
|
10 |
*
|
11 |
* @category PedroTeixeira
|
12 |
* @package PedroTeixeira_Correios
|
13 |
-
* @copyright Copyright (c)
|
14 |
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
-
* @license http://
|
16 |
*/
|
17 |
|
18 |
$installer = $this;
|
@@ -65,4 +65,3 @@ $config = array(
|
|
65 |
$setup->addAttribute('catalog_product', $codigo , $config);
|
66 |
|
67 |
$installer->endSetup();
|
68 |
-
?>
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the New BSD License.
|
8 |
* It is also available through the world-wide-web at this URL:
|
9 |
+
* http://www.pteixeira.com.br/new-bsd-license/
|
10 |
*
|
11 |
* @category PedroTeixeira
|
12 |
* @package PedroTeixeira_Correios
|
13 |
+
* @copyright Copyright (c) 2011 Pedro Teixeira (http://www.pteixeira.com.br)
|
14 |
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
+
* @license http://www.pteixeira.com.br/new-bsd-license/ New BSD License
|
16 |
*/
|
17 |
|
18 |
$installer = $this;
|
65 |
$setup->addAttribute('catalog_product', $codigo , $config);
|
66 |
|
67 |
$installer->endSetup();
|
|
app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/mysql4-upgrade-4.0.0-4.1.0.php
CHANGED
@@ -4,15 +4,15 @@
|
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
* It is also available through the world-wide-web at this URL:
|
9 |
-
* http://
|
10 |
*
|
11 |
* @category PedroTeixeira
|
12 |
* @package PedroTeixeira_Correios
|
13 |
-
* @copyright Copyright (c)
|
14 |
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
-
* @license http://
|
16 |
*/
|
17 |
|
18 |
$installer = $this;
|
@@ -26,4 +26,3 @@ $installer->deleteConfigData('carriers/pedroteixeira_correios/valueerror');
|
|
26 |
$installer->deleteConfigData('carriers/pedroteixeira_correios/showmethod');
|
27 |
|
28 |
$installer->endSetup();
|
29 |
-
?>
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the New BSD License.
|
8 |
* It is also available through the world-wide-web at this URL:
|
9 |
+
* http://www.pteixeira.com.br/new-bsd-license/
|
10 |
*
|
11 |
* @category PedroTeixeira
|
12 |
* @package PedroTeixeira_Correios
|
13 |
+
* @copyright Copyright (c) 2011 Pedro Teixeira (http://www.pteixeira.com.br)
|
14 |
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
+
* @license http://www.pteixeira.com.br/new-bsd-license/ New BSD License
|
16 |
*/
|
17 |
|
18 |
$installer = $this;
|
26 |
$installer->deleteConfigData('carriers/pedroteixeira_correios/showmethod');
|
27 |
|
28 |
$installer->endSetup();
|
|
app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/mysql4-upgrade-4.1.0-4.2.0.php
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Pedro Teixeira
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the New BSD License.
|
8 |
+
* It is also available through the world-wide-web at this URL:
|
9 |
+
* http://www.pteixeira.com.br/new-bsd-license/
|
10 |
+
*
|
11 |
+
* @category PedroTeixeira
|
12 |
+
* @package PedroTeixeira_Correios
|
13 |
+
* @copyright Copyright (c) 2011 Pedro Teixeira (http://www.pteixeira.com.br)
|
14 |
+
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
15 |
+
* @license http://www.pteixeira.com.br/new-bsd-license/ New BSD License
|
16 |
+
*/
|
17 |
+
|
18 |
+
$installer = $this;
|
19 |
+
$installer->startSetup();
|
20 |
+
$connection = $installer->getConnection();
|
21 |
+
|
22 |
+
$installer->deleteConfigData('carriers/pedroteixeira_correios/urlmethod');
|
23 |
+
|
24 |
+
$sql = "select value from ".$installer->getTable('core/config_data')." where path='carriers/pedroteixeira_correios/postmethods'";
|
25 |
+
$methods = explode(',', $connection->fetchOne($sql));
|
26 |
+
foreach($methods as $key => $method){
|
27 |
+
if($method == '41025'){
|
28 |
+
unset($methods[$key]);
|
29 |
+
}
|
30 |
+
}
|
31 |
+
if(count($methods) <= 0){
|
32 |
+
$methods[] = '41106';
|
33 |
+
}
|
34 |
+
$installer->setConfigData('carriers/pedroteixeira_correios/postmethods', implode(',', $methods));
|
35 |
+
|
36 |
+
$sql = "select value from ".$installer->getTable('core/config_data')." where path='carriers/pedroteixeira_correios/free_method'";
|
37 |
+
if($connection->fetchOne($sql) == '41025'){
|
38 |
+
$installer->setConfigData('carriers/pedroteixeira_correios/free_method', '41106');
|
39 |
+
}
|
40 |
+
|
41 |
+
$setup = new Mage_Eav_Model_Entity_Setup('core_setup');
|
42 |
+
$setup->updateAttribute('catalog_product', 'volume_comprimento', 'note', 'Comprimento da embalagem do produto (Para cálculo dos Correios)');
|
43 |
+
$setup->updateAttribute('catalog_product', 'volume_altura', 'note', 'Altura da embalagem do produto (Para cálculo dos Correios)');
|
44 |
+
$setup->updateAttribute('catalog_product', 'volume_largura', 'note', 'Largura da embalagem do produto (Para cálculo dos Correios)');
|
45 |
+
|
46 |
+
$installer->endSetup();
|
app/etc/modules/PedroTeixeira_Correios.xml
CHANGED
@@ -1,26 +1,26 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<!--
|
3 |
-
/**
|
4 |
-
* Pedro Teixeira
|
5 |
-
*
|
6 |
-
* NOTICE OF LICENSE
|
7 |
-
*
|
8 |
-
* This source file is subject to the
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
-
*
|
12 |
-
* @category PedroTeixeira
|
13 |
-
* @package PedroTeixeira_Correios
|
14 |
-
* @copyright Copyright (c)
|
15 |
-
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
16 |
-
* @license http://
|
17 |
-
*/
|
18 |
-
-->
|
19 |
-
<config>
|
20 |
-
<modules>
|
21 |
-
<PedroTeixeira_Correios>
|
22 |
-
<active>true</active>
|
23 |
-
<codePool>community</codePool>
|
24 |
-
</PedroTeixeira_Correios>
|
25 |
-
</modules>
|
26 |
-
</config>
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Pedro Teixeira
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the New BSD License.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.pteixeira.com.br/new-bsd-license/
|
11 |
+
*
|
12 |
+
* @category PedroTeixeira
|
13 |
+
* @package PedroTeixeira_Correios
|
14 |
+
* @copyright Copyright (c) 2011 Pedro Teixeira (http://www.pteixeira.com.br)
|
15 |
+
* @author Pedro Teixeira <pedro@pteixeira.com.br>
|
16 |
+
* @license http://www.pteixeira.com.br/new-bsd-license/ New BSD License
|
17 |
+
*/
|
18 |
+
-->
|
19 |
+
<config>
|
20 |
+
<modules>
|
21 |
+
<PedroTeixeira_Correios>
|
22 |
+
<active>true</active>
|
23 |
+
<codePool>community</codePool>
|
24 |
+
</PedroTeixeira_Correios>
|
25 |
+
</modules>
|
26 |
+
</config>
|
package.xml
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>PedroTeixeira_Correios</name>
|
4 |
-
<version>4.
|
5 |
<stability>stable</stability>
|
6 |
-
<license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Módulo de cálculo de PAC, Sedex, E-Sedex, Sedex 10, Sedex Hoje e Sedex a Cobrar.</summary>
|
10 |
-
<description>Versão 4.
|
11 |
|
12 |
-
|
13 |
|
14 |
-
|
15 |
|
16 |
- Sedex Sem Contrato
|
17 |
- Sedex Com Contrato
|
@@ -24,14 +24,12 @@ Também é integrado com o WebService de cálculo de frete da Locawe
|
|
24 |
|
25 |
Conta com identificação de erros dos Correios, mão própria, aviso de recebimento, valor declarado, captura do prazo de entrega dos Correios, adicionar mais dias ao prazo dos Correios, identifica o volume dos produtos por atributo e Tracking em tempo real.
|
26 |
|
27 |
-
Na nova versão conta com apenas uma chamada para todos os serviços, integração total com as regras de desconto, integração com a nova versão do Magento e correção de alguns bugs.
|
28 |
-
|
29 |
Mais informações em http://www.pteixeira.com.br.</description>
|
30 |
<notes>Módulo de cálculo de PAC, Sedex, E-Sedex, Sedex 10, Sedex Hoje e Sedex a Cobrar.</notes>
|
31 |
<authors><author><name>Pedro Teixeira</name><user>auto-converted</user><email>teixeira.pedro@gmail.com</email></author></authors>
|
32 |
-
<date>
|
33 |
-
<time>02:
|
34 |
-
<contents><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="PedroTeixeira_Correios.xml" hash="
|
35 |
<compatible/>
|
36 |
<dependencies/>
|
37 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>PedroTeixeira_Correios</name>
|
4 |
+
<version>4.2.0</version>
|
5 |
<stability>stable</stability>
|
6 |
+
<license uri="http://www.pteixeira.com.br/new-bsd-license/">New BSD License</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Módulo de cálculo de PAC, Sedex, E-Sedex, Sedex 10, Sedex Hoje e Sedex a Cobrar.</summary>
|
10 |
+
<description>Versão 4.2.0 do módulo de cálculo de frete para Magento.
|
11 |
|
12 |
+
Utilizando peso volumétrico para cálculo de todos os serviços e compatível com a validação de dimensões dos Correios
|
13 |
|
14 |
+
Contando com os seguintes serviços:
|
15 |
|
16 |
- Sedex Sem Contrato
|
17 |
- Sedex Com Contrato
|
24 |
|
25 |
Conta com identificação de erros dos Correios, mão própria, aviso de recebimento, valor declarado, captura do prazo de entrega dos Correios, adicionar mais dias ao prazo dos Correios, identifica o volume dos produtos por atributo e Tracking em tempo real.
|
26 |
|
|
|
|
|
27 |
Mais informações em http://www.pteixeira.com.br.</description>
|
28 |
<notes>Módulo de cálculo de PAC, Sedex, E-Sedex, Sedex 10, Sedex Hoje e Sedex a Cobrar.</notes>
|
29 |
<authors><author><name>Pedro Teixeira</name><user>auto-converted</user><email>teixeira.pedro@gmail.com</email></author></authors>
|
30 |
+
<date>2011-07-04</date>
|
31 |
+
<time>02:30:37</time>
|
32 |
+
<contents><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="PedroTeixeira_Correios.xml" hash="3635fbd879b39f8d43c7c0ac7cfec8d1"/></dir></dir></dir></target><target name="magecommunity"><dir name="PedroTeixeira"><dir name="Correios"><dir name="etc"><file name="config.xml" hash="e2a5bc3aac7846f7592350b8cee3da4d"/><file name="system.xml" hash="f0d50a77f911775a2062dfb45f96795c"/></dir><dir name="Helper"><file name="Data.php" hash="69f95ad2744670a734b87b01ce6c3f09"/></dir><dir name="Model"><dir name="Carrier"><file name="CorreiosMethod.php" hash="b2e8f086db7d977d46f1939b82c7d5a6"/></dir><dir name="Source"><file name="PostMethods.php" hash="ec95386783928b1c648a3e93009decfd"/><file name="WeightType.php" hash="05d4aa67a8090940da5322037bb46e5d"/></dir></dir><dir name="sql"><dir name="pedroteixeira_correios_setup"><file name="mysql4-install-4.0.0.php" hash="ef33ba860a1a8650ce4fb1e3f020d4b7"/><file name="mysql4-upgrade-4.0.0-4.1.0.php" hash="7f37848c7673647f0376c0dd6d8399d4"/><file name="mysql4-upgrade-4.1.0-4.2.0.php" hash="5f087b0de8174e6b014ef5aabac844b4"/></dir></dir></dir></dir></target></contents>
|
33 |
<compatible/>
|
34 |
<dependencies/>
|
35 |
</package>
|