Mundipagg_Integracao - Version 2.6.4

Version Notes

Notification post fix

Download this release

Release Info

Developer MundiPagg
Extension Mundipagg_Integracao
Version 2.6.4
Comparing to
See all releases


Code changes from version 2.6.2 to 2.6.4

app/code/community/Uecommerce/Mundipagg/Block/Standard/Success.php CHANGED
@@ -27,153 +27,164 @@
27
  * @package Uecommerce_Mundipagg
28
  * @author Uecommerce Dev Team
29
  */
30
-
31
- class Uecommerce_Mundipagg_Block_Standard_Success extends Mage_Sales_Block_Items_Abstract
32
- {
33
- /**
34
- * @deprecated after 1.4.0.1
35
- */
36
- private $_order;
37
-
38
- /**
39
- * Retrieve identifier of created order
40
- *
41
- * @return string
42
- * @deprecated after 1.4.0.1
43
- */
44
- public function getOrderId()
45
- {
46
- return $this->_getData('order_id');
47
- }
48
-
49
- public function getBaseGrandTotal()
50
- {
51
- return $this->_getData('base_grand_total');
52
- }
53
-
54
- /**
55
- * Check order print availability
56
- *
57
- * @return bool
58
- * @deprecated after 1.4.0.1
59
- */
60
- public function canPrint()
61
- {
62
- return $this->_getData('can_view_order');
63
- }
64
-
65
- /**
66
- * Get url for order detale print
67
- *
68
- * @return string
69
- * @deprecated after 1.4.0.1
70
- */
71
- public function getPrintUrl()
72
- {
73
- return $this->_getData('print_url');
74
- }
75
-
76
- /**
77
- * Get url for view order details
78
- *
79
- * @return string
80
- * @deprecated after 1.4.0.1
81
- */
82
- public function getViewOrderUrl()
83
- {
84
- return $this->_getData('view_order_id');
85
- }
86
-
87
- /**
88
- * See if the order has state, visible on frontend
89
- *
90
- * @return bool
91
- */
92
- public function isOrderVisible()
93
- {
94
- return (bool)$this->_getData('is_order_visible');
95
- }
96
-
97
- /**
98
- * Get payment method
99
- *
100
- * @return string
101
- */
102
- public function getPaymentMethod()
103
- {
104
- return $this->_getData('payment_method');
105
- }
106
-
107
- /**
108
- * Getter for recurring profile view page
109
- *
110
- * @param $profile
111
- */
112
- public function getProfileUrl(Varien_Object $profile)
113
- {
114
- return $this->getUrl('sales/recurring_profile/view', array('profile' => $profile->getId()));
115
- }
116
-
117
- /**
118
- * Internal constructor
119
- * Set template for redirect
120
- *
121
- */
122
- public function __construct()
123
- {
124
- parent::_construct();
125
- $this->setTemplate('mundipagg/success.phtml');
126
- }
127
-
128
- /**
129
- * Initialize data and prepare it for output
130
- */
131
- protected function _beforeToHtml()
132
- {
133
- $this->_prepareLastOrder();
134
- return parent::_beforeToHtml();
135
- }
136
-
137
- /**
138
- * Get last order ID from session, fetch it and check whether it can be viewed, printed etc
139
- */
140
- protected function _prepareLastOrder()
141
- {
142
- $orderId = Mage::getSingleton('checkout/session')->getLastOrderId();
143
- if ($orderId) {
144
- $order = Mage::getModel('sales/order')->load($orderId);
145
- if ($order->getId()) {
146
- $isVisible = !in_array($order->getState(),
147
- Mage::getSingleton('sales/order_config')->getInvisibleOnFrontStates());
148
- $this->addData(array(
149
- 'is_order_visible' => $isVisible,
150
- 'view_order_id' => $this->getUrl('sales/order/view/', array('order_id' => $orderId)),
151
- 'print_url' => $this->getUrl('sales/order/print', array('order_id'=> $orderId)),
152
- 'can_print_order' => $isVisible,
153
- 'can_view_order' => Mage::getSingleton('customer/session')->isLoggedIn() && $isVisible,
154
- 'order_id' => $order->getIncrementId(),
155
- 'payment_method' => $order->getPayment()->getAdditionalInformation('PaymentMethod'),
156
- 'base_grand_total' => $order->getBaseGrandTotal(),
157
- ));
158
- }
159
- }
160
- }
161
-
162
- /**
163
- * Return Boleto URL in order to print it
164
- * @return string
165
- **/
166
- public function getBoletoUrl()
167
- {
168
- $session = Mage::getSingleton('checkout/session');
169
- $session->setQuoteId($session->getMundipaggStandardQuoteId(true));
170
-
171
- if ($session->getLastRealOrderId()) {
172
- $order = Mage::getModel('sales/order')->loadByIncrementId($session->getLastRealOrderId());
173
-
174
- $boleto = $order->getPayment()->getAdditionalInformation('BoletoUrl');
175
-
176
- return $boleto;
177
- }
178
- }
 
 
 
 
 
 
 
 
 
 
 
179
  }
27
  * @package Uecommerce_Mundipagg
28
  * @author Uecommerce Dev Team
29
  */
