Mundipagg_Integracao - Version 2.9.20

Version Notes

- The module now displays an alert when a user logs into the Magento admin, showing that there is a new version available.

- When a customer cancels an already captured transaction on our dashboard, the module cancels the generated invoice and closes the request.

Download this release

Release Info

Developer mundipagg
Extension Mundipagg_Integracao
Version 2.9.20
Comparing to
See all releases


Code changes from version 2.9.19 to 2.9.20

README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Magento.Integracao
2
+
3
+ ## Magento Connect ##
4
+ https://www.magentocommerce.com/magento-connect/mundipagg-payment-gateway.html
5
+
6
+ ## System requirements ##
7
+ PHP 5.4
8
+
9
+ ## Installation with modgit ##
10
+ modgit: https://github.com/jreinke/modgit
11
+
12
+ $ cd /path/to/magento
13
+ $ modgit init
14
+ $ modgit add mundipagg_integracao git@github.com:mundipagg/Magento.Integracao.git
15
+
16
+ ## Simulator rules by amount ##
17
+
18
+ ### Authorization ###
19
+ Authorized: <= $ 1.050,00
20
+
21
+ Timeout: >= $ 1.050,01 && < $ 1.051,71
22
+
23
+ Not Authorized: >= $ 1.500,00
24
+
25
+ ## Documentation ##
26
+
27
+ http://docs.mundipagg.com
28
+
29
+ ## Work with us!
30
+
31
+ Gostou da nossa SDK? Estamos sempre em busca de gente boa pra codar!
32
+
33
+ Manda email (vagas@mundipagg.com) ou dá uma olhada nas [vagas](https://github.com/mundipagg/vagas) e vem conhecer a gente! :smile:
34
+
35
+ Dev queremos você!
36
+
37
+ Did you like our SDK? We're always looking for good coders!
38
+
39
+ Send us an email (vagas@mundipagg.com) or take a look at our [jobs](https://github.com/mundipagg/vagas) page and come meet us! :smile:
40
+
41
+ ![We want you](https://raw.githubusercontent.com/mundipagg/vagas/master/we_want_you.jpg)
app/code/community/Uecommerce/Mundipagg/Block/Standard/Form.php CHANGED
@@ -76,7 +76,7 @@ class Uecommerce_Mundipagg_Block_Standard_Form extends Mage_Payment_Block_Form
76
  if ($session->isLoggedIn()) {
77
  $quote = Mage::getSingleton('adminhtml/session_quote')->getQuote();
78
  } else {
79
- $quote =(Mage::getModel('checkout/type_onepage') !== false)? Mage::getModel('checkout/type_onepage')->getQuote(): Mage::getModel('checkout/session')->getQuote();;
80
  }
81
 
82
  $quote->setMundipaggInterest(0.0);
76
  if ($session->isLoggedIn()) {
77
  $quote = Mage::getSingleton('adminhtml/session_quote')->getQuote();
78
  } else {
79
+ $quote =(Mage::getModel('checkout/type_onepage') !== false)? Mage::getModel('checkout/type_onepage')->getQuote(): Mage::getModel('checkout/session')->getQuote();
80
  }
81
 
82
  $quote->setMundipaggInterest(0.0);
app/code/community/Uecommerce/Mundipagg/Model/Api.php CHANGED
@@ -284,13 +284,6 @@ class Uecommerce_Mundipagg_Model_Api extends Uecommerce_Mundipagg_Model_Standard
284
  'result' => $response
285
  );
286
 
287
- if (is_null($createDate) === false) {
288
- $result['CreateDate'] = $createDate;
289
- }
290
-
291
- // save offline retry statements if this feature is enabled
292
- $this->saveOfflineRetryStatements($orderReference, new DateTime($createDate));
293
-
294
  return $result;
295
  }
296
 
@@ -1281,14 +1274,12 @@ class Uecommerce_Mundipagg_Model_Api extends Uecommerce_Mundipagg_Model_Standard
1281
  $capturedAmountInCents = $data['OnlineDebitTransaction']['AmountPaidInCents'];
1282
  $transactionData = $data['OnlineDebitTransaction'];
1283
  }
1284
-
1285
  $returnMessageLabel = "Order #{$order->getIncrementId()}";
1286
 
