Skip to content

Commit 08942fd

Browse files
committed
fix: modifica descrição das opções de parcelamentos com juros
1 parent 083e8a7 commit 08942fd

4 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Todas as mudanças notáveis neste projeto serão documentadas neste arquivo.
44

55
O formato é baseado em [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), e este projeto adere ao [Versionamento Semântico](https://semver.org/spec/v2.0.0.html).
66

7+
## v1.5.3 - 2025-06-11
8+
- Altera label de opções de parcelas com juros
9+
710
## v1.5.2 - 2024-10-23
811
- Retirada dependências antigas do módulo não utilizadas.
912

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ipag/payment",
33
"description": "iPag Payment Extension for Magento 2",
44
"type": "magento2-module",
5-
"version": "1.5.1",
5+
"version": "1.5.3",
66
"license": "MIT",
77
"authors": [
88
{

etc/module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd">
2-
<module name="Ipag_Payment" setup_version="1.5.2">
2+
<module name="Ipag_Payment" setup_version="1.5.3">
33
<sequence>
44
<module name="Magento_Sales"/>
55
<module name="Magento_Payment"/>

view/frontend/web/js/view/payment/method-renderer/ipagcc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ define(
381381
var temp = _.map(this.getInstall(), function (value, key) {
382382
var inst = key + ' x ' + value['parcela'] + ' | Total: ' + value['total_parcelado'];
383383
if (value['juros'] > 0) {
384-
inst += ' (' + value['juros'] + '% a.m.)';
384+
inst += ' (com juros)';
385385
}
386386
return {
387387
'value': key,

0 commit comments

Comments
 (0)