30
+ class Uecommerce_Mundipagg_Block_Standard_Success extends Mage_Sales_Block_Items_Abstract {
31
+ /**
32
+ * @deprecated after 1.4.0.1
33
+ */
34
+ private $_order;
35
+
36
+ /**
37
+ * Retrieve identifier of created order
38
+ *
39
+ * @return string
40
+ * @deprecated after 1.4.0.1
41
+ */
42
+ public function getOrderId() {
43
+ return $this->_getData('order_id');
44
+ }
45
+
46
+ public function getBaseGrandTotal() {
47
+ return $this->_getData('base_grand_total');
48
+ }
49
+
50
+ /**
51
+ * Check order print availability
52
+ *
53
+ * @return bool
54
+ * @deprecated after 1.4.0.1
55
+ */
56
+ public function canPrint() {
57
+ return $this->_getData('can_view_order');
58
+ }
59
+
60
+ /**
61
+ * Get url for order detale print
62
+ *
63
+ * @return string
64
+ * @deprecated after 1.4.0.1
65
+ */
66
+ public function getPrintUrl() {
67
+ return $this->_getData('print_url');
68
+ }
69
+
70
+ /**
71
+ * Get url for view order details
72
+ *
73
+ * @return string
74
+ * @deprecated after 1.4.0.1
75
+ */
76
+ public function getViewOrderUrl() {
77
+ return $this->_getData('view_order_id');
78
+ }
79
+
80
+ /**
81
+ * See if the order has state, visible on frontend
82
+ *
83
+ * @return bool
84
+ */
85
+ public function isOrderVisible() {
86
+ return (bool)$this->_getData('is_order_visible');
87
+ }
88
+
89
+ /**
90
+ * Get payment method
91
+ *
92
+ * @return string
93
+ */
94
+ public function getPaymentMethod() {
95
+ return $this->_getData('payment_method');
96
+ }
97
+
98
+ /**
99
+ * Getter for recurring profile view page
100
+ *
101
+ * @param $profile
102
+ */
103
+ public function getProfileUrl(Varien_Object $profile) {
104
+ return $this->getUrl('sales/recurring_profile/view', array('profile' => $profile->getId()));
105
+ }
106
+
107
+ /**
108
+ * Internal constructor
109
+ * Set template for redirect
110
+ *
111
+ */
112
+ public function __construct() {
113
+ parent::_construct();
114
+ $this->setTemplate('mundipagg/success.phtml');
115
+ }
116
+
117
+ /**
118
+ * Initialize data and prepare it for output
119
+ */
120
+ protected function _beforeToHtml() {
121
+ $this->_prepareLastOrder();
122
+
123
+ return parent::_beforeToHtml();
124
+ }
125
+
126
+ /**
127
+ * Get last order ID from session, fetch it and check whether it can be viewed, printed etc
128
+ */
129
+ protected function _prepareLastOrder() {
130
+ $customer = Mage::getSingleton('customer/session')->getCustomer();
131
+ $session = Mage::getSingleton('checkout/session')->setCustomer($customer);
132
+ $orderId = $session->getLastOrderId();
133
+
134
+ if ($orderId) {
135
+ $order = Mage::getModel('sales/order')->load($orderId);
136
+
137
+ if ($order->getId()) {
138
+ $isVisible = !in_array($order->getState(), Mage::getSingleton('sales/order_config')->getInvisibleOnFrontStates());
139
+ $payment = $order->getPayment();
140
+ $paymentMethod = $payment->getAdditionalInformation('PaymentMethod');
141
+
142
+ $this->addData(array(
143
+ 'is_order_visible' => $isVisible,
144
+ 'view_order_id' => $this->getUrl('sales/order/view/', array('order_id' => $orderId)),
145
+ 'print_url' => $this->getUrl('sales/order/print', array('order_id' => $orderId)),
146
+ 'can_print_order' => $isVisible,
147
+ 'can_view_order' => Mage::getSingleton('customer/session')->isLoggedIn() && $isVisible,
148
+ 'order_id' => $order->getIncrementId(),
149
+ 'payment_method' => $paymentMethod,
150
+ 'base_grand_total' => $order->getBaseGrandTotal(),
151
+ ));
152
+
153
+ if ($paymentMethod == 'mundipagg_boleto') {
154
+ $this->addData(array(
155
+ 'boleto_url' => $payment->getAdditionalInformation('BoletoUrl')
156
+ ));
157
+ }
158
+ }
159
+ }
160
+ }
161
+
162
+ /**
163
+ * Return Boleto URL in order to print it
164
+ * @return string
165
+ **/
166
+ public function getBoletoUrl() {
167
+ $customerSession = Mage::getSingleton('customer/session');
168
+ $orders = Mage::getModel('sales/order')
169
+ ->getCollection()
170
+ ->addFieldToFilter('customer_id', $customerSession->getId())
171
+ ->addFieldToFilter('increment_id', $this->_getData('order_id'));
172
+
173
+ $ordersFound = count($orders);
174
+
175
+ if ($ordersFound == 1) {
176
+ return $this->_getData('boleto_url');
177
+
178
+ } else {
179
+ $helperLog = new Uecommerce_Mundipagg_Helper_Log(__METHOD__);
180
+ $api = new Uecommerce_Mundipagg_Model_Api();
181
+ $orderId = $this->_getData('order_id');
182
+ $errMsg = "Order #{$orderId} don't belongs to customer {$customerSession->getId()}. Boleto url won't be showed on success.phtml";
183
+
184
+ $helperLog->error($errMsg);
185
+ $api->mailError($errMsg);
186
+
187
+ return false;
188
+ }
189
+ }
190
  }
app/code/community/Uecommerce/Mundipagg/Model/Api.php CHANGED
@@ -1259,9 +1259,9 @@ class Uecommerce_Mundipagg_Model_Api extends Uecommerce_Mundipagg_Model_Standard
1259
  $returnMessage = "KO | {$returnMessageLabel} | {$e->getMessage()}";
1260
  $helperLog->error($returnMessage);
1261
  }
1262
- }
1263
 
1264
- return $returnMessage;
 
1265
  }
1266
 
1267
  if (!empty($data['BoletoTransaction'])) {
1259
  $returnMessage = "KO | {$returnMessageLabel} | {$e->getMessage()}";
1260
  $helperLog->error($returnMessage);
1261
  }
 
1262
 
1263
+ return $returnMessage;
1264
+ }
1265
  }
1266
 
1267
  if (!empty($data['BoletoTransaction'])) {
app/code/community/Uecommerce/Mundipagg/controllers/TesteController.php ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Uecommerce_Mundipagg_TesteController extends Uecommerce_Mundipagg_Controller_Abstract {
4
+
5
+ public function indexAction() {
6
+ $order = Mage::getModel('sales/order')->loadByIncrementId('100000012');
7
+ $payment = $order->getPayment();
8
+
9
+ var_dump(get_class($payment));
10
+ var_dump($payment->getAdditionalInformation());
11
+ }
12
+
13
+ public function customerAction() {
14
+ $customerSesion = Mage::getSingleton('customer/session');
15
+ $customer = Mage::getModel('customer/customer')->load($customerSesion->getId());
16
+
17
+ $orders = Mage::getModel('sales/order')->getCollection()
18
+ ->addFieldToFilter('customer_id', $customer->getId())
19
+ ->addFieldToFilter('increment_id', '100000026');
20
+
21
+ var_dump($orders);
22
+
23
+ // echo "orders found: ".count($orders);
24
+ //
25
+ // foreach ($orders as $order){
26
+ // var_dump($order->getData());
27
+ // }
28
+ }
29
+
30
+ public function checkoutAction(){
31
+
32
+ }
33
+
34
+ }
app/code/community/Uecommerce/Mundipagg/etc/config.xml CHANGED
@@ -32,7 +32,7 @@
32
  <config>
33
  <modules>
34
  <Uecommerce_Mundipagg>
35
- <version>2.6.2</version>
36
  </Uecommerce_Mundipagg>
37
  </modules>
38
 
32
  <config>
33
  <modules>
34
  <Uecommerce_Mundipagg>
35
+ <version>2.6.4</version>
36
  </Uecommerce_Mundipagg>
37
  </modules>
38
 
app/design/frontend/base/default/template/mundipagg/success.phtml CHANGED
@@ -29,48 +29,52 @@
29
  */
30
  ?>
31
  <div class="page-title">
32
- <h1><?php echo $this->__('Your order has been received') ?></h1>
33
  </div>
34
  <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
35
  <h2 class="sub-title"><?php echo $this->__('Thank you for your purchase!') ?></h2>
36
 
37
- <?php if ($this->getOrderId()):?>
38
- <?php if ($this->getCanViewOrder()) :?>
39
- <p><?php echo $this->__('Your order # is: %s.', sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getViewOrderUrl()), $this->escapeHtml($this->getOrderId()))) ?></p>
40
- <?php else :?>
41
- <p><?php echo $this->__('Your order # is: %s.', $this->escapeHtml($this->getOrderId())) ?></p>
42
- <?php endif;?>
43
- <p><?php echo $this->__('You will receive an order confirmation email with details of your order and a link to track its progress.') ?></p>
44
- <?php if ($this->getCanViewOrder() && $this->getCanPrintOrder()) :?>
45
- <p>
46
- <?php echo $this->__('<a href="%s" target="_blank">Click here to print</a> a copy of your order confirmation.', $this->getPrintUrl()) ?>
47
- <?php echo $this->getChildHtml() ?>
48
- </p>
49
- <?php endif;?>
50
- <?php endif;?>
51
 
52
  <?php if ($this->getAgreementRefId()): ?>
