Skip to content

Commit c23b08d

Browse files
authoredFeb 24, 2021
Merge pull request #48 from paynl/feature/PLUG-318
Added setting for not including paymentcosts in refunds
2 parents b7ce956 + 88954a5 commit c23b08d

File tree

4 files changed

+29
-11
lines changed

4 files changed

+29
-11
lines changed
 

‎app/code/community/Pay/Payment/Model/Sales/Order/Creditmemo/Total/Paymentcharge.php

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ class Pay_Payment_Model_Sales_Order_Creditmemo_Total_Paymentcharge extends Mage_
55
public function collect(Mage_Sales_Model_Order_Creditmemo $creditmemo)
66
{
77
$order = $creditmemo->getOrder();
8+
$store = $order->getStore();
9+
10+
$exclude_fee_refund = $store->getConfig('pay_payment/general/exclude_fee_refund');
11+
if($exclude_fee_refund) {
12+
return $this;
13+
}
814

915
$paymentCharge = $order->getPaynlPaymentCharge();
1016
$basePaymentCharge = $order->getPaynlBasePaymentCharge();

‎app/code/community/Pay/Payment/etc/config.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<config>
33
<modules>
44
<Pay_Payment>
5-
<version>3.13.9</version>
5+
<version>3.13.10</version>
66
</Pay_Payment>
77
</modules>
88
<global>

‎app/code/community/Pay/Payment/etc/system.xml

+20-10
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,16 @@
181181
<show_in_website>1</show_in_website>
182182
<show_in_store>1</show_in_store>
183183
</show_icons>
184+
<icon_size translate="label comment">
185+
<label>Icon size</label>
186+
<comment><![CDATA[Selecteer hoe groot de icoontjes van de betaalmethoden moeten zijn]]></comment>
187+
<frontend_type>select</frontend_type>
188+
<source_model>pay_payment/source_iconsize</source_model>
189+
<sort_order>141</sort_order>
190+
<show_in_default>1</show_in_default>
191+
<show_in_website>1</show_in_website>
192+
<show_in_store>1</show_in_store>
193+
</icon_size>
184194
<show_fee translate="label comment">
185195
<label>Betaalkosten weergeven</label>
186196
<comment><![CDATA[Kosten voor de betaalmethode weergeven in de checkout]]></comment>
@@ -211,16 +221,6 @@
211221
<show_in_website>1</show_in_website>
212222
<show_in_store>1</show_in_store>
213223
</deduct_tax_fee_invoicing>
214-
<icon_size translate="label comment">
215-
<label>Icon size</label>
216-
<comment><![CDATA[Selecteer hoe groot de icoontjes van de betaalmethoden moeten zijn]]></comment>
217-
<frontend_type>select</frontend_type>
218-
<source_model>pay_payment/source_iconsize</source_model>
219-
<sort_order>300</sort_order>
220-
<show_in_default>1</show_in_default>
221-
<show_in_website>1</show_in_website>
222-
<show_in_store>1</show_in_store>
223-
</icon_size>
224224
<text_payment_charge translate="label comment">
225225
<label>Text betalingskosten</label>
226226
<comment><![CDATA[De text die wordt weergegeven bij de betalingskosten]]></comment>
@@ -230,6 +230,15 @@
230230
<show_in_website>1</show_in_website>
231231
<show_in_store>1</show_in_store>
232232
</text_payment_charge>
233+
<exclude_fee_refund translate="label comment">
234+
<label>Betaalkosten niet terugbetalen</label>
235+
<comment>Bij terugbetaling(refund) niet de betaalkosten terugbetalen</comment>
236+
<frontend_type>select</frontend_type>
237+
<source_model>adminhtml/system_config_source_yesno</source_model>
238+
<sort_order>410</sort_order>
239+
<show_in_default>1</show_in_default>
240+
</exclude_fee_refund>
241+
233242
<use_backup_api translate="label comment">
234243
<label>Gateway</label>
235244
<comment><![CDATA[Gebruik de standard gateway, op <a href='https://status-pay.nl'>status-pay.nl</a> kunt u de status van onze techniek volgen]]></comment>
@@ -311,6 +320,7 @@
311320
<show_in_website>1</show_in_website>
312321
<show_in_store>1</show_in_store>
313322
</testipaddress>
323+
314324
</fields>
315325
</general>
316326
<loaded_payment_methods translate="label" module="pay_payment">

‎app/locale/en_US/Pay_Payment.csv

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
"Kosten voor de betaalmethode weergeven in de checkout","Show the charge of the payment method in the checkout"
3636
"Selecteer hoe groot de icoontjes van de betaalmethoden moeten zijn","Select the size of the payment method icons"
3737
"Text betalingskosten","Payment charge label"
38+
"Betaalkosten niet terugbetalen","Exclude paymentfee from refund"
39+
"Bij terugbetaling(refund) niet de betaalkosten terugbetalen","Dont include the payment fee in refunds"
3840
"De text die wordt weergegeven bij de betalingskosten","The text that is shown for the payment charge"
3941
"Gateway","Gateway"
4042
"Gebruik de standard gateway, op <a href='https://status-pay.nl'>status-pay.nl</a> kunt u de status van onze techniek volgen","Use the standard gateway, on <a href='https://status-pay.nl'>status-pay.nl</a> you can view the status of our services"

0 commit comments

Comments
 (0)