1287
  if (isset($data['OrderStatus'])) {
1288
  $orderStatus = $data['OrderStatus'];
1289
-
1290
- //if MundiPagg order status is canceled, cancel the order on Magento
1291
- if ($orderStatus == Uecommerce_Mundipagg_Model_Enum_OrderStatusEnum::CANCELED) {
1292
 
1293
  if ($order->getState() == Mage_Sales_Model_Order::STATE_CANCELED) {
1294
  $returnMessage = "OK | {$returnMessageLabel} | Order already canceled.";
@@ -1492,7 +1483,6 @@ class Uecommerce_Mundipagg_Model_Api extends Uecommerce_Mundipagg_Model_Standard
1492
  $order->save();
1493
 
1494
  $returnMessage = "OK | {$returnMessageLabel} | Transaction status '{$status}' processed. Order status updated.";
1495
-
1496
  $helperLog->info($returnMessage);
1497
 
1498
  return $returnMessage;
@@ -1540,7 +1530,7 @@ class Uecommerce_Mundipagg_Model_Api extends Uecommerce_Mundipagg_Model_Standard
1540
  $order->unhold();
1541
  }
1542
 
1543
- $ok = 0;
1544
  $invoices = array();
1545
  $canceledInvoices = array();
1546
 
@@ -1557,44 +1547,16 @@ class Uecommerce_Mundipagg_Model_Api extends Uecommerce_Mundipagg_Model_Standard
1557
  }
1558
 
1559
  // Refund invoices and Credit Memo
1560
- if (!empty($invoices)) {
1561
  $service = Mage::getModel('sales/service_order', $order);
1562
 
1563
  foreach ($invoices as $invoice) {
1564
- $invoice->setState(Mage_Sales_Model_Order_Invoice::STATE_CANCELED);
1565
- $invoice->save();
1566
-
1567
- $creditmemo = $service->prepareInvoiceCreditmemo($invoice);
1568
- $creditmemo->setOfflineRequested(true);
1569
- $creditmemo->register()->save();
1570
  }
1571
 
1572
- // Close order
1573
- $order->setData('state', 'closed');
1574
- $order->setStatus('closed');
1575
- $order->save();
1576
-
1577
- // Return
1578
- $ok++;
1579
- }
1580
-
1581
- // Credit Memo
1582
- if (!empty($canceledInvoices)) {
1583
- $service = Mage::getModel('sales/service_order', $order);
1584
-
1585
- foreach ($invoices as $invoice) {
1586
- $creditmemo = $service->prepareInvoiceCreditmemo($invoice);
1587
- $creditmemo->setOfflineRequested(true);
1588
- $creditmemo->register()->save();
1589
- }
1590
-
1591
- // Close order
1592
- $order->setData('state', Mage_Sales_Model_Order::STATE_CLOSED);
1593
- $order->setStatus(Mage_Sales_Model_Order::STATE_CLOSED);
1594
- $order->save();
1595
-
1596
- // Return
1597
- $ok++;
1598
  }
1599
 
1600
  if (empty($invoices) && empty($canceledInvoices)) {
@@ -1603,10 +1565,10 @@ class Uecommerce_Mundipagg_Model_Api extends Uecommerce_Mundipagg_Model_Standard
1603
  $helperLog->info("{$returnMessageLabel} | Order canceled.");
1604
 
1605
  // Return
1606
- $ok++;
1607
  }
1608
 
1609
- if ($ok > 0) {
1610
  $returnMessage = "{$returnMessageLabel} | Order status '{$status}' processed.";
1611
  $helperLog->info($returnMessage);
1612
 
@@ -1873,6 +1835,7 @@ class Uecommerce_Mundipagg_Model_Api extends Uecommerce_Mundipagg_Model_Standard
1873
  $order->setState(Mage_Sales_Model_Order::STATE_PROCESSING, 'overpaid');
1874
  } else {
1875
  $order->setState(Mage_Sales_Model_Order::STATE_PROCESSING, true);
 
1876
  }
1877
 
1878
  $order->save();
@@ -2167,7 +2130,7 @@ class Uecommerce_Mundipagg_Model_Api extends Uecommerce_Mundipagg_Model_Standard
2167
 
2168
  /**
2169
  * Check if order is in offline retry time
2170
- *
2171
  * @author Ruan Azevedo <razevedo@mundipagg.com>
2172
  * @since 2016-06-20
2173
  * @param string $orderIncrementId
@@ -2194,6 +2157,7 @@ class Uecommerce_Mundipagg_Model_Api extends Uecommerce_Mundipagg_Model_Standard
2194
  * If the Offline Retry feature is enabled, save order offline retry statements
2195
  *
2196
  * @author Ruan Azevedo <razevedo@mundipagg.com>
 
2197
  * @since 2016-06-23
2198
  * @param string $orderIncrementId
2199
  * @param DateTime $createDate
@@ -2363,5 +2327,48 @@ class Uecommerce_Mundipagg_Model_Api extends Uecommerce_Mundipagg_Model_Standard
2363
 
2364
  return $data;
2365
  }
2366
-
2367
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
  'result' => $response
285
  );
286
 
 
 
 
 
 
 
 
287
  return $result;
288
  }
289
 
1274
  $capturedAmountInCents = $data['OnlineDebitTransaction']['AmountPaidInCents'];
1275
  $transactionData = $data['OnlineDebitTransaction'];
1276
  }
 
1277
  $returnMessageLabel = "Order #{$order->getIncrementId()}";
1278
 
1279
  if (isset($data['OrderStatus'])) {
1280
  $orderStatus = $data['OrderStatus'];
1281
+ //if Magento order is not processing and MundiPagg order status is canceled, cancel the order on Magento
1282
+ if ($order->getState() != Mage_Sales_Model_Order::STATE_PROCESSING && $orderStatus == Uecommerce_Mundipagg_Model_Enum_OrderStatusEnum::CANCELED) {
 
1283
 
1284
  if ($order->getState() == Mage_Sales_Model_Order::STATE_CANCELED) {
1285
  $returnMessage = "OK | {$returnMessageLabel} | Order already canceled.";
1483
  $order->save();
1484
 
1485
  $returnMessage = "OK | {$returnMessageLabel} | Transaction status '{$status}' processed. Order status updated.";
 
1486
  $helperLog->info($returnMessage);
1487
 
1488
  return $returnMessage;
1530
  $order->unhold();
1531
  }
1532
 
1533
+ $success = false;
1534
  $invoices = array();
1535
  $canceledInvoices = array();
1536
 
1547
  }
1548
 
1549
  // Refund invoices and Credit Memo
1550
+ if (!empty($invoices) || !empty($canceledInvoices)) {
1551
  $service = Mage::getModel('sales/service_order', $order);
1552
 
1553
  foreach ($invoices as $invoice) {
1554
+ $this->closeInvoice($invoice);
1555
+ $this->createCreditMemo($invoice, $service);
 
 
 
 
1556
  }
1557
 
1558
+ $this->closeOrder($order);
1559
+ $success = true;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1560
  }
1561
 
1562
  if (empty($invoices) && empty($canceledInvoices)) {
1565
  $helperLog->info("{$returnMessageLabel} | Order canceled.");
1566
 
1567
  // Return
1568
+ $success = true;
1569
  }
1570
 
1571
+ if ($success) {
1572
  $returnMessage = "{$returnMessageLabel} | Order status '{$status}' processed.";
1573
  $helperLog->info($returnMessage);
1574
 
1835
  $order->setState(Mage_Sales_Model_Order::STATE_PROCESSING, 'overpaid');
1836
  } else {
1837
  $order->setState(Mage_Sales_Model_Order::STATE_PROCESSING, true);
1838
+ $order->addStatusToHistory(Mage_Sales_Model_Order::STATE_PROCESSING, $comment = 'Boleto pago', true);
1839
  }
1840
 
1841
  $order->save();
2130
 
2131
  /**
2132
  * Check if order is in offline retry time
2133
+ * @deprecated since version 2.9.20
2134
  * @author Ruan Azevedo <razevedo@mundipagg.com>
2135
  * @since 2016-06-20
2136
  * @param string $orderIncrementId
2157
  * If the Offline Retry feature is enabled, save order offline retry statements
2158
  *
2159
  * @author Ruan Azevedo <razevedo@mundipagg.com>
2160
+ * @deprecated since version 2.9.20
2161
  * @since 2016-06-23
2162
  * @param string $orderIncrementId
2163
  * @param DateTime $createDate
2327
 
2328
  return $data;
2329
  }
2330
+
2331
+ /**
2332
+ * @param object $order
2333
+ * @return boolean
2334
+ */
2335
+ private function closeOrder($order){
2336
+ $order->setData('state', Mage_Sales_Model_Order::STATE_CLOSED);
2337
+ $order->setStatus(Mage_Sales_Model_Order::STATE_CLOSED);
2338
+ $order->addStatusToHistory(Mage_Sales_Model_Order::STATE_CLOSED, "Transaction update received: " . Mage_Sales_Model_Order::STATE_CLOSED, true);
2339
+ $order->sendOrderUpdateEmail();
2340
+ if($order->save()){
2341
+ return true;
2342
+ }else{
2343
+ return false;
2344
+ }
2345
+ }
2346
+
2347
+ /**
2348
+ * @param object $invoice
2349
+ * @return boolean
2350
+ */
2351
+ private function closeInvoice($invoice){
2352
+ $invoice->setState(Mage_Sales_Model_Order_Invoice::STATE_CANCELED);
2353
+ if($invoice->save()){
2354
+ return true;
2355
+ }else{
2356
+ return false;
2357
+ }
2358
+ }
2359
+
2360
+ /**
2361
+ * @param object $invoice
2362
+ * @return boolean
2363
+ */
2364
+ private function createCreditMemo($invoice, $service){
2365
+ $creditmemo = $service->prepareInvoiceCreditmemo($invoice);
2366
+ $creditmemo->setOfflineRequested(true);
2367
+ if($creditmemo->register()->save()){
2368
+ return true;
2369
+ }else{
2370
+ return false;
2371
+ }
2372
+ }
2373
+
2374
+ }
app/code/community/Uecommerce/Mundipagg/Model/Observer.php CHANGED
@@ -57,27 +57,6 @@ class Uecommerce_Mundipagg_Model_Observer extends Uecommerce_Mundipagg_Model_Sta
57
  $state = $order->getState();