53
- <p><?php echo $this->__('Your billing agreement # is: %s.', sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getAgreementUrl()), $this->escapeHtml($this->getAgreementRefId())))?></p>
54
- <?php endif;?>
55
-
56
- <?php if ($profiles = $this->getRecurringProfiles()):?>
57
- <p><?php echo $this->__('Your recurring payment profiles:'); ?></p>
58
- <ul class="disc">
59
- <?php foreach($profiles as $profile):?>
60
- <?php $profileIdHtml = ($this->getCanViewProfiles() ? sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getProfileUrl($profile)), $this->escapeHtml($this->getObjectData($profile, 'reference_id'))) : $this->escapeHtml($this->getObjectData($profile, 'reference_id')));?>
61
- <li><?php echo $this->__('Payment profile # %s: "%s".', $profileIdHtml, $this->escapeHtml($this->getObjectData($profile, 'schedule_description')))?></li>
62
- <?php endforeach;?>
63
- </ul>
64
- <?php endif;?>
65
 
66
  <?php
67
- switch($this->getPaymentMethod()):
68
- case 'mundipagg_boleto':
69
- ?>
70
- <p class="pagSucess"><?php echo $this->__('Your order has not been paid yet. <a href="%s" target="_blank">Click here to print</a> your Boleto Bancário.', $this->getBoletoUrl()) ?></p>
71
- <?php endswitch; ?>
 
 
 
 
72
  <!--
73
- <?php
74
  $helper = Mage::helper('core');
75
 
76
  $_order = Mage::getModel('sales/order')->loadByIncrementId($this->getOrderId());
@@ -106,7 +110,7 @@ if ($_order): ?>
106
  <?php echo $this->__('Subtotal') ?>
107
  </td>
108
  <td class="last a-right">
109
- <span class="price"><?php echo $helper->currency($_order->getSubtotal(), true, false) ?></span>
110
  </td>
111
  </tr>
112
  <tr class="shipping">
@@ -114,7 +118,7 @@ if ($_order): ?>
114
  <?php echo $this->__('Shipping & Handling') ?>
115
  </td>
116
  <td class="last a-right">
117
- <span class="price"><?php echo $helper->currency($_order->getShippingAmount(), true, false) ?></span>
118
  </td>
119
  </tr>
120
 
@@ -124,7 +128,7 @@ if ($_order): ?>
124
  <?php echo $this->__('Discount') ?>
125
  </td>
126
  <td class="last a-right">
127
- <span class="price"><?php echo $helper->currency($_order->getBaseDiscountAmount(), true, false) ?></span>
128
  </td>
129
  </tr>
130
  <?php endif; ?>
@@ -150,8 +154,8 @@ if ($_order): ?>
150
  <td><?php echo $_item->getName() ?></td>
151
  <td><?php echo $_item->getSku() ?></td>
152
  <td><?php echo $helper->currency($_item->getBaseRowTotal(), true, false) ?></td>
153
- <td><?php echo $_item->getQtyOrdered()*1 ?></td>
154
- <td class="last"><?php echo $helper->currency($_item->getBaseRowTotal()*$_item->getQtyOrdered(), true, false) ?></td>
155
  </tr>
156
  </tbody>
157
  <?php endforeach; ?>
@@ -206,10 +210,10 @@ if ($_order): ?>
206
  </div>
207
  <div class="box-content">
208
  <?php echo Mage::helper('mundipagg')->__($paymentMethod) ?>
209
- <?php if(($paymentMethod == 'BoletoBancario' || $paymentMethod == 'mundipagg_boleto') && $boletoUrl = $_order->getPayment()->getAdditionalInformation('BoletoUrl')):
210
- ?>
211
  <p>
212
- <a href="<?php echo $boletoUrl;?>" target="_blank"><?php echo Mage::helper('mundipagg')->__('Print boleto');?></a>
213
  </p>
214
  <?php endif; ?>
215
  </div>
@@ -220,5 +224,7 @@ if ($_order): ?>
220
  -->
221
 
222
  <div class="buttons-set">
223
- <button type="button" class="button" title="<?php echo $this->__('Continue Shopping') ?>" onclick="window.location='<?php echo $this->getUrl() ?>'"><span><span><?php echo $this->__('Continue Shopping') ?></span></span></button>
 
 
224
  </div>
29
  */
30
  ?>
31
  <div class="page-title">
32
+ <h1><?php echo $this->__('Your order has been received') ?></h1>
33
  </div>
34
  <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
35
  <h2 class="sub-title"><?php echo $this->__('Thank you for your purchase!') ?></h2>
36
 
37
+ <?php if ($this->getOrderId()): ?>
38
+ <?php if ($this->getCanViewOrder()) : ?>
39
+ <p><?php echo $this->__('Your order # is: %s.', sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getViewOrderUrl()), $this->escapeHtml($this->getOrderId()))) ?></p>
40
+ <?php else : ?>
41
+ <p><?php echo $this->__('Your order # is: %s.', $this->escapeHtml($this->getOrderId())) ?></p>
42
+ <?php endif; ?>
43
+ <p><?php echo $this->__('You will receive an order confirmation email with details of your order and a link to track its progress.') ?></p>
44
+ <?php if ($this->getCanViewOrder() && $this->getCanPrintOrder()) : ?>
45
+ <p>
46
+ <?php echo $this->__('<a href="%s" target="_blank">Click here to print</a> a copy of your order confirmation.', $this->getPrintUrl()) ?>
47
+ <?php echo $this->getChildHtml() ?>
48
+ </p>
49
+ <?php endif; ?>
50
+ <?php endif; ?>
51
 
52
  <?php if ($this->getAgreementRefId()): ?>
53
+ <p><?php echo $this->__('Your billing agreement # is: %s.', sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getAgreementUrl()), $this->escapeHtml($this->getAgreementRefId()))) ?></p>
54
+ <?php endif; ?>
55
+
56
+ <?php if ($profiles = $this->getRecurringProfiles()): ?>
57
+ <p><?php echo $this->__('Your recurring payment profiles:'); ?></p>
58
+ <ul class="disc">
59
+ <?php foreach ($profiles as $profile): ?>
60
+ <?php $profileIdHtml = ($this->getCanViewProfiles() ? sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getProfileUrl($profile)), $this->escapeHtml($this->getObjectData($profile, 'reference_id'))) : $this->escapeHtml($this->getObjectData($profile, 'reference_id'))); ?>
61
+ <li><?php echo $this->__('Payment profile # %s: "%s".', $profileIdHtml, $this->escapeHtml($this->getObjectData($profile, 'schedule_description'))) ?></li>
62
+ <?php endforeach; ?>
63
+ </ul>
64
+ <?php endif; ?>
65
 
66
  <?php
67
+ switch ($this->getPaymentMethod()):
68
+ case 'mundipagg_boleto':
69
+ $boletoUrl = $this->getBoletoUrl();
70
+
71
+ if ($boletoUrl):?>
72
+ <p class="pagSucess"><?php echo $this->__('Your order has not been paid yet. <a href="%s" target="_blank">Click here to print</a> your Boleto Bancário.', $boletoUrl) ?></p>
73
+ <?php endif; ?>
74
+
75
+ <?php endswitch; ?>
76
  <!--
77
+ <?php
78
  $helper = Mage::helper('core');
79
 
80
  $_order = Mage::getModel('sales/order')->loadByIncrementId($this->getOrderId());
110
  <?php echo $this->__('Subtotal') ?>
111
  </td>
112
  <td class="last a-right">
113
+ <span class="price"><?php echo $helper->currency($_order->getSubtotal(), true, false) ?></span>
114
  </td>
115
  </tr>
116
  <tr class="shipping">
118
  <?php echo $this->__('Shipping & Handling') ?>
119
  </td>
120
  <td class="last a-right">
121
+ <span class="price"><?php echo $helper->currency($_order->getShippingAmount(), true, false) ?></span>
122
  </td>
123
  </tr>
