Skip to content

Commit 58dd0ef

Browse files
authored
Remove uangme from payment option (#184)
1 parent 253f8f6 commit 58dd0ef

File tree

14 files changed

+3
-222
lines changed

14 files changed

+3
-222
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
## 12.0.2 (2024-11-25)
4+
- Remove UangMe as a payment method (regular & invoice multishipping)
5+
36
## 12.0.1 (2024-01-11)
47
- Support Xendit invoice fees
58

Helper/Data.php

-1
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,6 @@ public function getXenditPaymentList(): array
439439
"dp_ecpay_school" => "dp_ecpay_school",
440440
"cashalo" => "cashalo",
441441
"shopeepayph" => "shopeepay",
442-
"uangme" => "uangme",
443442
"astrapay" => "astrapay",
444443
"akulaku" => "akulaku",
445444
"atome" => "atome",

Model/Adminhtml/Source/ChosenMethod.php

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ public function toOptionArray($isMultiselect = false)
5252
['value' => 'dp_ecpay_school', 'label' => __('ECPay School')],
5353
['value' => 'cashalo', 'label' => __('Cashalo')],
5454
['value' => 'shopeepayph', 'label' => __('ShopeePay')],
55-
['value' => 'uangme', 'label' => __('Uangme')],
5655
['value' => 'astrapay', 'label' => __('AstraPay')],
5756
['value' => 'akulaku', 'label' => __('Akulaku')],
5857
['value' => 'atome', 'label' => __('Atome')],

Model/Payment/Uangme.php

-27
This file was deleted.

Model/Ui/ConfigProvider.php

-7
Original file line numberDiff line numberDiff line change
@@ -290,13 +290,6 @@ public function getConfig()
290290
'description' => $this->xenditHelper->getPaymentDescription("shopeepayph"),
291291
'image' => $this->xenditHelper->getPaymentImage('shopeepay')
292292
],
293-
'uangme' => [
294-
'title' => $this->xenditHelper->getPaymentTitle("uangme"),
295-
'min_order_amount' => $this->xenditHelper->getPaymentMinOrderAmount("uangme"),
296-
'max_order_amount' => $this->xenditHelper->getPaymentMaxOrderAmount("uangme"),
297-
'description' => $this->xenditHelper->getPaymentDescription("uangme"),
298-
'image' => $this->xenditHelper->getPaymentImage('uangme')
299-
],
300293
'astrapay' => [
301294
'title' => $this->xenditHelper->getPaymentTitle("astrapay"),
302295
'min_order_amount' => $this->xenditHelper->getPaymentMinOrderAmount("astrapay"),

etc/adminhtml/paylater/uangme.xml

-29
This file was deleted.

etc/adminhtml/system.xml

-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,6 @@
237237
<include path="Xendit_M2Invoice::paylater/kredivo.xml"/>
238238
<include path="Xendit_M2Invoice::paylater/billease.xml"/>
239239
<include path="Xendit_M2Invoice::paylater/cashalo.xml"/>
240-
<include path="Xendit_M2Invoice::paylater/uangme.xml"/>
241240
<include path="Xendit_M2Invoice::paylater/astrapay.xml"/>
242241
<include path="Xendit_M2Invoice::paylater/akulaku.xml"/>
243242
<include path="Xendit_M2Invoice::paylater/atome.xml"/>

etc/config.xml

-14
Original file line numberDiff line numberDiff line change
@@ -596,20 +596,6 @@
596596
<sort_order>32</sort_order>
597597
<currency>PHP</currency>
598598
</shopeepayph>
599-
<uangme>
600-
<active>1</active>
601-
<payment_action>initialize</payment_action>
602-
<model>Xendit\M2Invoice\Model\Payment\Uangme</model>
603-
<title>UangMe</title>
604-
<description>Bayar pesanan dengan Uangme melalui Xendit</description>
605-
<min_order_total>20000</min_order_total>
606-
<max_order_total>20000000</max_order_total>
607-
<is_gateway>1</is_gateway>
608-
<can_initialize>1</can_initialize>
609-
<can_use_checkout>1</can_use_checkout>
610-
<sort_order>33</sort_order>
611-
<currency>IDR</currency>
612-
</uangme>
613599
</payment>
614600
</default>
615601
</config>

etc/payment.xml

-3
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,6 @@ https://github.com/magento/magento2/blob/2.2.0-rc2.1/app/code/Magento/Multishipp
102102
<method name='cashalo'>
103103
<allow_multiple_address>1</allow_multiple_address>
104104
</method>
105-
<method name='uangme'>
106-
<allow_multiple_address>1</allow_multiple_address>
107-
</method>
108105
<method name='astrapay'>
109106
<allow_multiple_address>1</allow_multiple_address>
110107
</method>

view/frontend/layout/multishipping_checkout_billing.xml

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
<item name="bsiva" xsi:type="string">Xendit_M2Invoice::multishipping/bsiva.phtml</item>
4040
<item name="cashalo" xsi:type="string">Xendit_M2Invoice::multishipping/cashalo.phtml</item>
4141
<item name="shopeepayph" xsi:type="string">Xendit_M2Invoice::multishipping/shopeepayph.phtml</item>
42-
<item name="uangme" xsi:type="string">Xendit_M2Invoice::multishipping/uangme.phtml</item>
4342
<item name="astrapay" xsi:type="string">Xendit_M2Invoice::multishipping/astrapay.phtml</item>
4443
<item name="akulaku" xsi:type="string">Xendit_M2Invoice::multishipping/akulaku.phtml</item>
4544
<item name="atome" xsi:type="string">Xendit_M2Invoice::multishipping/atome.phtml</item>

view/frontend/templates/multishipping/uangme.phtml

-34
This file was deleted.

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

-4
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,6 @@ define(
134134
type: 'cashalo',
135135
component: 'Xendit_M2Invoice/js/view/payment/method-renderer/cashalo'
136136
},
137-
{
138-
type: 'uangme',
139-
component: 'Xendit_M2Invoice/js/view/payment/method-renderer/uangme'
140-
},
141137
{
142138
type: 'astrapay',
143139
component: 'Xendit_M2Invoice/js/view/payment/method-renderer/astrapay'

view/frontend/web/js/view/payment/method-renderer/multishipping/uangme.js

-21
This file was deleted.

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

-79
This file was deleted.

0 commit comments

Comments
 (0)