58
 
59
  if ($state == Mage_Sales_Model_Order::STATE_CANCELED) {
60
-
61
- // if a order is canceled successfuly, offline retry data must be deleted if exists
62
- if (Uecommerce_Mundipagg_Model_Offlineretry::offlineRetryIsEnabled()) {
63
- $model = Mage::getModel('mundipagg/offlineretry');
64
- $incrementId = $order->getIncrementId();
65
- $offlineRetry = $model->loadByIncrementId($incrementId);
66
-
67
- if (is_null($offlineRetry->getId()) === false) {
68
- $helperLog = new Uecommerce_Mundipagg_Helper_Log(__METHOD__);
69
- $helperLog->setLogLabel("Order #{$incrementId} canceled");
70
-
71
- try {
72
- $offlineRetry->delete();
73
- $helperLog->info("Offline retry data deleted successfully.");
74
-
75
- } catch (Exception $e) {
76
- $helperLog->info("Offline retry data cannot be deleted: {$e}");
77
- }
78
- }
79
- }
80
-
81
  //cancel Mundi transactions via API
82
  $this->cancelOrderViaApi($order);
83
  }
57
  $state = $order->getState();
58
 
59
  if ($state == Mage_Sales_Model_Order::STATE_CANCELED) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  //cancel Mundi transactions via API
61
  $this->cancelOrderViaApi($order);
62
  }
app/code/community/Uecommerce/Mundipagg/Model/Standard.php CHANGED
@@ -1956,9 +1956,7 @@ class Uecommerce_Mundipagg_Model_Standard extends Mage_Payment_Model_Method_Abst
1956
  $api = new Uecommerce_Mundipagg_Model_Api();
1957
  $orderInOfflineRetry = $api->orderIsInOfflineRetry($orderIncrementId);
1958
 
1959
- if (in_array($ccTransactionStatus, $transactionOpenStatuses)
1960
- || $orderInOfflineRetry
1961
- ) {
1962
  $transaction->setIsClosed(0);
1963
  } else {
1964
  $transaction->setIsClosed(1);
@@ -2000,21 +1998,17 @@ class Uecommerce_Mundipagg_Model_Standard extends Mage_Payment_Model_Method_Abst
2000
  $helperLog = new Uecommerce_Mundipagg_Helper_Log(__METHOD__);
2001
  $logLabel = "Order #{$orderIncrementId}";
2002
 
2003
- if ($offlineRetryIsEnabled == false) {
 
 
 
 
 
 
2004
  $helperLog->info("{$logLabel} | Payment not authorized and store don't have offline retry, order will be canceled.");
2005
  Mage::getSingleton('checkout/session')->setApprovalRequestSuccess('cancel');
2006
-
2007
  return;
2008
  }
2009
-
2010
- $api = new Uecommerce_Mundipagg_Model_Api();
2011
-
2012
- if ($api->orderIsInOfflineRetry($orderIncrementId)) {
2013
- $message = "{$logLabel} | payment not authorized but order is in offline retry yet, not cancel.";
2014
-
2015
- $helperLog->info($message);
2016
- Mage::getSingleton('checkout/session')->setApprovalRequestSuccess('success');
2017
- }
2018
  }
2019
 