124
 
128
  <?php echo $this->__('Discount') ?>
129
  </td>
130
  <td class="last a-right">
131
+ <span class="price"><?php echo $helper->currency($_order->getBaseDiscountAmount(), true, false) ?></span>
132
  </td>
133
  </tr>
134
  <?php endif; ?>
154
  <td><?php echo $_item->getName() ?></td>
155
  <td><?php echo $_item->getSku() ?></td>
156
  <td><?php echo $helper->currency($_item->getBaseRowTotal(), true, false) ?></td>
157
+ <td><?php echo $_item->getQtyOrdered() * 1 ?></td>
158
+ <td class="last"><?php echo $helper->currency($_item->getBaseRowTotal() * $_item->getQtyOrdered(), true, false) ?></td>
159
  </tr>
160
  </tbody>
161
  <?php endforeach; ?>
210
  </div>
211
  <div class="box-content">
212
  <?php echo Mage::helper('mundipagg')->__($paymentMethod) ?>
213
+ <?php if (($paymentMethod == 'BoletoBancario' || $paymentMethod == 'mundipagg_boleto') && $boletoUrl = $_order->getPayment()->getAdditionalInformation('BoletoUrl')):
214
+ ?>
215
  <p>
216
+ <a href="<?php echo $boletoUrl; ?>" target="_blank"><?php echo Mage::helper('mundipagg')->__('Print boleto'); ?></a>
217
  </p>
218
  <?php endif; ?>
219
  </div>
224
  -->
225
 
226
  <div class="buttons-set">
227
+ <button type="button" class="button" title="<?php echo $this->__('Continue Shopping') ?>"
228
+ onclick="window.location='<?php echo $this->getUrl() ?>'">
229
+ <span><span><?php echo $this->__('Continue Shopping') ?></span></span></button>
230
  </div>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mundipagg_Integracao</name>
4
- <version>2.6.2</version>
5
  <stability>stable</stability>
6
  <license>MIT</license>
7
  <channel>community</channel>
@@ -12,13 +12,11 @@ Mundipagg payment gateway integration.</summary>
12
  <description>Com esta extens&#xE3;o voc&#xEA; poder&#xE1; integrar sua loja Magento com o gateway de pagamentos MundiPagg.&#xD;
13
  &#xD;
14
  With this extension you can process payments through brazilian payment gateway Mundipagg</description>
15
- <notes>Add logs and return message for notification post treatment.&#xD;
16
- &#xD;
17
- Add cancelation treatment.</notes>
18
  <authors><author><name>MundiPagg</name><user>MundiPagg</user><email>mundi@mundipagg.com</email></author></authors>