2020
  /**
1956
  $api = new Uecommerce_Mundipagg_Model_Api();
1957
  $orderInOfflineRetry = $api->orderIsInOfflineRetry($orderIncrementId);
1958
 
1959
+ if (in_array($ccTransactionStatus, $transactionOpenStatuses)) {
 
 
1960
  $transaction->setIsClosed(0);
1961
  } else {
1962
  $transaction->setIsClosed(1);
1998
  $helperLog = new Uecommerce_Mundipagg_Helper_Log(__METHOD__);
1999
  $logLabel = "Order #{$orderIncrementId}";
2000
 
2001
+ if ($offlineRetryIsEnabled) {
2002
+ $api = new Uecommerce_Mundipagg_Model_Api();
2003
+ $message = "{$logLabel} | payment not authorized but order is in offline retry yet, not cancel.";
2004
+ $helperLog->info($message);
2005
+ Mage::getSingleton('checkout/session')->setApprovalRequestSuccess('success');
2006
+
2007
+ }else{
2008
  $helperLog->info("{$logLabel} | Payment not authorized and store don't have offline retry, order will be canceled.");
2009
  Mage::getSingleton('checkout/session')->setApprovalRequestSuccess('cancel');
 
2010
  return;
2011
  }
 
 
 
 
 
 
 
 
 
2012
  }
2013
 
2014
  /**
app/code/community/Uecommerce/Mundipagg/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Uecommerce_Mundipagg>
5
- <version>2.9.19</version>
6
  </Uecommerce_Mundipagg>
7
  </modules>
8
 
2
  <config>
3
  <modules>
4
  <Uecommerce_Mundipagg>
5
+ <version>2.9.20</version>
6
  </Uecommerce_Mundipagg>
7
  </modules>
8
 
app/design/frontend/rwd/default/template/mundipagg/form.phtml CHANGED
@@ -43,11 +43,13 @@ if ($quote->isVirtual()) {
43
  $data = $quote->getShippingAddress();
44
  }
45
 
46
- $orderGrandTotal = $standard->getQuote()->getBaseGrandTotal();
47
 
48
  // Partial payment?
49
  $isPartial = Mage::getSingleton('checkout/session')->getApprovalRequestSuccess();
50
 
 
 
 
51
  if ($isPartial === 'partial'):
52
  $order = $this->loadOrder();
53
  $authorizedAmount = $order->getPaymentAuthorizationAmount();
@@ -150,35 +152,34 @@ $_code = $this->getMethodCode();
150
  <label class="required"><?php echo $this->__('Select a Credit Card or add a new one') ?>
151
  <span class="required">*</span></label>
152
  <div class="input-box">
153
-
154
  <select id="<?php echo $_code; ?>_token_<?php echo $num; ?>_<?php echo $c; ?>"
155
  data="group_<?php echo $num; ?>_<?php echo $c; ?>"
156
  name="payment[<?php echo $_code; ?>_token_<?php echo $num; ?>_<?php echo $c; ?>]"
157
  class="required-entry tokens group_<?php echo $num; ?>_<?php echo $c; ?>"
158
  onchange="token_or_not(<?php echo $num; ?>,<?php echo $c; ?>,this)">
159
  <option value="">...</option>
160
- <?php
161
- $selected = '';
162
-
163
- if ($countCcs == 1):
164
- $selected = 'selected="selected"';
165
- endif;
166
-
167
- foreach ($ccs as $id => $cc):
168
-
169
- if ($countCcs == 1) {
170
- $currentSelectedToken = Mage::getSingleton('mundipagg/source_cctypes')->getCcTypeForLabel($cc->getCcType());
171
- }
172
- $dataType = $currentSelectedToken ? $currentSelectedToken : Mage::getSingleton('mundipagg/source_cctypes')->getCcTypeForLabel($cc->getCcType());
173
- echo '<option value="' . $cc->getId() . '" ' . $selected . ' data="' . $dataType . '">' . $cc->getCcType() . ' ' . $cc->getCreditCardMask() . '</option>';
174
- endforeach;
175
- ?>
176
  <option value="new"><?php echo $this->__('New Credit Card') ?></option>
177
  </select>
178
  </div>
179
  </div>
180
  </li>
181
- <?php if ($num != 1): ?>
182
  <div id="value_<?php echo $num; ?>_<?php echo $c; ?>">
183
  <li class="fields" style="margin-bottom: 5px;">
184
  <div class="field">
@@ -196,28 +197,29 @@ $_code = $this->getMethodCode();
196
  </div>
197
  </li>
198
  </div>
199
- <?php endif; ?>
200
- <?php if ($installmentsHelper->isInstallmentsEnabled() && $_code != 'mundipagg_creditcardoneinstallment'): ?>
201
- <div id="parcelamento_<?php echo $num; ?>_<?php echo $c; ?>"
202
- <?php if ($countCcs > 1): ?>style="display:none"<?php endif ?>>
203
- <li class="fields" style="margin-bottom: 5px;">
204
- <div class="field">
205
- <label class="required"><?php echo $this->__('Credit options') ?>
206
- <?php if ($num == 2): ?><!--<a href="javascript:void(0);" onclick="javascript:void(0);">(<?php /*echo $this->__('click to update') */ ?>)</a>--><?php endif ?></label>
207
- <div class="input-box">
208
- <select id="<?php echo $_code; ?>_credito_parcelamento_<?php echo $num; ?>_<?php echo $c; ?>"
209
- name="payment[<?php echo $_code; ?>_credito_parcelamento_<?php echo $num; ?>_<?php echo $c; ?>]"
210
- class="required-entry installment-token group_<?php echo $num; ?>_<?php echo $c; ?>">
211
- <?php foreach ($this->getInstallments($currentSelectedToken) as $key => $parcel): ?>
212
- <option value="<?php echo $key ?>"><?php echo $parcel ?></option>
213
- <?php endforeach ?>
214
- </select>
 
 
215
  </div>
216
- </div>
217
- </li>
218
- </div>
219
- <?php endif; ?>
220
- <?php endif; ?>
221
  <div class="division"></div>
222
  <div id="<?php echo $_code; ?>_new_credit_card_<?php echo $num; ?>_<?php echo $c; ?>"
223
  <?php if ($countCcs > 0) { ?>style="display:none"<?php } ?>>
@@ -373,11 +375,12 @@ $_code = $this->getMethodCode();
373
  <select id="<?php echo $_code; ?>_new_credito_parcelamento_<?php echo $num; ?>_<?php echo $c; ?>"
374
  name="payment[<?php echo $_code; ?>_new_credito_parcelamento_<?php echo $num; ?>_<?php echo $c; ?>]"
375
  onchange="checkInstallments(this, '<?php echo Mage::getUrl('', array('_secure' => true)); ?>');">
376
- <?php foreach ($this->getInstallments() as $key => $parcel): ?>
377
- <option value="<?php echo $key ?>"><?php echo $parcel ?></option>
378
- <?php endforeach ?>
379
  </select>
380
  </div>
 
381
  </div>
382
  </li>
383
  <?php endif; ?>
@@ -425,7 +428,9 @@ $_code = $this->getMethodCode();
425
 
426
 
427
  <script type="text/javascript">
 
428
  //<![CDATA[
 