19
- <date>2016-07-22</date>
20
- <time>15:13:54</time>
21
- <contents><target name="magecommunity"><dir name="Uecommerce"><dir name="Mundipagg"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Field"><file name="Installments.php" hash="ec8343e197cb194d978400bbdf64d446"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="2140a7836eaa57e03727433ccddf93d6"/></dir><dir name="Invoice"><file name="Totals.php" hash="ee304d9034ae0763e5db464f933b8c27"/><file name="View.php" hash="b0e3c170cd0184a5dfbe4fa7a486b471"/></dir><file name="Totals.php" hash="71b20a4c0022c14a5f7f8d008aabe1da"/></dir><dir name="Transactions"><dir name="Detail"><file name="Grid.php" hash="d67911c431587e4327eec95540cf548a"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><file name="Button.php" hash="aa40a974b89c92ea9652c42e093d16f9"/></dir></dir></dir><file name="Version.php" hash="e3a89823e48e7a526a3afe8ce8c0d0ee"/></dir><dir name="Checkout"><dir name="Onepage"><dir name="Payment"><file name="Methods.php" hash="c903e413c47e3dea87ec09d609543a27"/></dir></dir></dir><file name="Info.php" hash="c5743b8887caffc12ee2b502d7256101"/><file name="Parcelamento.php" hash="bbfad3557dd7c29e2a21a213cf915e0c"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="be3e89b0e2f008fcc0293286d44df7da"/></dir><dir name="Invoice"><file name="Totals.php" hash="a39c41f45ef44b72d15cfd12fea4e9c6"/></dir><file name="Totals.php" hash="6f56aa360f48c715b30afd4e5cd4ddfa"/></dir></dir><dir name="Standard"><file name="Boleto.php" hash="4471015b8a82311f84e52e774460bf38"/><file name="Cancel.php" hash="095eaf31c6567fad440279aeb2994caa"/><file name="Debit.php" hash="c707d9572b6079457b9265cc09c920c6"/><file name="Fcancel.php" hash="4bc5b0fb68fb7fd11159788eafe958af"/><file name="Form.php" hash="0f7f97654c5e819ac178e5d888fae6ee"/><file name="Partial.php" hash="fb5877a8f6c56ac1d6fc48eb864d8e60"/><file name="Redirect.php" hash="70f576c8d64c25e3ce627f6c36b2ff41"/><file name="Success.php" hash="f5825fcb7a4d75cc0dfd3d448e48e905"/></dir></dir><dir name="Controller"><file name="Abstract.php" hash="91d5069c18069fcb2a0a436fb768a194"/></dir><dir name="Helper"><file name="Data.php" hash="230133453d65c7e7a7681ba095e5942c"/><file name="Installments.php" hash="3d34c4b9432d09a99e13c7f6b3f657ae"/><file name="Log.php" hash="a95575e22743a7b823ec3f088844f18f"/><file name="Util.php" hash="8d76ffdc3e7ace2598d373f1aef20228"/><file name="Version.php" hash="00066d5bf31a7c49db004f2bd0d5c462"/></dir><dir name="Model"><file name="Api.php" hash="df89411236cbd341a668ff720af4d636"/><file name="Boleto.php" hash="a7da1d58eb0fccb53eae51ba97d93dc5"/><file name="Cardonfile.php" hash="98395928a16313f8b4127e4e210cf953"/><file name="Creditcard.php" hash="007a43e7530ea5471b6a9aaa5405ce21"/><file name="Creditcardoneinstallment.php" hash="2e4222fd04dbc4f5ee116d4d7f4eae04"/><dir name="Customer"><file name="Session.php" hash="7f15498648de23cf4feb5143071ec260"/></dir><file name="Customers.php" hash="a779e96a969b83d1b38df351eb4670d0"/><file name="Debit.php" hash="8a3387bf74b1f03b9614fbdb64ab9dd5"/><dir name="Enum"><file name="BoletoTransactionStatusEnum.php" hash="3fed0a36bb76497b85c50016af34d47a"/><file name="CreditCardTransactionStatusEnum.php" hash="4546716f63e6df57061b222002157ccd"/><file name="OrderStatusEnum.php" hash="fd42020aab9d5507b5e0c26957cd1abb"/><file name="TransactionTypeEnum.php" hash="52fc4049a9f2b120ad3ed99e296268f9"/></dir><file name="Fivecreditcards.php" hash="6975e6170345bb3f20fde79ae40b81fe"/><file name="Fourcreditcards.php" hash="2da3d901173c19e53a96adb197b1533a"/><file name="Observer.php" hash="5fb123fe9bd7ee7593bc38984a3d3ae0"/><file name="Offlineretry.php" hash="394849df4873908dd43d3c15f75dc9d0"/><dir name="Order"><dir name="Invoice"><file name="Interest.php" hash="6bba5e87bae1a7ee94a827819b2ea4ce"/></dir></dir><file name="Providervalidation.php" hash="4906944bae20e3f683d6e5c4ba5304e3"/><dir name="Quote"><dir name="Address"><file name="Interest.php" hash="93aa0189a8556597697dbb239dbf3be7"/></dir></dir><file name="Recurrency.php" hash="76bb429ac4c849e27c8fabdd96bb9654"/><dir name="Resource"><dir name="Cardonfile"><file name="Collection.php" hash="7b7d13bc6d7be8e5e1c5f945d59117f6"/></dir><file name="Cardonfile.php" hash="47d0107a9b1c3415aaf8784298361e84"/><dir name="Customers"><file name="Collection.php" hash="6caadd817abbcda527ba6d102585f2ff"/></dir><file name="Customers.php" hash="f50289a4c8362ddf7a79e4aa7c8a6387"/><dir name="Offlineretry"><file name="Collection.php" hash="80f0689c66a30110e68c2fdafb3014a8"/></dir><file name="Offlineretry.php" hash="08c804fd3b001f4f3ac19ebbcfca59fb"/><file name="Setup.php" hash="42bda31d8497e1b0983775e17f7325a5"/></dir><dir name="Source"><file name="Antifraud.php" hash="8362e0bb2209bbf904a7f9b2edd59cee"/><file name="Banks.php" hash="b5d456a807cdf750a6458144e955cf2c"/><file name="CctypeProductInstallments.php" hash="7837f6865c905ba8f5393d080ebc1b3d"/><file name="Cctypes.php" hash="b55eb988a6a09f24b1088f15644961d0"/><file name="Debit.php" hash="9366bc3b900cf96ad5d2bce7e8d93ba7"/><file name="Environment.php" hash="099a28ea462481333437a6479276e8b0"/><file name="FControlEnvironment.php" hash="5159f6e4d86ee9d280285b7198fa01e9"/><file name="Frequency.php" hash="7864991042d0ec3fd5920d9047127b14"/><file name="Installments.php" hash="b04c05b92f7b8b5c025f23aad4457917"/><file name="PaymentAction.php" hash="c16639be23fd85c285f474922fd528a7"/><file name="PaymentMethods.php" hash="e12514ad00bf3fe3fb4e569b11da2c10"/></dir><file name="Standard.php" hash="f1c096a26841a0d05cc20926742e5c71"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Installments.php" hash="f0901bf05acd0b2c3fda41965f949583"/></dir></dir></dir><file name="Threecreditcards.php" hash="73fcdc4ef1dd38128b60454f90184ff5"/><file name="Twocreditcards.php" hash="c010f631d556a08d2d1aa65dc6b60703"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Test"><dir name="Selenium"><file name="Abstract.php" hash="caf0cd5ca47b13fb00be4230d1bb9132"/><file name="BoletoTest.php" hash="0718dc551376686dc6daaa3b57ddd1f9"/><dir name="CcTypes"><file name="CreditcardTest.php" hash="fde35369e57eb70f29f8defe1d7f06af"/><file name="CreditcardoneinstallmentTest.php" hash="cabcf9a3f56497e32679c1d2d063a6d7"/><file name="FivecreditcardsTest.php" hash="a903b89e20b9e754df7ed22dc9e8eecf"/><file name="FourcheditcardsTest.php" hash="3619a03b24af1a768cbc87be430b4323"/><file name="ThreecreditcardsTest.php" hash="d59c7b8a7de6320cff170e435fbe6e9e"/><file name="TwocreditcardsTest.php" hash="58db59f790aa7c65a324e6a552c2e05c"/></dir><file name="CcTypes.php" hash="de1d2e73a74e4b9fcde14adce60c0f82"/><file name="DebitTest.php" hash="1409a8f2de15e13792dcba2099a887cc"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="e5a51c9660f704bcbfb302d34493a5a6"/></dir><file name="ClearsaleController.php" hash="bc06365f0d577d66228d9f0c3e471089"/><file name="FcontrolController.php" hash="1af534f1cdadbfdbe702aed12c7a2e1d"/><file name="StandardController.php" hash="b295ebeef3718926839cff25f63ccbd4"/><file name="StoneController.php" hash="80c6f59a868ac82fc22bcf586bbecfdd"/></dir><dir name="etc"><file name="config.xml" hash="cdae4277c060537f101f1e8d8aed24dc"/><file name="jstranslator.xml" hash="8b1ea10d9b3072a795567dba6dae938c"/><file name="system.xml" hash="729b8fe191793b7422d974e10f173992"/><file name="wsdl.xml" hash="a59b87019a8bdb03d97191e2d06be325"/><file name="xtest.xml" hash="b34ee3b6e37a890b73374b5ea3a1c40f"/></dir><dir name="sql"><dir name="mundipagg_setup"><file name="install-0.3.0.php" hash="ede73bb07d71fec55340c4249ff4a258"/><file name="mysql4-upgrade-0.3.0-0.3.5.php" hash="d3c200cce4a814feaa0858c0c8abd928"/><file name="mysql4-upgrade-0.3.5-0.4.0.php" hash="297f1b37b7703f7a0d621d227c8cbeb9"/><file name="mysql4-upgrade-0.3.5-1.0.1.php" hash="d22a0a81e392885433ca58dc196c2a86"/><file name="mysql4-upgrade-0.4.0-1.0.1.php" hash="297f1b37b7703f7a0d621d227c8cbeb9"/><file name="mysql4-upgrade-0.4.1-0.4.2.php" hash="4a2962a1eb974c75e153f48cc77f00d4"/><file name="mysql4-upgrade-0.4.1-1.0.1.php" hash="d22a0a81e392885433ca58dc196c2a86"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="297f1b37b7703f7a0d621d227c8cbeb9"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.10-1.0.11.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.11-2.0.0.php" hash="83c95c6060bb8678be3b8944a6823fd9"/><file name="mysql4-upgrade-1.0.2-1.0.3.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.3-1.0.4.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.4-1.0.5.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.5-1.0.6.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.6-1.0.7.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.7-1.0.8.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.8-1.0.9.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.9-1.0.10.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.0-2.0.1.php" hash="a437df63647a52381ed5e056ccbb0cff"/><file name="mysql4-upgrade-2.0.0-2.1.0.php" hash="30dc2c3c763893d3bac6b9fde0c56477"/><file name="mysql4-upgrade-2.0.1-2.0.2.php" hash="4959ae51e69913d8ac642bc2ab848464"/><file name="mysql4-upgrade-2.0.2-2.0.3.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.3-2.0.4.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.4-2.0.5.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.5-2.0.6.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.6-2.0.7.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.7-2.0.8.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.8-2.0.9.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.9-2.1.0.php" hash="3488f42f3d9e6a57ce4176c0a7954171"/><file name="mysql4-upgrade-2.1.2-2.1.3.php" hash="7d7823cb555a32295d179a96e2bf987a"/><file name="mysql4-upgrade-2.5.7-2.5.8.php" hash="45c4f1fd5336b7ce578c672e8f1d57b0"/><file name="mysql4-upgrade-2.5.8-2.6.0.php" hash="bf06e3d6ab5fa0c89629385db4231006"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="mundipagg.xml" hash="b6677c25d67015f895a72afbca87041c"/></dir><dir name="template"><dir name="mundipagg"><file name="boleto.phtml" hash="11cc5b254644727d6bdded8a834965c7"/><file name="form.phtml" hash="566e1838cab471ce41a1f74156e3b3bf"/><dir name="payment"><dir name="info"><file name="mundipagg.phtml" hash="608c6f547291d4d2d703615784f44403"/></dir></dir><dir name="system"><dir name="config"><file name="button.phtml" hash="6a7f6c88cf156d31d34a818ac37bd158"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="mundipagg.xml" hash="c2ebd0374a3c6a6a4d8c3db84c8abf5a"/></dir><dir name="template"><dir name="mundipagg"><dir name="antifraud"><file name="clearsale.phtml" hash="088a189dd94401f39c90ad0a1471994f"/><file name="fcontrol.phtml" hash="c28bc6d1cb9b0bdc1ff7650b3e2082bc"/><file name="stone.phtml" hash="681ddf22694c725bb6e84e79681936fa"/></dir><file name="boleto.phtml" hash="dc31735a2753812d36e3080bf5b01ac2"/><file name="cancel.phtml" hash="540639b1ccd698397286f668bbf23746"/><file name="debit.phtml" hash="78f60f0227e99ff0c1d7dbf6bd5aa202"/><file name="extras.phtml" hash="f3eba84e971e890922141d90f6bdd53f"/><file name="fcancel.phtml" hash="9ce1d7634acf519669e21978b41aa277"/><file name="form.phtml" hash="faff82dad9768f016f81648aa8b9b800"/><file name="parcelamento.phtml" hash="56a89503637e5ad753b0d410f2f5c7ad"/><file name="partial.phtml" hash="6f01f6950ca176748939559e0e4ec487"/><dir name="payment"><dir name="info"><file name="mundipagg.phtml" hash="c110a21db08013d38add1b79977350e4"/></dir></dir><file name="redirect.phtml" hash="a8a1123eab776934c64f57b4f9cfd517"/><file name="success.phtml" hash="dfb9bd58a4614bfd6317bc98b2a68c8f"/><file name="totals.phtml" hash="5a78aa3fe60d4b13bf8451f23bb9edd9"/></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="template"><dir name="mundipagg"><file name="debit.phtml" hash="4d2ae58447d3893499556ae068f800f8"/><file name="form.phtml" hash="dd83f04f33982e17fdea1713a3eb1b3a"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Uecommerce_Mundipagg.xml" hash="b292eeabde8e2cd06db0c31aff54fd98"/></dir></target><target name="mage"><dir name="js"><dir name="uecommerce"><file name="mundipagg.js" hash="c887a21c210250da640bafce773e43ab"/></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="mundipagg"><file name="ajax-loader.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="boleto.jpg" hash="237570c55c811b4b13f73ab92f28e599"/><file name="mundipagg-avatar-blue.png" hash="9e81f9c54ac7ce3de570d7065f4b4c07"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="mundipagg.css" hash="90c32001f3a9b858c9506f5135c04972"/></dir><dir name="images"><dir name="mundipagg"><file name="001.png" hash="25d10d6fee7fc3e5dc48021a15de8fb0"/><file name="237.png" hash="cbea9caff342edd9b9b9509bbbbae6fb"/><file name="341.png" hash="3645161fc56322ec34ebfcc006390e5d"/><file name="AE.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="DI.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="EL.png" hash="ad180c308d285f73fc044121cb6aeac0"/><file name="HI.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="MC.png" hash="836466c092121163320e9e6279f11f8b"/><file name="VBV.jpg" hash="1a7db765956829e80715a299b799f580"/><file name="VBV.png" hash="d6fb7de65fda842f03e2b9fc89d5e6aa"/><file name="VI.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="ajax-loader.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="boleto.jpg" hash="237570c55c811b4b13f73ab92f28e599"/><file name="cc_types.png" hash="fdae60f96ee668354161b5a865b8e7ef"/><file name="cielo_mastercard.png" hash="e2c2af12ea24f1b82490fdcc62fbb871"/><file name="cielo_visa.png" hash="d2f0c660714dc319b73c0dac9c9108d0"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="images"><dir name="mundipagg"><file name="EL.png" hash="ad180c308d285f73fc044121cb6aeac0"/><file name="HI.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="ae.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="boleto.jpg" hash="237570c55c811b4b13f73ab92f28e599"/><file name="cielo_mastercard.png" hash="e2c2af12ea24f1b82490fdcc62fbb871"/><file name="cielo_visa.png" hash="d2f0c660714dc319b73c0dac9c9108d0"/><file name="di.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="mc.png" hash="836466c092121163320e9e6279f11f8b"/><file name="vi.png" hash="cc0709d50773fa2815f7bfeb741a4219"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Uecommerce_Mundipagg.csv" hash="ae581dc54ea4ada4a9a3c9f4c51f09c7"/></dir><dir name="pt_BR"><file name="Uecommerce_Mundipagg.csv" hash="a9e68878dcac2b008a7e46350952a8a1"/></dir></target></contents>
22
  <compatible/>
23
  <dependencies><required><php><min>5.1.0</min><max>7.9.99</max></php></required></dependencies>
24
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mundipagg_Integracao</name>
4
+ <version>2.6.4</version>
5
  <stability>stable</stability>
6
  <license>MIT</license>
7
  <channel>community</channel>
12
  <description>Com esta extens&#xE3;o voc&#xEA; poder&#xE1; integrar sua loja Magento com o gateway de pagamentos MundiPagg.&#xD;
13
  &#xD;
14
  With this extension you can process payments through brazilian payment gateway Mundipagg</description>
15
+ <notes>Notification post fix</notes>
 
 
16
  <authors><author><name>MundiPagg</name><user>MundiPagg</user><email>mundi@mundipagg.com</email></author></authors>
17
+ <date>2016-07-28</date>
18
+ <time>17:45:11</time>
19
+ <contents><target name="magecommunity"><dir name="Uecommerce"><dir name="Mundipagg"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Field"><file name="Installments.php" hash="ec8343e197cb194d978400bbdf64d446"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="2140a7836eaa57e03727433ccddf93d6"/></dir><dir name="Invoice"><file name="Totals.php" hash="ee304d9034ae0763e5db464f933b8c27"/><file name="View.php" hash="b0e3c170cd0184a5dfbe4fa7a486b471"/></dir><file name="Totals.php" hash="71b20a4c0022c14a5f7f8d008aabe1da"/></dir><dir name="Transactions"><dir name="Detail"><file name="Grid.php" hash="d67911c431587e4327eec95540cf548a"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><file name="Button.php" hash="aa40a974b89c92ea9652c42e093d16f9"/></dir></dir></dir><file name="Version.php" hash="e3a89823e48e7a526a3afe8ce8c0d0ee"/></dir><dir name="Checkout"><dir name="Onepage"><dir name="Payment"><file name="Methods.php" hash="c903e413c47e3dea87ec09d609543a27"/></dir></dir></dir><file name="Info.php" hash="c5743b8887caffc12ee2b502d7256101"/><file name="Parcelamento.php" hash="bbfad3557dd7c29e2a21a213cf915e0c"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="be3e89b0e2f008fcc0293286d44df7da"/></dir><dir name="Invoice"><file name="Totals.php" hash="a39c41f45ef44b72d15cfd12fea4e9c6"/></dir><file name="Totals.php" hash="6f56aa360f48c715b30afd4e5cd4ddfa"/></dir></dir><dir name="Standard"><file name="Boleto.php" hash="4471015b8a82311f84e52e774460bf38"/><file name="Cancel.php" hash="095eaf31c6567fad440279aeb2994caa"/><file name="Debit.php" hash="c707d9572b6079457b9265cc09c920c6"/><file name="Fcancel.php" hash="4bc5b0fb68fb7fd11159788eafe958af"/><file name="Form.php" hash="0f7f97654c5e819ac178e5d888fae6ee"/><file name="Partial.php" hash="fb5877a8f6c56ac1d6fc48eb864d8e60"/><file name="Redirect.php" hash="70f576c8d64c25e3ce627f6c36b2ff41"/><file name="Success.php" hash="b1b0bef88ed350d703da0e314ffad565"/></dir></dir><dir name="Controller"><file name="Abstract.php" hash="91d5069c18069fcb2a0a436fb768a194"/></dir><dir name="Helper"><file name="Data.php" hash="230133453d65c7e7a7681ba095e5942c"/><file name="Installments.php" hash="3d34c4b9432d09a99e13c7f6b3f657ae"/><file name="Log.php" hash="a95575e22743a7b823ec3f088844f18f"/><file name="Util.php" hash="8d76ffdc3e7ace2598d373f1aef20228"/><file name="Version.php" hash="00066d5bf31a7c49db004f2bd0d5c462"/></dir><dir name="Model"><file name="Api.php" hash="d56b900c2e74567303638d9d3b9573dd"/><file name="Boleto.php" hash="a7da1d58eb0fccb53eae51ba97d93dc5"/><file name="Cardonfile.php" hash="98395928a16313f8b4127e4e210cf953"/><file name="Creditcard.php" hash="007a43e7530ea5471b6a9aaa5405ce21"/><file name="Creditcardoneinstallment.php" hash="2e4222fd04dbc4f5ee116d4d7f4eae04"/><dir name="Customer"><file name="Session.php" hash="7f15498648de23cf4feb5143071ec260"/></dir><file name="Customers.php" hash="a779e96a969b83d1b38df351eb4670d0"/><file name="Debit.php" hash="8a3387bf74b1f03b9614fbdb64ab9dd5"/><dir name="Enum"><file name="BoletoTransactionStatusEnum.php" hash="3fed0a36bb76497b85c50016af34d47a"/><file name="CreditCardTransactionStatusEnum.php" hash="4546716f63e6df57061b222002157ccd"/><file name="OrderStatusEnum.php" hash="fd42020aab9d5507b5e0c26957cd1abb"/><file name="TransactionTypeEnum.php" hash="52fc4049a9f2b120ad3ed99e296268f9"/></dir><file name="Fivecreditcards.php" hash="6975e6170345bb3f20fde79ae40b81fe"/><file name="Fourcreditcards.php" hash="2da3d901173c19e53a96adb197b1533a"/><file name="Observer.php" hash="5fb123fe9bd7ee7593bc38984a3d3ae0"/><file name="Offlineretry.php" hash="394849df4873908dd43d3c15f75dc9d0"/><dir name="Order"><dir name="Invoice"><file name="Interest.php" hash="6bba5e87bae1a7ee94a827819b2ea4ce"/></dir></dir><file name="Providervalidation.php" hash="4906944bae20e3f683d6e5c4ba5304e3"/><dir name="Quote"><dir name="Address"><file name="Interest.php" hash="93aa0189a8556597697dbb239dbf3be7"/></dir></dir><file name="Recurrency.php" hash="76bb429ac4c849e27c8fabdd96bb9654"/><dir name="Resource"><dir name="Cardonfile"><file name="Collection.php" hash="7b7d13bc6d7be8e5e1c5f945d59117f6"/></dir><file name="Cardonfile.php" hash="47d0107a9b1c3415aaf8784298361e84"/><dir name="Customers"><file name="Collection.php" hash="6caadd817abbcda527ba6d102585f2ff"/></dir><file name="Customers.php" hash="f50289a4c8362ddf7a79e4aa7c8a6387"/><dir name="Offlineretry"><file name="Collection.php" hash="80f0689c66a30110e68c2fdafb3014a8"/></dir><file name="Offlineretry.php" hash="08c804fd3b001f4f3ac19ebbcfca59fb"/><file name="Setup.php" hash="42bda31d8497e1b0983775e17f7325a5"/></dir><dir name="Source"><file name="Antifraud.php" hash="8362e0bb2209bbf904a7f9b2edd59cee"/><file name="Banks.php" hash="b5d456a807cdf750a6458144e955cf2c"/><file name="CctypeProductInstallments.php" hash="7837f6865c905ba8f5393d080ebc1b3d"/><file name="Cctypes.php" hash="b55eb988a6a09f24b1088f15644961d0"/><file name="Debit.php" hash="9366bc3b900cf96ad5d2bce7e8d93ba7"/><file name="Environment.php" hash="099a28ea462481333437a6479276e8b0"/><file name="FControlEnvironment.php" hash="5159f6e4d86ee9d280285b7198fa01e9"/><file name="Frequency.php" hash="7864991042d0ec3fd5920d9047127b14"/><file name="Installments.php" hash="b04c05b92f7b8b5c025f23aad4457917"/><file name="PaymentAction.php" hash="c16639be23fd85c285f474922fd528a7"/><file name="PaymentMethods.php" hash="e12514ad00bf3fe3fb4e569b11da2c10"/></dir><file name="Standard.php" hash="f1c096a26841a0d05cc20926742e5c71"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Installments.php" hash="f0901bf05acd0b2c3fda41965f949583"/></dir></dir></dir><file name="Threecreditcards.php" hash="73fcdc4ef1dd38128b60454f90184ff5"/><file name="Twocreditcards.php" hash="c010f631d556a08d2d1aa65dc6b60703"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Test"><dir name="Selenium"><file name="Abstract.php" hash="caf0cd5ca47b13fb00be4230d1bb9132"/><file name="BoletoTest.php" hash="0718dc551376686dc6daaa3b57ddd1f9"/><dir name="CcTypes"><file name="CreditcardTest.php" hash="fde35369e57eb70f29f8defe1d7f06af"/><file name="CreditcardoneinstallmentTest.php" hash="cabcf9a3f56497e32679c1d2d063a6d7"/><file name="FivecreditcardsTest.php" hash="a903b89e20b9e754df7ed22dc9e8eecf"/><file name="FourcheditcardsTest.php" hash="3619a03b24af1a768cbc87be430b4323"/><file name="ThreecreditcardsTest.php" hash="d59c7b8a7de6320cff170e435fbe6e9e"/><file name="TwocreditcardsTest.php" hash="58db59f790aa7c65a324e6a552c2e05c"/></dir><file name="CcTypes.php" hash="de1d2e73a74e4b9fcde14adce60c0f82"/><file name="DebitTest.php" hash="1409a8f2de15e13792dcba2099a887cc"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="e5a51c9660f704bcbfb302d34493a5a6"/></dir><file name="ClearsaleController.php" hash="bc06365f0d577d66228d9f0c3e471089"/><file name="FcontrolController.php" hash="1af534f1cdadbfdbe702aed12c7a2e1d"/><file name="StandardController.php" hash="b295ebeef3718926839cff25f63ccbd4"/><file name="StoneController.php" hash="80c6f59a868ac82fc22bcf586bbecfdd"/><file name="TesteController.php" hash="d8f5135721aefe329d3acf5a3ef26aa4"/></dir><dir name="etc"><file name="config.xml" hash="77c0459514ca70e162f93e5c239c0b1c"/><file name="jstranslator.xml" hash="8b1ea10d9b3072a795567dba6dae938c"/><file name="system.xml" hash="729b8fe191793b7422d974e10f173992"/><file name="wsdl.xml" hash="a59b87019a8bdb03d97191e2d06be325"/><file name="xtest.xml" hash="b34ee3b6e37a890b73374b5ea3a1c40f"/></dir><dir name="sql"><dir name="mundipagg_setup"><file name="install-0.3.0.php" hash="ede73bb07d71fec55340c4249ff4a258"/><file name="mysql4-upgrade-0.3.0-0.3.5.php" hash="d3c200cce4a814feaa0858c0c8abd928"/><file name="mysql4-upgrade-0.3.5-0.4.0.php" hash="297f1b37b7703f7a0d621d227c8cbeb9"/><file name="mysql4-upgrade-0.3.5-1.0.1.php" hash="d22a0a81e392885433ca58dc196c2a86"/><file name="mysql4-upgrade-0.4.0-1.0.1.php" hash="297f1b37b7703f7a0d621d227c8cbeb9"/><file name="mysql4-upgrade-0.4.1-0.4.2.php" hash="4a2962a1eb974c75e153f48cc77f00d4"/><file name="mysql4-upgrade-0.4.1-1.0.1.php" hash="d22a0a81e392885433ca58dc196c2a86"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="297f1b37b7703f7a0d621d227c8cbeb9"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.10-1.0.11.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.11-2.0.0.php" hash="83c95c6060bb8678be3b8944a6823fd9"/><file name="mysql4-upgrade-1.0.2-1.0.3.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.3-1.0.4.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.4-1.0.5.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.5-1.0.6.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.6-1.0.7.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.7-1.0.8.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.8-1.0.9.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-1.0.9-1.0.10.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.0-2.0.1.php" hash="a437df63647a52381ed5e056ccbb0cff"/><file name="mysql4-upgrade-2.0.0-2.1.0.php" hash="30dc2c3c763893d3bac6b9fde0c56477"/><file name="mysql4-upgrade-2.0.1-2.0.2.php" hash="4959ae51e69913d8ac642bc2ab848464"/><file name="mysql4-upgrade-2.0.2-2.0.3.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.3-2.0.4.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.4-2.0.5.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.5-2.0.6.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.6-2.0.7.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.7-2.0.8.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.8-2.0.9.php" hash="4c18b9eb1e0a08d858dde48280eed2c0"/><file name="mysql4-upgrade-2.0.9-2.1.0.php" hash="3488f42f3d9e6a57ce4176c0a7954171"/><file name="mysql4-upgrade-2.1.2-2.1.3.php" hash="7d7823cb555a32295d179a96e2bf987a"/><file name="mysql4-upgrade-2.5.7-2.5.8.php" hash="45c4f1fd5336b7ce578c672e8f1d57b0"/><file name="mysql4-upgrade-2.5.8-2.6.0.php" hash="bf06e3d6ab5fa0c89629385db4231006"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="mundipagg.xml" hash="b6677c25d67015f895a72afbca87041c"/></dir><dir name="template"><dir name="mundipagg"><file name="boleto.phtml" hash="11cc5b254644727d6bdded8a834965c7"/><file name="form.phtml" hash="566e1838cab471ce41a1f74156e3b3bf"/><dir name="payment"><dir name="info"><file name="mundipagg.phtml" hash="608c6f547291d4d2d703615784f44403"/></dir></dir><dir name="system"><dir name="config"><file name="button.phtml" hash="6a7f6c88cf156d31d34a818ac37bd158"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="mundipagg.xml" hash="c2ebd0374a3c6a6a4d8c3db84c8abf5a"/></dir><dir name="template"><dir name="mundipagg"><dir name="antifraud"><file name="clearsale.phtml" hash="088a189dd94401f39c90ad0a1471994f"/><file name="fcontrol.phtml" hash="c28bc6d1cb9b0bdc1ff7650b3e2082bc"/><file name="stone.phtml" hash="681ddf22694c725bb6e84e79681936fa"/></dir><file name="boleto.phtml" hash="dc31735a2753812d36e3080bf5b01ac2"/><file name="cancel.phtml" hash="540639b1ccd698397286f668bbf23746"/><file name="debit.phtml" hash="78f60f0227e99ff0c1d7dbf6bd5aa202"/><file name="extras.phtml" hash="f3eba84e971e890922141d90f6bdd53f"/><file name="fcancel.phtml" hash="9ce1d7634acf519669e21978b41aa277"/><file name="form.phtml" hash="faff82dad9768f016f81648aa8b9b800"/><file name="parcelamento.phtml" hash="56a89503637e5ad753b0d410f2f5c7ad"/><file name="partial.phtml" hash="6f01f6950ca176748939559e0e4ec487"/><dir name="payment"><dir name="info"><file name="mundipagg.phtml" hash="c110a21db08013d38add1b79977350e4"/></dir></dir><file name="redirect.phtml" hash="a8a1123eab776934c64f57b4f9cfd517"/><file name="success.phtml" hash="7afd82f246fdf50f9a72ebb15086a2b6"/><file name="totals.phtml" hash="5a78aa3fe60d4b13bf8451f23bb9edd9"/></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="template"><dir name="mundipagg"><file name="debit.phtml" hash="4d2ae58447d3893499556ae068f800f8"/><file name="form.phtml" hash="dd83f04f33982e17fdea1713a3eb1b3a"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Uecommerce_Mundipagg.xml" hash="b292eeabde8e2cd06db0c31aff54fd98"/></dir></target><target name="mage"><dir name="js"><dir name="uecommerce"><file name="mundipagg.js" hash="c887a21c210250da640bafce773e43ab"/></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="mundipagg"><file name="ajax-loader.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="boleto.jpg" hash="237570c55c811b4b13f73ab92f28e599"/><file name="mundipagg-avatar-blue.png" hash="9e81f9c54ac7ce3de570d7065f4b4c07"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="mundipagg.css" hash="90c32001f3a9b858c9506f5135c04972"/></dir><dir name="images"><dir name="mundipagg"><file name="001.png" hash="25d10d6fee7fc3e5dc48021a15de8fb0"/><file name="237.png" hash="cbea9caff342edd9b9b9509bbbbae6fb"/><file name="341.png" hash="3645161fc56322ec34ebfcc006390e5d"/><file name="AE.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="DI.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="EL.png" hash="ad180c308d285f73fc044121cb6aeac0"/><file name="HI.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="MC.png" hash="836466c092121163320e9e6279f11f8b"/><file name="VBV.jpg" hash="1a7db765956829e80715a299b799f580"/><file name="VBV.png" hash="d6fb7de65fda842f03e2b9fc89d5e6aa"/><file name="VI.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="ajax-loader.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="boleto.jpg" hash="237570c55c811b4b13f73ab92f28e599"/><file name="cc_types.png" hash="fdae60f96ee668354161b5a865b8e7ef"/><file name="cielo_mastercard.png" hash="e2c2af12ea24f1b82490fdcc62fbb871"/><file name="cielo_visa.png" hash="d2f0c660714dc319b73c0dac9c9108d0"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="images"><dir name="mundipagg"><file name="EL.png" hash="ad180c308d285f73fc044121cb6aeac0"/><file name="HI.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="ae.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="boleto.jpg" hash="237570c55c811b4b13f73ab92f28e599"/><file name="cielo_mastercard.png" hash="e2c2af12ea24f1b82490fdcc62fbb871"/><file name="cielo_visa.png" hash="d2f0c660714dc319b73c0dac9c9108d0"/><file name="di.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="mc.png" hash="836466c092121163320e9e6279f11f8b"/><file name="vi.png" hash="cc0709d50773fa2815f7bfeb741a4219"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Uecommerce_Mundipagg.csv" hash="ae581dc54ea4ada4a9a3c9f4c51f09c7"/></dir><dir name="pt_BR"><file name="Uecommerce_Mundipagg.csv" hash="a9e68878dcac2b008a7e46350952a8a1"/></dir></target></contents>
20
  <compatible/>
21
  <dependencies><required><php><min>5.1.0</min><max>7.9.99</max></php></required></dependencies>
22
  </package>