429
  Validation.addAllThese([
430
  ['validate-cc-exp-new', '<?php echo $this->jsQuoteEscape(Mage::helper('mundipagg')->__('Incorrect credit card expiration date.'))?>', function (v, elm) {
431
  var ccExpMonth = v;
43
  $data = $quote->getShippingAddress();
44
  }
45
 
 
46
 
47
  // Partial payment?
48
  $isPartial = Mage::getSingleton('checkout/session')->getApprovalRequestSuccess();
49
 
50
+ $this->getInstallments();
51
+
52
+ $orderGrandTotal = $standard->getQuote()->getBaseGrandTotal();
53
  if ($isPartial === 'partial'):
54
  $order = $this->loadOrder();
55
  $authorizedAmount = $order->getPaymentAuthorizationAmount();
152
  <label class="required"><?php echo $this->__('Select a Credit Card or add a new one') ?>
153
  <span class="required">*</span></label>
154
  <div class="input-box">
 
155
  <select id="<?php echo $_code; ?>_token_<?php echo $num; ?>_<?php echo $c; ?>"
156
  data="group_<?php echo $num; ?>_<?php echo $c; ?>"
157
  name="payment[<?php echo $_code; ?>_token_<?php echo $num; ?>_<?php echo $c; ?>]"
158
  class="required-entry tokens group_<?php echo $num; ?>_<?php echo $c; ?>"
159
  onchange="token_or_not(<?php echo $num; ?>,<?php echo $c; ?>,this)">
160
  <option value="">...</option>
161
+ <?php
162
+ $selected = '';
163
+
164
+ if ($countCcs == 1):
165
+ $selected = 'selected="selected"';
166
+ endif;
167
+
168
+ foreach ($ccs as $id => $cc):
169
+
170
+ if ($countCcs == 1) {
171
+ $currentSelectedToken = Mage::getSingleton('mundipagg/source_cctypes')->getCcTypeForLabel($cc->getCcType());
172
+ }
173
+ $dataType = $currentSelectedToken ? $currentSelectedToken : Mage::getSingleton('mundipagg/source_cctypes')->getCcTypeForLabel($cc->getCcType());
174
+ echo '<option value="' . $cc->getId() . '" ' . $selected . ' data="' . $dataType . '">' . $cc->getCcType() . ' ' . $cc->getCreditCardMask() . '</option>';
175
+ endforeach;
176
+ ?>
177
  <option value="new"><?php echo $this->__('New Credit Card') ?></option>
178
  </select>
179
  </div>
180
  </div>
181
  </li>
182
+ <?php if ($num != 1): ?>
183
  <div id="value_<?php echo $num; ?>_<?php echo $c; ?>">
184
  <li class="fields" style="margin-bottom: 5px;">
185
  <div class="field">
197
  </div>
198
  </li>
199
  </div>
200
+ <?php endif; ?>
201
+ <?php if ($installmentsHelper->isInstallmentsEnabled() && $_code != 'mundipagg_creditcardoneinstallment'): ?>
202
+ <div id="parcelamento_<?php echo $num; ?>_<?php echo $c; ?>"
203
+ <?php if ($countCcs > 1): ?>style="display:none"<?php endif ?>>
204
+ <li class="fields" style="margin-bottom: 5px;">
205
+ <div class="field">
206
+ <label class="required"><?php echo $this->__('Credit options') ?>
207
+ <?php if ($num == 2): ?><!--<a href="javascript:void(0);" onclick="javascript:void(0);">(<?php /*echo $this->__('click to update') */ ?>)</a>--><?php endif ?></label>
208
+ <div class="input-box">
209
+ <?php $this->getInstallments(); ?>
210
+ <select id="<?php echo $_code; ?>_credito_parcelamento_<?php echo $num; ?>_<?php echo $c; ?>"
211
+ name="payment[<?php echo $_code; ?>_credito_parcelamento_<?php echo $num; ?>_<?php echo $c; ?>]"
212
+ class="required-entry installment-token group_<?php echo $num; ?>_<?php echo $c; ?>">
213
+ <?php foreach ($this->getInstallments($currentSelectedToken) as $key => $parcel): ?>
214
+ <option value="<?php echo $key ?>"><?php echo $parcel ?></option>
215
+ <?php endforeach ?>
216
+ </select>
217
+ </div>
218
  </div>
219
+ </li>
220
+ </div>
221
+ <?php endif; ?>
222
+ <?php endif; ?>
 
223
  <div class="division"></div>
224
  <div id="<?php echo $_code; ?>_new_credit_card_<?php echo $num; ?>_<?php echo $c; ?>"
225
  <?php if ($countCcs > 0) { ?>style="display:none"<?php } ?>>
375
  <select id="<?php echo $_code; ?>_new_credito_parcelamento_<?php echo $num; ?>_<?php echo $c; ?>"
376
  name="payment[<?php echo $_code; ?>_new_credito_parcelamento_<?php echo $num; ?>_<?php echo $c; ?>]"
377
  onchange="checkInstallments(this, '<?php echo Mage::getUrl('', array('_secure' => true)); ?>');">
378
+ <?php foreach ($this->getInstallments() as $key => $parcel): ?>
379
+ <option value="<?php echo $key ?>"><?php echo $parcel ?></option>
380
+ <?php endforeach ?>
381
  </select>
382
  </div>
383
+
384
  </div>
385
  </li>
386
  <?php endif; ?>
428
 
429
 
430
  <script type="text/javascript">
431
+
432
  //<![CDATA[
433
+
434
  Validation.addAllThese([
435
  ['validate-cc-exp-new', '<?php echo $this->jsQuoteEscape(Mage::helper('mundipagg')->__('Incorrect credit card expiration date.'))?>', function (v, elm) {
436
  var ccExpMonth = v;
modman ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Modman file generated by 'generate-modman' (https://github.com/mhauri/generate-modman)
2
+ # app/code
3
+ app/code/community/Uecommerce/Mundipagg app/code/community/Uecommerce/Mundipagg
4
+ # app/etc
5
+ app/etc/modules/Uecommerce_Mundipagg.xml app/etc/modules/Uecommerce_Mundipagg.xml
6
+ # app/locale
7
+ app/locale/en_US/Uecommerce_Mundipagg.csv app/locale/en_US/Uecommerce_Mundipagg.csv
8
+ app/locale/pt_BR/Uecommerce_Mundipagg.csv app/locale/pt_BR/Uecommerce_Mundipagg.csv
9
+ # app/design
10
+ app/design/frontend/base/default/layout/mundipagg.xml app/design/frontend/base/default/layout/mundipagg.xml
11
+ app/design/frontend/base/default/template/mundipagg/extras.phtml app/design/frontend/base/default/template/mundipagg/extras.phtml
12
+ app/design/frontend/base/default/template/mundipagg/form.phtml app/design/frontend/base/default/template/mundipagg/form.phtml
13
+ app/design/frontend/base/default/template/mundipagg/totals.phtml app/design/frontend/base/default/template/mundipagg/totals.phtml
14
+ app/design/frontend/base/default/template/mundipagg/fcancel.phtml app/design/frontend/base/default/template/mundipagg/fcancel.phtml
15
+ app/design/frontend/base/default/template/mundipagg/cancel.phtml app/design/frontend/base/default/template/mundipagg/cancel.phtml
16
+ app/design/frontend/base/default/template/mundipagg/partial.phtml app/design/frontend/base/default/template/mundipagg/partial.phtml
17
+ app/design/frontend/base/default/template/mundipagg/success.phtml app/design/frontend/base/default/template/mundipagg/success.phtml
18
+ app/design/frontend/base/default/template/mundipagg/payment/info/mundipagg.phtml app/design/frontend/base/default/template/mundipagg/payment/info/mundipagg.phtml
19
+ app/design/frontend/base/default/template/mundipagg/redirect.phtml app/design/frontend/base/default/template/mundipagg/redirect.phtml
20
+ app/design/frontend/base/default/template/mundipagg/debit.phtml app/design/frontend/base/default/template/mundipagg/debit.phtml
21
+ app/design/frontend/base/default/template/mundipagg/antifraud/clearsale.phtml app/design/frontend/base/default/template/mundipagg/antifraud/clearsale.phtml
22
+ app/design/frontend/base/default/template/mundipagg/antifraud/stone.phtml app/design/frontend/base/default/template/mundipagg/antifraud/stone.phtml
23
+ app/design/frontend/base/default/template/mundipagg/antifraud/fcontrol.phtml app/design/frontend/base/default/template/mundipagg/antifraud/fcontrol.phtml
24
+ app/design/frontend/base/default/template/mundipagg/parcelamento.phtml app/design/frontend/base/default/template/mundipagg/parcelamento.phtml
25
+ app/design/frontend/base/default/template/mundipagg/boleto.phtml app/design/frontend/base/default/template/mundipagg/boleto.phtml
26
+ app/design/frontend/rwd/default/template/mundipagg/form.phtml app/design/frontend/rwd/default/template/mundipagg/form.phtml
27
+ app/design/frontend/rwd/default/template/mundipagg/debit.phtml app/design/frontend/rwd/default/template/mundipagg/debit.phtml
28
+ app/design/adminhtml/default/default/layout/mundipagg.xml app/design/adminhtml/default/default/layout/mundipagg.xml
29
+ app/design/adminhtml/default/default/template/mundipagg/form.phtml app/design/adminhtml/default/default/template/mundipagg/form.phtml
30
+ app/design/adminhtml/default/default/template/mundipagg/payment/info/mundipagg.phtml app/design/adminhtml/default/default/template/mundipagg/payment/info/mundipagg.phtml
31
+ app/design/adminhtml/default/default/template/mundipagg/system/config/button.phtml app/design/adminhtml/default/default/template/mundipagg/system/config/button.phtml
32
+ app/design/adminhtml/default/default/template/mundipagg/boleto.phtml app/design/adminhtml/default/default/template/mundipagg/boleto.phtml
33
+ # js
34
+ js/uecommerce/recurrency.js js/uecommerce/recurrency.js
35
+ js/uecommerce/fcontrol/hmlg-fcontrol-ed.min.js js/uecommerce/fcontrol/hmlg-fcontrol-ed.min.js
36
+ js/uecommerce/fcontrol/fingerprint-fcontrol.js js/uecommerce/fcontrol/fingerprint-fcontrol.js
37
+ js/uecommerce/mundipagg.js js/uecommerce/mundipagg.js
38
+ js/uecommerce/jquery-3.1.0.min.js js/uecommerce/jquery-3.1.0.min.js
39
+ # skin
40
+ skin/frontend/base/default/images/mundipagg/ajax-loader.gif skin/frontend/base/default/images/mundipagg/ajax-loader.gif
41
+ skin/frontend/base/default/images/mundipagg/boleto.jpg skin/frontend/base/default/images/mundipagg/boleto.jpg
42
+ skin/frontend/base/default/images/mundipagg/001.png skin/frontend/base/default/images/mundipagg/001.png
43
+ skin/frontend/base/default/images/mundipagg/VBV.png skin/frontend/base/default/images/mundipagg/VBV.png
44
+ skin/frontend/base/default/images/mundipagg/MC.png skin/frontend/base/default/images/mundipagg/MC.png
45
+ skin/frontend/base/default/images/mundipagg/DI.png skin/frontend/base/default/images/mundipagg/DI.png
46
+ skin/frontend/base/default/images/mundipagg/237.png skin/frontend/base/default/images/mundipagg/237.png
47
+ skin/frontend/base/default/images/mundipagg/EL.png skin/frontend/base/default/images/mundipagg/EL.png
48
+ skin/frontend/base/default/images/mundipagg/341.png skin/frontend/base/default/images/mundipagg/341.png
49
+ skin/frontend/base/default/images/mundipagg/VBV.jpg skin/frontend/base/default/images/mundipagg/VBV.jpg
50
+ skin/frontend/base/default/images/mundipagg/HI.png skin/frontend/base/default/images/mundipagg/HI.png
51
+ skin/frontend/base/default/images/mundipagg/cc_types.png skin/frontend/base/default/images/mundipagg/cc_types.png
52
+ skin/frontend/base/default/images/mundipagg/VI.png skin/frontend/base/default/images/mundipagg/VI.png
53
+ skin/frontend/base/default/images/mundipagg/AE.png skin/frontend/base/default/images/mundipagg/AE.png
54
+ skin/frontend/base/default/images/mundipagg/cielo_visa.png skin/frontend/base/default/images/mundipagg/cielo_visa.png
55
+ skin/frontend/base/default/images/mundipagg/cielo_mastercard.png skin/frontend/base/default/images/mundipagg/cielo_mastercard.png
56
+ skin/frontend/base/default/css/mundipagg.css skin/frontend/base/default/css/mundipagg.css
57
+ skin/frontend/default/default/images/mundipagg/vi.png skin/frontend/default/default/images/mundipagg/vi.png
58
+ skin/frontend/default/default/images/mundipagg/boleto.jpg skin/frontend/default/default/images/mundipagg/boleto.jpg
59
+ skin/frontend/default/default/images/mundipagg/ae.png skin/frontend/default/default/images/mundipagg/ae.png
60
+ skin/frontend/default/default/images/mundipagg/mc.png skin/frontend/default/default/images/mundipagg/mc.png
61
+ skin/frontend/default/default/images/mundipagg/EL.png skin/frontend/default/default/images/mundipagg/EL.png
62
+ skin/frontend/default/default/images/mundipagg/HI.png skin/frontend/default/default/images/mundipagg/HI.png
63
+ skin/frontend/default/default/images/mundipagg/cielo_visa.png skin/frontend/default/default/images/mundipagg/cielo_visa.png
64
+ skin/frontend/default/default/images/mundipagg/di.png skin/frontend/default/default/images/mundipagg/di.png
65
+ skin/frontend/default/default/images/mundipagg/cielo_mastercard.png skin/frontend/default/default/images/mundipagg/cielo_mastercard.png
66
+ skin/adminhtml/default/default/images/mundipagg/ajax-loader.gif skin/adminhtml/default/default/images/mundipagg/ajax-loader.gif
67
+ skin/adminhtml/default/default/images/mundipagg/mundi-magento-admin-banner.png skin/adminhtml/default/default/images/mundipagg/mundi-magento-admin-banner.png
68
+ skin/adminhtml/default/default/images/mundipagg/boleto.jpg skin/adminhtml/default/default/images/mundipagg/boleto.jpg
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mundipagg_Integracao</name>
4
- <version>2.9.19</version>
5
  <stability>stable</stability>
6
  <license>MITL</license>
7
  <channel>community</channel>
@@ -30,9 +30,9 @@ Em qualquer procedimento de instala&#xE7;&#xE3;o ou update existem riscos, acons
30
  &#xD;
31
  - When a customer cancels an already captured transaction on our dashboard, the module cancels the generated invoice and closes the request.</notes>
32
  <authors><author><name>mundipagg</name><user>mundi</user><email>mundi@mundipagg.com</email></author></authors>
33
- <date>2017-03-30</date>
34
- <time>15:24:02</time>
35
- <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="9c5ff9cc6cc4be97045aca3bab72d0d9"/><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="ba77e55ea6a18b4bd34c6e272721a3ba"/><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="CheckoutSession.php" hash="21170a98bef7a3d6fc87044218251193"/><file name="Data.php" hash="eb9b6b62dcfa8ff71232de1f224a7d05"/><file name="Installments.php" hash="d0589866ed24ba418a4d1aaea503689e"/><file name="Log.php" hash="024416e493e894624f137b380e1c6d4b"/><file name="UnserializeArray.php" hash="83f968a1a32e0b974bb5607dd2f00463"/><file name="Util.php" hash="cab074ca10096c04e80950062de9bf28"/><file name="Version.php" hash="00066d5bf31a7c49db004f2bd0d5c462"/></dir><dir name="Model"><dir name="Adminvalidators"><dir name="Antifraud"><file name="Minval.php" hash="40a49fef644e180b50c896e9dab34c76"/></dir><file name="Debug.php" hash="80bedd2d18fc0ad3888208d7255048cf"/><file name="Offlineretry.php" hash="b869cce6f6cca51cb5d928776a9122c1"/><file name="Timeout.php" hash="d770cbef860e43d62e2bcbdff8b6fb35"/></dir><file name="Api.php" hash="23bafc1367616edf20f6be11884c2dc8"/><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="06f19e9b9e2e8478904d20b2b0139280"/><file name="Offlineretry.php" hash="394849df4873908dd43d3c15f75dc9d0"/><dir name="Order"><dir name="Invoice"><file name="Interest.php" hash="6bba5e87bae1a7ee94a827819b2ea4ce"/></dir><file name="Payment.php" hash="3cd8879acffafa87ffa85f04acc4e671"/></dir><file name="Payment.php" hash="6efc3b0ad9bab589934115387caf0fce"/><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="a15c756fbd5295301991679d6d256655"/><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="ece14459f92f4751c70b4dede0364b40"/></dir><file name="Offlineretry.php" hash="f18698d68581de1e756e956afb19106b"/><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="f22bf02692c02d3f8859601ccf9cf90c"/><file name="FControlEnvironment.php" hash="5159f6e4d86ee9d280285b7198fa01e9"/><file name="Frequency.php" hash="9752c73679dee78efc83f468fe45a946"/><file name="Installments.php" hash="b04c05b92f7b8b5c025f23aad4457917"/><file name="PaymentAction.php" hash="c16639be23fd85c285f474922fd528a7"/><file name="PaymentMethods.php" hash="e12514ad00bf3fe3fb4e569b11da2c10"/></dir><file name="Standard.php" hash="e2ad260a2db25a8ac788f47a4fa553a7"/><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="75463bfe22dba876efccc6c5120f320a"/><file name="Urlvalidation.php" hash="e3ccd751eea54e282d30624192537cd8"/></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="fdb1cb980444a4cd35ace6543b9f335e"/><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="c2d3ce88efcadcdd8d7acad52627abed"/><file name="StoneController.php" hash="80c6f59a868ac82fc22bcf586bbecfdd"/></dir><dir name="data"><dir name="mundipagg_setup"><file name="data-upgrade-2.9.1-2.9.2.php" hash="6c8f542f7f04755cf8d2e3e8cb517b51"/></dir></dir><dir name="etc"><file name="config.xml" hash="8607f0377f200a423281b4f08e15d975"/><file name="jstranslator.xml" hash="8b1ea10d9b3072a795567dba6dae938c"/><file name="system.xml" hash="57b558edfed7fe96a414ddfeed6681b7"/><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"/><file name="mysql4-upgrade-2.7.4-2.8.0.php" hash="c53fbd135b7735b7bbe90e5c4c11e5b2"/><file name="mysql4-upgrade-2.9.4-2.9.5.php" hash="29f3b305a7e44f66f2fc9841b668048c"/></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="035fd61eb33327a613e5b3b91ddbc389"/></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="3b1d4412c62780275114e37b63615a65"/></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="0dc6cc39164b57626ccf7a429bbbf3d7"/></dir><dir name="template"><dir name="mundipagg"><dir name="antifraud"><file name="clearsale.phtml" hash="088a189dd94401f39c90ad0a1471994f"/><file name="fcontrol.phtml" hash="8fe2da3913bd18a20f35235533080ab8"/><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="46d83199636924d8e5757643bca9344f"/><file name="parcelamento.phtml" hash="56a89503637e5ad753b0d410f2f5c7ad"/><file name="partial.phtml" hash="3349856adf83a8293bcb197a9fbd3267"/><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="f61c734a25ad37d381f9882d05b22683"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Uecommerce_Mundipagg.xml" hash="b292eeabde8e2cd06db0c31aff54fd98"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Uecommerce_Mundipagg.csv" hash="fcc515b20632bb8256399042625e5972"/></dir><dir name="pt_BR"><file name="Uecommerce_Mundipagg.csv" hash="d77207cfecb35ad278afb272c9fae751"/></dir></target><target name="mageweb"><dir name="js"><dir name="uecommerce"><dir name="fcontrol"><file name="fingerprint-fcontrol.js" hash="33409e94c34847788fabbb3a5b038fd0"/><file name="hmlg-fcontrol-ed.min.js" hash="b8b6c945111b6edd7a90df2f5d3ff5cd"/></dir><file name="jquery-3.1.0.min.js" hash="05e51b1db558320f1939f9789ccf5c8f"/><file name="mundipagg.js" hash="1bbf52070bdd06b7b0687f6cced1886f"/><file name="recurrency.js" hash="6c0db9f70fea794eb55f1db3bd09b4aa"/></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="mundi-magento-admin-banner.png" hash="70ed79656a42a2b4c0291d0a6285fb6d"/></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></contents>
36
  <compatible/>
37
  <dependencies><required><php><min>5.4.0</min><max>7.1.0</max></php></required></dependencies>
38
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mundipagg_Integracao</name>
4
+ <version>2.9.20</version>
5
  <stability>stable</stability>
6
  <license>MITL</license>
7
  <channel>community</channel>
30
  &#xD;
31
  - When a customer cancels an already captured transaction on our dashboard, the module cancels the generated invoice and closes the request.</notes>
32
  <authors><author><name>mundipagg</name><user>mundi</user><email>mundi@mundipagg.com</email></author></authors>
33
+ <date>2017-04-13</date>
34
+ <time>18:29:20</time>
35
+ <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="9c5ff9cc6cc4be97045aca3bab72d0d9"/><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="e9a3d65f01c515bb5c931f704fc93340"/><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="CheckoutSession.php" hash="21170a98bef7a3d6fc87044218251193"/><file name="Data.php" hash="eb9b6b62dcfa8ff71232de1f224a7d05"/><file name="Installments.php" hash="d0589866ed24ba418a4d1aaea503689e"/><file name="Log.php" hash="024416e493e894624f137b380e1c6d4b"/><file name="UnserializeArray.php" hash="83f968a1a32e0b974bb5607dd2f00463"/><file name="Util.php" hash="cab074ca10096c04e80950062de9bf28"/><file name="Version.php" hash="00066d5bf31a7c49db004f2bd0d5c462"/></dir><dir name="Model"><dir name="Adminvalidators"><dir name="Antifraud"><file name="Minval.php" hash="40a49fef644e180b50c896e9dab34c76"/></dir><file name="Debug.php" hash="80bedd2d18fc0ad3888208d7255048cf"/><file name="Offlineretry.php" hash="b869cce6f6cca51cb5d928776a9122c1"/><file name="Timeout.php" hash="d770cbef860e43d62e2bcbdff8b6fb35"/></dir><file name="Api.php" hash="6b5d4ac28bb303d8793d5956f342fbcf"/><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="21fdb8910050d0c6f9bdfa5e78ff3d92"/><file name="Offlineretry.php" hash="394849df4873908dd43d3c15f75dc9d0"/><dir name="Order"><dir name="Invoice"><file name="Interest.php" hash="6bba5e87bae1a7ee94a827819b2ea4ce"/></dir><file name="Payment.php" hash="3cd8879acffafa87ffa85f04acc4e671"/></dir><file name="Payment.php" hash="6efc3b0ad9bab589934115387caf0fce"/><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="a15c756fbd5295301991679d6d256655"/><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="ece14459f92f4751c70b4dede0364b40"/></dir><file name="Offlineretry.php" hash="f18698d68581de1e756e956afb19106b"/><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="f22bf02692c02d3f8859601ccf9cf90c"/><file name="FControlEnvironment.php" hash="5159f6e4d86ee9d280285b7198fa01e9"/><file name="Frequency.php" hash="9752c73679dee78efc83f468fe45a946"/><file name="Installments.php" hash="b04c05b92f7b8b5c025f23aad4457917"/><file name="PaymentAction.php" hash="c16639be23fd85c285f474922fd528a7"/><file name="PaymentMethods.php" hash="e12514ad00bf3fe3fb4e569b11da2c10"/></dir><file name="Standard.php" hash="427a3bd6513dfc8c958f4ee5ded44d8f"/><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="75463bfe22dba876efccc6c5120f320a"/><file name="Urlvalidation.php" hash="e3ccd751eea54e282d30624192537cd8"/></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="fdb1cb980444a4cd35ace6543b9f335e"/><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="c2d3ce88efcadcdd8d7acad52627abed"/><file name="StoneController.php" hash="80c6f59a868ac82fc22bcf586bbecfdd"/></dir><dir name="data"><dir name="mundipagg_setup"><file name="data-upgrade-2.9.1-2.9.2.php" hash="6c8f542f7f04755cf8d2e3e8cb517b51"/></dir></dir><dir name="etc"><file name="config.xml" hash="cb486a7de59827a324efc7ebc8b8f52d"/><file name="jstranslator.xml" hash="8b1ea10d9b3072a795567dba6dae938c"/><file name="system.xml" hash="57b558edfed7fe96a414ddfeed6681b7"/><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"/><file name="mysql4-upgrade-2.7.4-2.8.0.php" hash="c53fbd135b7735b7bbe90e5c4c11e5b2"/><file name="mysql4-upgrade-2.9.4-2.9.5.php" hash="29f3b305a7e44f66f2fc9841b668048c"/></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="035fd61eb33327a613e5b3b91ddbc389"/></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="3b1d4412c62780275114e37b63615a65"/></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="0dc6cc39164b57626ccf7a429bbbf3d7"/></dir><dir name="template"><dir name="mundipagg"><dir name="antifraud"><file name="clearsale.phtml" hash="088a189dd94401f39c90ad0a1471994f"/><file name="fcontrol.phtml" hash="8fe2da3913bd18a20f35235533080ab8"/><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="46d83199636924d8e5757643bca9344f"/><file name="parcelamento.phtml" hash="56a89503637e5ad753b0d410f2f5c7ad"/><file name="partial.phtml" hash="3349856adf83a8293bcb197a9fbd3267"/><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="70e1acffe4ba9eddbf9651f6630c12ac"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Uecommerce_Mundipagg.xml" hash="b292eeabde8e2cd06db0c31aff54fd98"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Uecommerce_Mundipagg.csv" hash="fcc515b20632bb8256399042625e5972"/></dir><dir name="pt_BR"><file name="Uecommerce_Mundipagg.csv" hash="d77207cfecb35ad278afb272c9fae751"/></dir></target><target name="mageweb"><dir name="js"><dir name="uecommerce"><dir name="fcontrol"><file name="fingerprint-fcontrol.js" hash="33409e94c34847788fabbb3a5b038fd0"/><file name="hmlg-fcontrol-ed.min.js" hash="b8b6c945111b6edd7a90df2f5d3ff5cd"/></dir><file name="jquery-3.1.0.min.js" hash="05e51b1db558320f1939f9789ccf5c8f"/><file name="mundipagg.js" hash="1bbf52070bdd06b7b0687f6cced1886f"/><file name="recurrency.js" hash="6c0db9f70fea794eb55f1db3bd09b4aa"/></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="mundi-magento-admin-banner.png" hash="70ed79656a42a2b4c0291d0a6285fb6d"/></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="mage"><dir name="."><file name="README.md" hash=""/><file name="modman" hash=""/></dir></target></contents>
36
  <compatible/>
37
  <dependencies><required><php><min>5.4.0</min><max>7.1.0</max></php></required></dependencies>
38
  </package>