Version Notes
Admin forms no longer show settings that dont do anything
updated instore to work with magepos split payments
Added english translation for all admin settings
Download this release
Release Info
Developer | Andy Pieters |
Extension | Pay_NL |
Version | 3.8.2 |
Comparing to | |
See all releases |
Code changes from version 3.8.1 to 3.8.2
- app/code/community/Pay/Payment/Model/Paymentmethod.php +292 -277
- app/code/community/Pay/Payment/Model/Paymentmethod/Instore.php +48 -2
- app/code/community/Pay/Payment/Model/Paymentmethod/Paylink.php +3 -3
- app/code/community/Pay/Payment/etc/config.xml +28 -1
- app/code/community/Pay/Payment/etc/system.xml +309 -802
- app/design/adminhtml/base/default/template/pay/payment/form/billink.phtml +2 -59
- app/design/adminhtml/base/default/template/pay/payment/form/focum.phtml +0 -39
- app/design/adminhtml/base/default/template/pay/payment/form/ideal.phtml +0 -17
- app/design/adminhtml/base/default/template/pay/payment/form/idealSelect.phtml +0 -20
- app/design/adminhtml/base/default/template/pay/payment/form/klarna.phtml +0 -37
- app/design/adminhtml/base/default/template/pay/payment/form/yehhpay.phtml +0 -37
- app/design/frontend/base/default/template/pay/payment/form/billink.phtml +1 -1
- app/locale/en_US/Pay_Payment.csv +81 -0
- package.xml +7 -10
app/code/community/Pay/Payment/Model/Paymentmethod.php
CHANGED
@@ -30,7 +30,7 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
|
|
30 |
$this->helperData = Mage::helper('pay_payment');
|
31 |
$this->helperOrder = Mage::helper('pay_payment/order');
|
32 |
$show_in_admin = Mage::getStoreConfig('pay_payment/general/show_in_admin');
|
33 |
-
if($show_in_admin) $this->_canUseInternal = true;
|
34 |
|
35 |
parent::__construct();
|
36 |
}
|
@@ -83,12 +83,12 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
|
|
83 |
|
84 |
$parentTransactionId = $payment->getParentTransactionId();
|
85 |
|
86 |
-
if($pos = strpos($parentTransactionId, '-')){
|
87 |
$parentTransactionId = substr($parentTransactionId, 0, $pos);
|
88 |
}
|
89 |
-
try{
|
90 |
\Paynl\Transaction::refund($parentTransactionId, $amount);
|
91 |
-
} catch (Exception $e){
|
92 |
// exception needs to be thrown this way, otherwise we don't get the message in the admin
|
93 |
Mage::throwException($e->getMessage());
|
94 |
}
|
@@ -96,220 +96,105 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
|
|
96 |
return $this;
|
97 |
}
|
98 |
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
$
|
103 |
-
foreach ($items as $item) {
|
104 |
-
/* @var $item Mage_Sales_Model_Order_Item */
|
105 |
-
|
106 |
-
$price = $item->getPriceInclTax();
|
107 |
-
if($price == 0){
|
108 |
-
continue;
|
109 |
-
}
|
110 |
-
$product = array(
|
111 |
-
'id' => $item->getId(),
|
112 |
-
'name' => $item->getName(),
|
113 |
-
'price' => $item->getPriceInclTax(),
|
114 |
-
'vatPercentage' => $item->getTaxPercent(),
|
115 |
-
'qty' => $item->getQtyOrdered(),
|
116 |
-
'type' => \Paynl\Transaction::PRODUCT_TYPE_ARTICLE
|
117 |
-
);
|
118 |
-
$arrProducts[] = $product;
|
119 |
-
}
|
120 |
-
|
121 |
-
$discountAmount = $order->getDiscountAmount();
|
122 |
-
if ($discountAmount < 0) {
|
123 |
-
$discount = array(
|
124 |
-
'id' => 'discount',
|
125 |
-
'name' => 'Korting (' . $order->getDiscountDescription() . ')',
|
126 |
-
'price' => $discountAmount,
|
127 |
-
'vatPercentage' => 0,
|
128 |
-
'qty' => 1,
|
129 |
-
'type' => \Paynl\Transaction::PRODUCT_TYPE_DISCOUNT
|
130 |
-
);
|
131 |
|
132 |
-
|
133 |
-
}
|
134 |
|
135 |
-
$
|
136 |
-
if ($shipping > 0) {
|
137 |
-
$shipping = array(
|
138 |
-
'id' => 'shipping',
|
139 |
-
'name' => $order->getShippingDescription(),
|
140 |
-
'price' => $order->getShippingInclTax(),
|
141 |
-
'tax' => $order->getShippingTaxAmount(),
|
142 |
-
'qty' => 1,
|
143 |
-
'type' => \Paynl\Transaction::PRODUCT_TYPE_SHIPPING
|
144 |
-
);
|
145 |
|
146 |
-
|
|
|
|
|
|
|
147 |
}
|
148 |
|
149 |
-
$
|
150 |
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
$code = $payment->getMethod();
|
155 |
-
$taxClass = $this->helperData->getPaymentChargeTaxClass($code);
|
156 |
|
157 |
-
$
|
158 |
-
$request = $taxCalculationModel->getRateRequest($order->getShippingAddress(), $order->getBillingAddress());
|
159 |
-
$request->setStore(Mage::app()->getStore());
|
160 |
-
$vatPercentage = $taxCalculationModel->getRate($request->setProductClassId($taxClass));
|
161 |
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
'vatPercentage' => $vatPercentage,
|
167 |
-
'qty' => 1,
|
168 |
-
'type' => \Paynl\Transaction::PRODUCT_TYPE_HANDLING
|
169 |
-
);
|
170 |
|
171 |
-
|
172 |
-
|
173 |
-
|
|
|
|
|
174 |
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
|
180 |
-
|
181 |
-
|
182 |
-
$arrAddressFull[] = $objBillingAddress->getStreet2();
|
183 |
-
$arrAddressFull[] = $objBillingAddress->getStreet3();
|
184 |
-
$arrAddressFull[] = $objBillingAddress->getStreet4();
|
185 |
-
$arrAddressFull = array_unique($arrAddressFull);
|
186 |
-
$addressFull = implode(' ', $arrAddressFull);
|
187 |
-
$addressFull = str_replace("\n", ' ', $addressFull);
|
188 |
-
$addressFull = str_replace("\r", ' ', $addressFull);
|
189 |
|
190 |
-
|
|
|
|
|
|
|
191 |
|
|
|
|
|
192 |
|
193 |
-
$
|
194 |
-
'initials' => $objBillingAddress->getFirstname(),
|
195 |
-
'lastName' => $objBillingAddress->getLastname(),
|
196 |
-
'streetName' => $address,
|
197 |
-
'houseNumber' => $housenumber,
|
198 |
-
'zipCode' => $objBillingAddress->getPostcode(),
|
199 |
-
'city' => $objBillingAddress->getCity(),
|
200 |
-
'country' => $objBillingAddress->getCountry()
|
201 |
-
);
|
202 |
|
203 |
-
|
204 |
-
}
|
205 |
|
206 |
-
|
207 |
-
$objShippingAddress= $order->getShippingAddress();
|
208 |
|
209 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
|
211 |
-
$
|
212 |
-
$arrAddressFull[] = $objShippingAddress->getStreet1();
|
213 |
-
$arrAddressFull[] = $objShippingAddress->getStreet2();
|
214 |
-
$arrAddressFull[] = $objShippingAddress->getStreet3();
|
215 |
-
$arrAddressFull[] = $objShippingAddress->getStreet4();
|
216 |
-
$arrAddressFull = array_unique($arrAddressFull);
|
217 |
-
$addressFull = implode(' ', $arrAddressFull);
|
218 |
-
$addressFull = str_replace("\n", ' ', $addressFull);
|
219 |
-
$addressFull = str_replace("\r", ' ', $addressFull);
|
220 |
|
221 |
-
|
|
|
222 |
|
|
|
223 |
|
224 |
-
$
|
225 |
-
'
|
226 |
-
'houseNumber' => $housenumber,
|
227 |
-
'zipCode' => $objShippingAddress->getPostcode(),
|
228 |
-
'city' => $objShippingAddress->getCity(),
|
229 |
-
'country' => $objShippingAddress->getCountry()
|
230 |
);
|
231 |
|
232 |
-
|
233 |
-
}
|
234 |
-
|
235 |
-
private function getEnduserData(Mage_Sales_Model_Order $order){
|
236 |
-
$session = Mage::getSingleton('checkout/session');
|
237 |
-
$additionalData = $session->getPaynlPaymentData();
|
238 |
-
if (
|
239 |
-
isset($additionalData['birthday_day']) &&
|
240 |
-
isset($additionalData['birthday_month']) &&
|
241 |
-
isset($additionalData['birthday_year'])
|
242 |
-
) {
|
243 |
-
$birthDate = $additionalData['birthday_year'] . '-' . $additionalData['birthday_month'] . '-' . $additionalData['birthday_day'];
|
244 |
-
|
245 |
-
$order->setCustomerDob($birthDate);
|
246 |
-
$order->save();
|
247 |
-
}
|
248 |
|
249 |
-
|
250 |
-
if(!empty(($birthDate))) {
|
251 |
-
list($dobYear, $dobMonth, $dobDay) = explode('-', $birthDate);
|
252 |
|
253 |
-
|
254 |
-
|
255 |
-
$birthDate = $dobDay . '-' . $dobMonth . '-' . $dobYear;
|
256 |
-
}
|
257 |
-
} else {
|
258 |
-
$birthDate = null;
|
259 |
}
|
260 |
-
$
|
|
|
|
|
|
|
261 |
|
262 |
-
|
263 |
-
'
|
264 |
-
'
|
265 |
);
|
266 |
-
|
267 |
-
if($order->getShippingAddress()){
|
268 |
-
$enduserAddress = $order->getShippingAddress();
|
269 |
-
} else{
|
270 |
-
$enduserAddress = $order->getBillingAddress();
|
271 |
-
}
|
272 |
-
if($enduserAddress){
|
273 |
-
$enduser = array_merge($enduser, array(
|
274 |
-
'initials' => $enduserAddress->getFirstname(),
|
275 |
-
'lastName' => $enduserAddress->getLastname(),
|
276 |
-
'phoneNumber' => $enduserAddress->getTelephone(),
|
277 |
-
'emailAddress' => $enduserAddress->getEmail()
|
278 |
-
));
|
279 |
-
}
|
280 |
-
|
281 |
-
return $enduser;
|
282 |
-
}
|
283 |
-
protected function addressEqual(Mage_Sales_Model_Quote $quote){
|
284 |
-
$billingAddress = $quote->getBillingAddress();
|
285 |
-
$shippingAddress = $quote->getShippingAddress();
|
286 |
-
|
287 |
-
if(strtolower($billingAddress->getStreet1()) !== strtolower($shippingAddress->getStreet1())){
|
288 |
-
return false;
|
289 |
-
}
|
290 |
-
if(strtolower($billingAddress->getStreet2()) !== strtolower($shippingAddress->getStreet2())){
|
291 |
-
return false;
|
292 |
-
}
|
293 |
-
if(strtolower($billingAddress->getStreet3()) !== strtolower($shippingAddress->getStreet3())){
|
294 |
-
return false;
|
295 |
-
}
|
296 |
-
if(strtolower($billingAddress->getStreet4()) !== strtolower($shippingAddress->getStreet4())){
|
297 |
-
return false;
|
298 |
-
}
|
299 |
-
if(strtolower($billingAddress->getPostcode()) !== strtolower($shippingAddress->getPostcode())){
|
300 |
-
return false;
|
301 |
-
}
|
302 |
-
if(strtolower($billingAddress->getRegion()) !== strtolower($shippingAddress->getRegion())){
|
303 |
-
return false;
|
304 |
-
}
|
305 |
-
if(strtolower($billingAddress->getCountryId()) !== strtolower($shippingAddress->getCountryId())){
|
306 |
-
return false;
|
307 |
-
}
|
308 |
-
|
309 |
-
return true;
|
310 |
}
|
311 |
|
312 |
-
private function getTransactionStartData(Mage_Sales_Model_Order $order)
|
|
|
313 |
$store = $order->getStore();
|
314 |
|
315 |
$session = Mage::getSingleton('checkout/session');
|
@@ -322,10 +207,10 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
|
|
322 |
$optionId = $this->_paymentOptionId;
|
323 |
$optionSubId = $additionalData['option_sub'] ? $additionalData['option_sub'] : null;
|
324 |
|
325 |
-
$ipAddress= $order->getRemoteIp();
|
326 |
-
if(empty($ipAddress)) $ipAddress = \Paynl\Helper::getIp();
|
327 |
-
if(strpos($ipAddress, ',') !== false){
|
328 |
-
$ipAddress = substr($ipAddress,0,strpos($ipAddress, ','));
|
329 |
}
|
330 |
|
331 |
$arrStartData = array(
|
@@ -342,44 +227,43 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
|
|
342 |
'language' => $this->helperData->getLanguage($order->getStore())
|
343 |
);
|
344 |
$arrCompany = array();
|
345 |
-
if($order->getShippingAddress()->getCompany()){
|
346 |
$arrCompany['name'] = $order->getShippingAddress()->getCompany();
|
347 |
-
} elseif($order->getBillingAddress()->getCompany()) {
|
348 |
$arrCompany['name'] = $order->getBillingAddress()->getCompany();
|
349 |
}
|
350 |
-
if($order->getCustomerTaxvat()){
|
351 |
$arrCompany['vatNumber'] = $order->getCustomerTaxvat();
|
352 |
}
|
353 |
|
354 |
$countryId = null;
|
355 |
-
if($order->getShippingAddress()->getCountryId()){
|
356 |
$countryId = $order->getShippingAddress()->getCountryId();
|
357 |
}
|
358 |
-
if($order->getBillingAddress()->getCountryId()){
|
359 |
$countryId = $order->getBillingAddress()->getCountryId();
|
360 |
}
|
361 |
-
if(!is_null($countryId)){
|
362 |
$countryCode = Mage::getModel('directory/country')->load($countryId)->getIso2Code();
|
363 |
$arrCompany['countryCode'] = $countryCode;
|
364 |
}
|
365 |
|
366 |
|
367 |
-
|
368 |
-
if(isset($additionalData['kvknummer']) && !empty($additionalData['kvknummer'])){
|
369 |
$arrCompany['cocNumber'] = $additionalData['kvknummer'];
|
370 |
}
|
371 |
|
372 |
-
if(!empty($arrCompany)){
|
373 |
$arrStartData['company'] = $arrCompany;
|
374 |
}
|
375 |
-
if(!is_null($optionSubId)){
|
376 |
$arrStartData['bank'] = $optionSubId;
|
377 |
}
|
378 |
if (isset($additionalData['valid_days'])) {
|
379 |
-
$arrStartData['expireDate']
|
380 |
}
|
381 |
|
382 |
-
if($sendOrderData){
|
383 |
$arrStartData['enduser'] = $this->getEnduserData($order);
|
384 |
$arrStartData['address'] = $this->getShippingAddress($order);
|
385 |
$arrStartData['invoiceAddress'] = $this->getBillingAddress($order);
|
@@ -389,93 +273,199 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
|
|
389 |
return $arrStartData;
|
390 |
}
|
391 |
|
392 |
-
|
393 |
{
|
394 |
-
$
|
395 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
|
397 |
-
|
|
|
|
|
398 |
|
399 |
-
$
|
|
|
|
|
400 |
|
401 |
-
|
402 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
|
404 |
-
|
|
|
|
|
|
|
405 |
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
410 |
|
411 |
-
|
412 |
-
|
413 |
-
if ($restoreCart) {
|
414 |
-
$quoteModel = Mage::getModel('sales/quote');
|
415 |
-
$quoteId = $order->getQuoteId();
|
416 |
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
$quote = $quoteModel->load($quoteId);
|
421 |
|
422 |
-
|
423 |
-
}
|
424 |
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
|
|
|
|
|
|
|
|
|
|
429 |
|
430 |
-
|
431 |
-
}
|
432 |
|
433 |
-
$transaction = Mage::getModel('pay_payment/transaction');
|
434 |
|
435 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
436 |
|
437 |
-
|
|
|
438 |
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
'option_id' => $this->getPaymentOptionId(),
|
444 |
-
'option_sub_id' => null,
|
445 |
-
'amount' => round($arrStartData['amount'] * 100),
|
446 |
-
'order_id' => $order->getId(),
|
447 |
-
'status' => Pay_Payment_Model_Transaction::STATE_PENDING,
|
448 |
-
'created' => time(),
|
449 |
-
'last_update' => time(),
|
450 |
-
));
|
451 |
|
452 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
453 |
|
454 |
-
|
455 |
-
$url = $objStartResult->getRedirectUrl();
|
456 |
|
457 |
-
$payment = $order->getPayment();
|
458 |
|
459 |
-
$
|
460 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
461 |
);
|
462 |
|
463 |
-
$
|
|
|
464 |
|
465 |
-
|
|
|
|
|
466 |
|
467 |
-
|
468 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
}
|
470 |
-
$payment->setAdditionalInformation('paynl_url', $url);
|
471 |
-
$payment->setAdditionalInformation('paynl_order_id', $transactionId);
|
472 |
-
$payment->setAdditionalInformation('paynl_accept_code', $objStartResult->getPaymentReference());
|
473 |
-
$payment->save();
|
474 |
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
479 |
}
|
480 |
|
481 |
public function getOrderPlaceRedirectUrl()
|
@@ -493,17 +483,6 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
|
|
493 |
return true;
|
494 |
}
|
495 |
|
496 |
-
public function getPaymentOptionId()
|
497 |
-
{
|
498 |
-
return $this->_paymentOptionId;
|
499 |
-
}
|
500 |
-
|
501 |
-
// /**
|
502 |
-
// * Instantiate state and set it to state object
|
503 |
-
// * @param string $paymentAction
|
504 |
-
// * @param Varien_Object
|
505 |
-
// */
|
506 |
-
|
507 |
public function assignData($data)
|
508 |
{
|
509 |
$session = Mage::getSingleton('checkout/session');
|
@@ -521,4 +500,40 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
|
|
521 |
|
522 |
return parent::assignData($data);
|
523 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
524 |
}
|
30 |
$this->helperData = Mage::helper('pay_payment');
|
31 |
$this->helperOrder = Mage::helper('pay_payment/order');
|
32 |
$show_in_admin = Mage::getStoreConfig('pay_payment/general/show_in_admin');
|
33 |
+
if ($show_in_admin) $this->_canUseInternal = true;
|
34 |
|
35 |
parent::__construct();
|
36 |
}
|
83 |
|
84 |
$parentTransactionId = $payment->getParentTransactionId();
|
85 |
|
86 |
+
if ($pos = strpos($parentTransactionId, '-')) {
|
87 |
$parentTransactionId = substr($parentTransactionId, 0, $pos);
|
88 |
}
|
89 |
+
try {
|
90 |
\Paynl\Transaction::refund($parentTransactionId, $amount);
|
91 |
+
} catch (Exception $e) {
|
92 |
// exception needs to be thrown this way, otherwise we don't get the message in the admin
|
93 |
Mage::throwException($e->getMessage());
|
94 |
}
|
96 |
return $this;
|
97 |
}
|
98 |
|
99 |
+
public function startPayment(Mage_Sales_Model_Order $order, $transaction_amount = null)
|
100 |
+
{
|
101 |
+
$store = $order->getStore();
|
102 |
+
$this->helperData->loginSDK($store);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
+
Mage::log('Starting payment for order: ' . $order->getId(), null, 'paynl.log');
|
|
|
105 |
|
106 |
+
$arrStartData = $this->getTransactionStartData($order);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
|
108 |
+
if ($transaction_amount == null) {
|
109 |
+
$transaction_amount = $arrStartData['amount'];
|
110 |
+
} else {
|
111 |
+
$transaction_amount = $transaction_amount;
|
112 |
}
|
113 |
|
114 |
+
$arrStartData['amount'] = $transaction_amount;
|
115 |
|
116 |
+
try {
|
117 |
+
Mage::log('Calling Pay api to start transaction', null, 'paynl.log');
|
|
|
|
|
|
|
118 |
|
119 |
+
$objStartResult = \Paynl\Transaction::start($arrStartData);
|
|
|
|
|
|
|
120 |
|
121 |
+
} catch (Exception $e) {
|
122 |
+
Mage::log("Creating transaction failed, Exception: " . $e->getMessage(), null, 'paynl.log');
|
123 |
+
// Reset previous errors
|
124 |
+
Mage::getSingleton('checkout/session')->getMessages(true);
|
|
|
|
|
|
|
|
|
125 |
|
126 |
+
// cart restoren
|
127 |
+
$restoreCart = Mage::getStoreConfig('pay_payment/general/restore_cart', Mage::app()->getStore());
|
128 |
+
if ($restoreCart) {
|
129 |
+
$quoteModel = Mage::getModel('sales/quote');
|
130 |
+
$quoteId = $order->getQuoteId();
|
131 |
|
132 |
+
/**
|
133 |
+
* @var $quote Mage_Sales_Model_Quote
|
134 |
+
*/
|
135 |
+
$quote = $quoteModel->load($quoteId);
|
136 |
|
137 |
+
$quote->setIsActive(true)->save();
|
138 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
|
140 |
+
// Add error to cart
|
141 |
+
Mage::getSingleton('checkout/session')->addError(Mage::helper('pay_payment')->__('Er is een storing bij de door u gekozen betaalmethode of bank. Kiest u alstublieft een andere betaalmethode of probeer het later nogmaals'));
|
142 |
+
Mage::getSingleton('checkout/session')->addError($e->getMessage());
|
143 |
+
// Redirect via header
|
144 |
|
145 |
+
return array('url' => Mage::getUrl('checkout/cart'));
|
146 |
+
}
|
147 |
|
148 |
+
$transaction = Mage::getModel('pay_payment/transaction');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
|
150 |
+
$transactionId = $objStartResult->getTransactionId();
|
|
|
151 |
|
152 |
+
Mage::log('Transaction started, transactionId: ' . $transactionId, null, 'paynl.log');
|
|
|
153 |
|
154 |
+
$transaction->setData(
|
155 |
+
array(
|
156 |
+
'transaction_id' => $transactionId,
|
157 |
+
'service_id' => \Paynl\Config::getServiceId(),
|
158 |
+
'option_id' => $this->getPaymentOptionId(),
|
159 |
+
'option_sub_id' => null,
|
160 |
+
'amount' => round($transaction_amount*100),
|
161 |
+
'order_id' => $order->getId(),
|
162 |
+
'status' => Pay_Payment_Model_Transaction::STATE_PENDING,
|
163 |
+
'created' => time(),
|
164 |
+
'last_update' => time(),
|
165 |
+
));
|
166 |
|
167 |
+
$transaction->save();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
|
169 |
+
//redirecten
|
170 |
+
$url = $objStartResult->getRedirectUrl();
|
171 |
|
172 |
+
$payment = $order->getPayment();
|
173 |
|
174 |
+
$order->addStatusHistoryComment(
|
175 |
+
'Transactie gestart, transactieId: ' . $transactionId . " \nBetaalUrl: " . $url
|
|
|
|
|
|
|
|
|
176 |
);
|
177 |
|
178 |
+
$order->save();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
|
180 |
+
$sendMail = Mage::getStoreConfig('payment/' . $payment->getMethod() . '/send_mail', $order->getStore());
|
|
|
|
|
181 |
|
182 |
+
if ($sendMail == 'start') {
|
183 |
+
$order->sendNewOrderEmail();
|
|
|
|
|
|
|
|
|
184 |
}
|
185 |
+
$payment->setAdditionalInformation('paynl_url', $url);
|
186 |
+
$payment->setAdditionalInformation('paynl_order_id', $transactionId);
|
187 |
+
$payment->setAdditionalInformation('paynl_accept_code', $objStartResult->getPaymentReference());
|
188 |
+
$payment->save();
|
189 |
|
190 |
+
return array(
|
191 |
+
'url' => $url,
|
192 |
+
'transactionId' => $transactionId
|
193 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
}
|
195 |
|
196 |
+
private function getTransactionStartData(Mage_Sales_Model_Order $order)
|
197 |
+
{
|
198 |
$store = $order->getStore();
|
199 |
|
200 |
$session = Mage::getSingleton('checkout/session');
|
207 |
$optionId = $this->_paymentOptionId;
|
208 |
$optionSubId = $additionalData['option_sub'] ? $additionalData['option_sub'] : null;
|
209 |
|
210 |
+
$ipAddress = $order->getRemoteIp();
|
211 |
+
if (empty($ipAddress)) $ipAddress = \Paynl\Helper::getIp();
|
212 |
+
if (strpos($ipAddress, ',') !== false) {
|
213 |
+
$ipAddress = substr($ipAddress, 0, strpos($ipAddress, ','));
|
214 |
}
|
215 |
|
216 |
$arrStartData = array(
|
227 |
'language' => $this->helperData->getLanguage($order->getStore())
|
228 |
);
|
229 |
$arrCompany = array();
|
230 |
+
if ($order->getShippingAddress()->getCompany()) {
|
231 |
$arrCompany['name'] = $order->getShippingAddress()->getCompany();
|
232 |
+
} elseif ($order->getBillingAddress()->getCompany()) {
|
233 |
$arrCompany['name'] = $order->getBillingAddress()->getCompany();
|
234 |
}
|
235 |
+
if ($order->getCustomerTaxvat()) {
|
236 |
$arrCompany['vatNumber'] = $order->getCustomerTaxvat();
|
237 |
}
|
238 |
|
239 |
$countryId = null;
|
240 |
+
if ($order->getShippingAddress()->getCountryId()) {
|
241 |
$countryId = $order->getShippingAddress()->getCountryId();
|
242 |
}
|
243 |
+
if ($order->getBillingAddress()->getCountryId()) {
|
244 |
$countryId = $order->getBillingAddress()->getCountryId();
|
245 |
}
|
246 |
+
if (!is_null($countryId)) {
|
247 |
$countryCode = Mage::getModel('directory/country')->load($countryId)->getIso2Code();
|
248 |
$arrCompany['countryCode'] = $countryCode;
|
249 |
}
|
250 |
|
251 |
|
252 |
+
if (isset($additionalData['kvknummer']) && !empty($additionalData['kvknummer'])) {
|
|
|
253 |
$arrCompany['cocNumber'] = $additionalData['kvknummer'];
|
254 |
}
|
255 |
|
256 |
+
if (!empty($arrCompany)) {
|
257 |
$arrStartData['company'] = $arrCompany;
|
258 |
}
|
259 |
+
if (!is_null($optionSubId)) {
|
260 |
$arrStartData['bank'] = $optionSubId;
|
261 |
}
|
262 |
if (isset($additionalData['valid_days'])) {
|
263 |
+
$arrStartData['expireDate'] = date('d-m-Y H:i:s', strtotime('+' . $additionalData['valid_days'] . ' days'));
|
264 |
}
|
265 |
|
266 |
+
if ($sendOrderData) {
|
267 |
$arrStartData['enduser'] = $this->getEnduserData($order);
|
268 |
$arrStartData['address'] = $this->getShippingAddress($order);
|
269 |
$arrStartData['invoiceAddress'] = $this->getBillingAddress($order);
|
273 |
return $arrStartData;
|
274 |
}
|
275 |
|
276 |
+
private function getEnduserData(Mage_Sales_Model_Order $order)
|
277 |
{
|
278 |
+
$session = Mage::getSingleton('checkout/session');
|
279 |
+
$additionalData = $session->getPaynlPaymentData();
|
280 |
+
if (
|
281 |
+
isset($additionalData['birthday_day']) &&
|
282 |
+
isset($additionalData['birthday_month']) &&
|
283 |
+
isset($additionalData['birthday_year'])
|
284 |
+
) {
|
285 |
+
$birthDate = $additionalData['birthday_year'] . '-' . $additionalData['birthday_month'] . '-' . $additionalData['birthday_day'];
|
286 |
|
287 |
+
$order->setCustomerDob($birthDate);
|
288 |
+
$order->save();
|
289 |
+
}
|
290 |
|
291 |
+
list($birthDate) = explode(' ', $order->getCustomerDob());
|
292 |
+
if (!empty(($birthDate))) {
|
293 |
+
list($dobYear, $dobMonth, $dobDay) = explode('-', $birthDate);
|
294 |
|
295 |
+
$birthDate = null;
|
296 |
+
if ($dobDay && $dobMonth && $dobYear) {
|
297 |
+
$birthDate = $dobDay . '-' . $dobMonth . '-' . $dobYear;
|
298 |
+
}
|
299 |
+
} else {
|
300 |
+
$birthDate = null;
|
301 |
+
}
|
302 |
+
$iban = $additionalData['iban'] ? $additionalData['iban'] : null;
|
303 |
|
304 |
+
$enduser = array(
|
305 |
+
'birthDate' => $birthDate,
|
306 |
+
'iban' => $iban
|
307 |
+
);
|
308 |
|
309 |
+
if ($order->getShippingAddress()) {
|
310 |
+
$enduserAddress = $order->getShippingAddress();
|
311 |
+
} else {
|
312 |
+
$enduserAddress = $order->getBillingAddress();
|
313 |
+
}
|
314 |
+
if ($enduserAddress) {
|
315 |
+
$enduser = array_merge($enduser, array(
|
316 |
+
'initials' => $enduserAddress->getFirstname(),
|
317 |
+
'lastName' => $enduserAddress->getLastname(),
|
318 |
+
'phoneNumber' => $enduserAddress->getTelephone(),
|
319 |
+
'emailAddress' => $enduserAddress->getEmail()
|
320 |
+
));
|
321 |
+
}
|
322 |
|
323 |
+
return $enduser;
|
324 |
+
}
|
|
|
|
|
|
|
325 |
|
326 |
+
private function getShippingAddress(Mage_Sales_Model_Order $order)
|
327 |
+
{
|
328 |
+
$objShippingAddress = $order->getShippingAddress();
|
|
|
329 |
|
330 |
+
if (!$objShippingAddress) return array();
|
|
|
331 |
|
332 |
+
$arrAddressFull = array();
|
333 |
+
$arrAddressFull[] = $objShippingAddress->getStreet1();
|
334 |
+
$arrAddressFull[] = $objShippingAddress->getStreet2();
|
335 |
+
$arrAddressFull[] = $objShippingAddress->getStreet3();
|
336 |
+
$arrAddressFull[] = $objShippingAddress->getStreet4();
|
337 |
+
$arrAddressFull = array_unique($arrAddressFull);
|
338 |
+
$addressFull = implode(' ', $arrAddressFull);
|
339 |
+
$addressFull = str_replace("\n", ' ', $addressFull);
|
340 |
+
$addressFull = str_replace("\r", ' ', $addressFull);
|
341 |
|
342 |
+
list($address, $housenumber) = \Paynl\Helper::splitAddress($addressFull);
|
|
|
343 |
|
|
|
344 |
|
345 |
+
$arrShippingAddress = array(
|
346 |
+
'streetName' => $address,
|
347 |
+
'houseNumber' => $housenumber,
|
348 |
+
'zipCode' => $objShippingAddress->getPostcode(),
|
349 |
+
'city' => $objShippingAddress->getCity(),
|
350 |
+
'country' => $objShippingAddress->getCountry()
|
351 |
+
);
|
352 |
|
353 |
+
return $arrShippingAddress;
|
354 |
+
}
|
355 |
|
356 |
+
private function getBillingAddress(Mage_Sales_Model_Order $order)
|
357 |
+
{
|
358 |
+
$objBillingAddress = $order->getBillingAddress();
|
359 |
+
if (!$objBillingAddress) return array();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
360 |
|
361 |
+
$arrAddressFull = array();
|
362 |
+
$arrAddressFull[] = $objBillingAddress->getStreet1();
|
363 |
+
$arrAddressFull[] = $objBillingAddress->getStreet2();
|
364 |
+
$arrAddressFull[] = $objBillingAddress->getStreet3();
|
365 |
+
$arrAddressFull[] = $objBillingAddress->getStreet4();
|
366 |
+
$arrAddressFull = array_unique($arrAddressFull);
|
367 |
+
$addressFull = implode(' ', $arrAddressFull);
|
368 |
+
$addressFull = str_replace("\n", ' ', $addressFull);
|
369 |
+
$addressFull = str_replace("\r", ' ', $addressFull);
|
370 |
|
371 |
+
list($address, $housenumber) = \Paynl\Helper::splitAddress($addressFull);
|
|
|
372 |
|
|
|
373 |
|
374 |
+
$arrBillingAddress = array(
|
375 |
+
'initials' => $objBillingAddress->getFirstname(),
|
376 |
+
'lastName' => $objBillingAddress->getLastname(),
|
377 |
+
'streetName' => $address,
|
378 |
+
'houseNumber' => $housenumber,
|
379 |
+
'zipCode' => $objBillingAddress->getPostcode(),
|
380 |
+
'city' => $objBillingAddress->getCity(),
|
381 |
+
'country' => $objBillingAddress->getCountry()
|
382 |
);
|
383 |
|
384 |
+
return $arrBillingAddress;
|
385 |
+
}
|
386 |
|
387 |
+
private function getProducts(Mage_Sales_Model_Order $order)
|
388 |
+
{
|
389 |
+
$arrProducts = array();
|
390 |
|
391 |
+
$items = $order->getItemsCollection(array(), true);
|
392 |
+
foreach ($items as $item) {
|
393 |
+
/* @var $item Mage_Sales_Model_Order_Item */
|
394 |
+
|
395 |
+
$price = $item->getPriceInclTax();
|
396 |
+
if ($price == 0) {
|
397 |
+
continue;
|
398 |
+
}
|
399 |
+
$product = array(
|
400 |
+
'id' => $item->getId(),
|
401 |
+
'name' => $item->getName(),
|
402 |
+
'price' => $item->getPriceInclTax(),
|
403 |
+
'vatPercentage' => $item->getTaxPercent(),
|
404 |
+
'qty' => $item->getQtyOrdered(),
|
405 |
+
'type' => \Paynl\Transaction::PRODUCT_TYPE_ARTICLE
|
406 |
+
);
|
407 |
+
$arrProducts[] = $product;
|
408 |
}
|
|
|
|
|
|
|
|
|
409 |
|
410 |
+
$discountAmount = $order->getDiscountAmount();
|
411 |
+
if ($discountAmount < 0) {
|
412 |
+
$discount = array(
|
413 |
+
'id' => 'discount',
|
414 |
+
'name' => 'Korting (' . $order->getDiscountDescription() . ')',
|
415 |
+
'price' => $discountAmount,
|
416 |
+
'vatPercentage' => 0,
|
417 |
+
'qty' => 1,
|
418 |
+
'type' => \Paynl\Transaction::PRODUCT_TYPE_DISCOUNT
|
419 |
+
);
|
420 |
+
|
421 |
+
$arrProducts[] = $discount;
|
422 |
+
}
|
423 |
+
|
424 |
+
$shipping = $order->getShippingInclTax();
|
425 |
+
if ($shipping > 0) {
|
426 |
+
$shipping = array(
|
427 |
+
'id' => 'shipping',
|
428 |
+
'name' => $order->getShippingDescription(),
|
429 |
+
'price' => $order->getShippingInclTax(),
|
430 |
+
'tax' => $order->getShippingTaxAmount(),
|
431 |
+
'qty' => 1,
|
432 |
+
'type' => \Paynl\Transaction::PRODUCT_TYPE_SHIPPING
|
433 |
+
);
|
434 |
+
|
435 |
+
$arrProducts[] = $shipping;
|
436 |
+
}
|
437 |
+
|
438 |
+
$extraFee = $order->getPaymentCharge();
|
439 |
+
|
440 |
+
if ($extraFee != 0) {
|
441 |
+
$payment = $order->getPayment();
|
442 |
+
|
443 |
+
$code = $payment->getMethod();
|
444 |
+
$taxClass = $this->helperData->getPaymentChargeTaxClass($code);
|
445 |
+
|
446 |
+
$taxCalculationModel = Mage::getSingleton('tax/calculation');
|
447 |
+
$request = $taxCalculationModel->getRateRequest($order->getShippingAddress(), $order->getBillingAddress());
|
448 |
+
$request->setStore(Mage::app()->getStore());
|
449 |
+
$vatPercentage = $taxCalculationModel->getRate($request->setProductClassId($taxClass));
|
450 |
+
|
451 |
+
$fee = array(
|
452 |
+
'id' => 'paymentfee',
|
453 |
+
'name' => Mage::getStoreConfig('pay_payment/general/text_payment_charge', $order->getStore()),
|
454 |
+
'price' => $extraFee,
|
455 |
+
'vatPercentage' => $vatPercentage,
|
456 |
+
'qty' => 1,
|
457 |
+
'type' => \Paynl\Transaction::PRODUCT_TYPE_HANDLING
|
458 |
+
);
|
459 |
+
|
460 |
+
$arrProducts[] = $fee;
|
461 |
+
}
|
462 |
+
return $arrProducts;
|
463 |
+
|
464 |
+
}
|
465 |
+
|
466 |
+
public function getPaymentOptionId()
|
467 |
+
{
|
468 |
+
return $this->_paymentOptionId;
|
469 |
}
|
470 |
|
471 |
public function getOrderPlaceRedirectUrl()
|
483 |
return true;
|
484 |
}
|
485 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
public function assignData($data)
|
487 |
{
|
488 |
$session = Mage::getSingleton('checkout/session');
|
500 |
|
501 |
return parent::assignData($data);
|
502 |
}
|
503 |
+
|
504 |
+
// /**
|
505 |
+
// * Instantiate state and set it to state object
|
506 |
+
// * @param string $paymentAction
|
507 |
+
// * @param Varien_Object
|
508 |
+
// */
|
509 |
+
|
510 |
+
protected function addressEqual(Mage_Sales_Model_Quote $quote)
|
511 |
+
{
|
512 |
+
$billingAddress = $quote->getBillingAddress();
|
513 |
+
$shippingAddress = $quote->getShippingAddress();
|
514 |
+
|
515 |
+
if (strtolower($billingAddress->getStreet1()) !== strtolower($shippingAddress->getStreet1())) {
|
516 |
+
return false;
|
517 |
+
}
|
518 |
+
if (strtolower($billingAddress->getStreet2()) !== strtolower($shippingAddress->getStreet2())) {
|
519 |
+
return false;
|
520 |
+
}
|
521 |
+
if (strtolower($billingAddress->getStreet3()) !== strtolower($shippingAddress->getStreet3())) {
|
522 |
+
return false;
|
523 |
+
}
|
524 |
+
if (strtolower($billingAddress->getStreet4()) !== strtolower($shippingAddress->getStreet4())) {
|
525 |
+
return false;
|
526 |
+
}
|
527 |
+
if (strtolower($billingAddress->getPostcode()) !== strtolower($shippingAddress->getPostcode())) {
|
528 |
+
return false;
|
529 |
+
}
|
530 |
+
if (strtolower($billingAddress->getRegion()) !== strtolower($shippingAddress->getRegion())) {
|
531 |
+
return false;
|
532 |
+
}
|
533 |
+
if (strtolower($billingAddress->getCountryId()) !== strtolower($shippingAddress->getCountryId())) {
|
534 |
+
return false;
|
535 |
+
}
|
536 |
+
|
537 |
+
return true;
|
538 |
+
}
|
539 |
}
|
app/code/community/Pay/Payment/Model/Paymentmethod/Instore.php
CHANGED
@@ -42,7 +42,7 @@ class Pay_Payment_Model_Paymentmethod_Instore extends Pay_Payment_Model_Paymentm
|
|
42 |
return parent::initialize($paymentAction, $stateObject);
|
43 |
}
|
44 |
|
45 |
-
private function sendToTerminal($transactionId, $terminalId, $order)
|
46 |
{
|
47 |
$payment = \Paynl\Instore::payment(array(
|
48 |
'transactionId' => $transactionId,
|
@@ -86,7 +86,10 @@ class Pay_Payment_Model_Paymentmethod_Instore extends Pay_Payment_Model_Paymentm
|
|
86 |
return $this->_startResult;
|
87 |
}
|
88 |
|
89 |
-
$
|
|
|
|
|
|
|
90 |
|
91 |
$store = $order->getStore();
|
92 |
$pageSuccess = $store->getConfig('pay_payment/general/page_success');
|
@@ -102,5 +105,48 @@ class Pay_Payment_Model_Paymentmethod_Instore extends Pay_Payment_Model_Paymentm
|
|
102 |
}
|
103 |
|
104 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
}
|
106 |
|
42 |
return parent::initialize($paymentAction, $stateObject);
|
43 |
}
|
44 |
|
45 |
+
private static function sendToTerminal($transactionId, $terminalId, $order)
|
46 |
{
|
47 |
$payment = \Paynl\Instore::payment(array(
|
48 |
'transactionId' => $transactionId,
|
86 |
return $this->_startResult;
|
87 |
}
|
88 |
|
89 |
+
$transaction_amount = $order->getPayment()->getAdditionalInformation('amount');
|
90 |
+
$transaction_amount = ($transaction_amount)?$transaction_amount:null;
|
91 |
+
|
92 |
+
$result = parent::startPayment($order, $transaction_amount);
|
93 |
|
94 |
$store = $order->getStore();
|
95 |
$pageSuccess = $store->getConfig('pay_payment/general/page_success');
|
105 |
}
|
106 |
|
107 |
}
|
108 |
+
public static function startMultiPayment(Varien_Event_Observer $data){
|
109 |
+
$method = $data->getMethod();
|
110 |
+
if($method == 'pay_payment_instore') {
|
111 |
+
$amount = $data->getAmount();
|
112 |
+
|
113 |
+
$methodData = $data->getMethodData();
|
114 |
+
$terminalId = $methodData['additional_data']['terminalId'];
|
115 |
+
|
116 |
+
/**
|
117 |
+
* @var Mage_Sales_Model_Order $order
|
118 |
+
*/
|
119 |
+
$order = $data->getOrder();
|
120 |
+
$store = $order->getStore();
|
121 |
+
$payHelper = Mage::helper('pay_payment');
|
122 |
+
$payHelper->loginSDK($store);
|
123 |
+
|
124 |
+
$ipAddress = $order->getRemoteIp();
|
125 |
+
if (empty($ipAddress)) $ipAddress = \Paynl\Helper::getIp();
|
126 |
+
if (strpos($ipAddress, ',') !== false) {
|
127 |
+
$ipAddress = substr($ipAddress, 0, strpos($ipAddress, ','));
|
128 |
+
}
|
129 |
+
|
130 |
+
$startData = array(
|
131 |
+
'amount' => $amount,
|
132 |
+
'returnUrl' => 'http://dummy_url.com',
|
133 |
+
'ipaddress' => $ipAddress,
|
134 |
+
|
135 |
+
'paymentMethod' => self::OPTION_ID,
|
136 |
+
'description' => $order->getIncrementId(),
|
137 |
+
'currency' => $order->getOrderCurrencyCode(),
|
138 |
+
'extra1' => $order->getIncrementId(),
|
139 |
+
'extra2' => $order->getCustomerEmail(),
|
140 |
+
'ipAddress' => $ipAddress
|
141 |
+
);
|
142 |
+
|
143 |
+
$transaction = \Paynl\Transaction::start($startData);
|
144 |
+
|
145 |
+
$terminalResult = self::sendToTerminal($transaction->getTransactionId(), $terminalId, $order);
|
146 |
+
if(!$terminalResult){
|
147 |
+
Mage::throwException('Payment canceled');
|
148 |
+
}
|
149 |
+
}
|
150 |
+
}
|
151 |
}
|
152 |
|
app/code/community/Pay/Payment/Model/Paymentmethod/Paylink.php
CHANGED
@@ -22,10 +22,10 @@ class Pay_Payment_Model_Paymentmethod_Paylink extends Pay_Payment_Model_Paymentm
|
|
22 |
$order = $payment->getOrder();
|
23 |
$method = $payment->getMethodInstance();
|
24 |
|
25 |
-
$data = $method->startPayment($order);
|
26 |
-
|
27 |
$order->setState(Mage_Sales_Model_Order::STATE_PENDING_PAYMENT, 'pending_payment', '', false);
|
28 |
|
|
|
|
|
29 |
$stateObject->setState(Mage_Sales_Model_Order::STATE_PENDING_PAYMENT);
|
30 |
$stateObject->setStatus('pending_payment');
|
31 |
$stateObject->setIsNotified(false);
|
@@ -33,7 +33,7 @@ class Pay_Payment_Model_Paymentmethod_Paylink extends Pay_Payment_Model_Paymentm
|
|
33 |
default:
|
34 |
break;
|
35 |
}
|
36 |
-
return parent::initialize();
|
37 |
}
|
38 |
}
|
39 |
|
22 |
$order = $payment->getOrder();
|
23 |
$method = $payment->getMethodInstance();
|
24 |
|
|
|
|
|
25 |
$order->setState(Mage_Sales_Model_Order::STATE_PENDING_PAYMENT, 'pending_payment', '', false);
|
26 |
|
27 |
+
$data = $method->startPayment($order);
|
28 |
+
|
29 |
$stateObject->setState(Mage_Sales_Model_Order::STATE_PENDING_PAYMENT);
|
30 |
$stateObject->setStatus('pending_payment');
|
31 |
$stateObject->setIsNotified(false);
|
33 |
default:
|
34 |
break;
|
35 |
}
|
36 |
+
return parent::initialize($paymentAction, $stateObject);
|
37 |
}
|
38 |
}
|
39 |
|
app/code/community/Pay/Payment/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Pay_Payment>
|
5 |
-
<version>3.8.
|
6 |
</Pay_Payment>
|
7 |
</modules>
|
8 |
<global>
|
@@ -31,6 +31,14 @@
|
|
31 |
</pay_payment>
|
32 |
</observers>
|
33 |
</add_spl_autoloader>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
</events>
|
35 |
<models>
|
36 |
<pay_payment>
|
@@ -163,6 +171,15 @@
|
|
163 |
</args>
|
164 |
</pay_payment>
|
165 |
</routers>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
</frontend>
|
167 |
|
168 |
<adminhtml>
|
@@ -188,6 +205,15 @@
|
|
188 |
</admin>
|
189 |
</resources>
|
190 |
</acl>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
</adminhtml>
|
192 |
<default>
|
193 |
<sales>
|
@@ -613,3 +639,4 @@
|
|
613 |
</payment>
|
614 |
</default>
|
615 |
</config>
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Pay_Payment>
|
5 |
+
<version>3.8.2</version>
|
6 |
</Pay_Payment>
|
7 |
</modules>
|
8 |
<global>
|
31 |
</pay_payment>
|
32 |
</observers>
|
33 |
</add_spl_autoloader>
|
34 |
+
<webpos_start_process_payment>
|
35 |
+
<observers>
|
36 |
+
<pay_payment>
|
37 |
+
<class>Pay_Payment_Model_Paymentmethod_Instore</class>
|
38 |
+
<method>startMultiPayment</method>
|
39 |
+
</pay_payment>
|
40 |
+
</observers>
|
41 |
+
</webpos_start_process_payment>
|
42 |
</events>
|
43 |
<models>
|
44 |
<pay_payment>
|
171 |
</args>
|
172 |
</pay_payment>
|
173 |
</routers>
|
174 |
+
<translate>
|
175 |
+
<modules>
|
176 |
+
<Pay_Payment>
|
177 |
+
<files>
|
178 |
+
<default>Pay_Payment.csv</default>
|
179 |
+
</files>
|
180 |
+
</Pay_Payment>
|
181 |
+
</modules>
|
182 |
+
</translate>
|
183 |
</frontend>
|
184 |
|
185 |
<adminhtml>
|
205 |
</admin>
|
206 |
</resources>
|
207 |
</acl>
|
208 |
+
<translate>
|
209 |
+
<modules>
|
210 |
+
<Pay_Payment>
|
211 |
+
<files>
|
212 |
+
<default>Pay_Payment.csv</default>
|
213 |
+
</files>
|
214 |
+
</Pay_Payment>
|
215 |
+
</modules>
|
216 |
+
</translate>
|
217 |
</adminhtml>
|
218 |
<default>
|
219 |
<sales>
|
639 |
</payment>
|
640 |
</default>
|
641 |
</config>
|
642 |
+
|
app/code/community/Pay/Payment/etc/system.xml
CHANGED
@@ -18,7 +18,6 @@
|
|
18 |
<show_in_website>1</show_in_website>
|
19 |
<show_in_store>1</show_in_store>
|
20 |
<groups>
|
21 |
-
|
22 |
<general translate="label" module="pay_payment">
|
23 |
<label>Algemene instellingen</label>
|
24 |
<sort_order>1</sort_order>
|
@@ -38,8 +37,7 @@
|
|
38 |
</version>
|
39 |
<apitoken translate="label comment">
|
40 |
<label>API token</label>
|
41 |
-
<comment>
|
42 |
-
<![CDATA[Uw API token, deze kunt u vinden op <a href='https://admin.pay.nl/my_merchant'>admin.pay.nl/my_merchant</a>]]></comment>
|
43 |
<frontend_type>text</frontend_type>
|
44 |
<backend_model>pay_payment/Backend_Trim</backend_model>
|
45 |
<sort_order>2</sort_order>
|
@@ -49,8 +47,7 @@
|
|
49 |
</apitoken>
|
50 |
<serviceid translate="label comment">
|
51 |
<label>Service id</label>
|
52 |
-
<comment>
|
53 |
-
<![CDATA[Uw service id, deze kunt u vinden op <a href='https://admin.pay.nl/programs/programs'>admin.pay.nl/programs/programs</a>]]></comment>
|
54 |
<frontend_type>text</frontend_type>
|
55 |
<backend_model>pay_payment/Backend_Trim</backend_model>
|
56 |
<sort_order>3</sort_order>
|
@@ -60,9 +57,7 @@
|
|
60 |
</serviceid>
|
61 |
<testmode translate="label comment">
|
62 |
<label>Testmode</label>
|
63 |
-
<comment>
|
64 |
-
<![CDATA[Schakel in om alle betalingen in testmode te starten. Je kunt de betaling vervolgens bevestigen met je apitoken]]>
|
65 |
-
</comment>
|
66 |
<frontend_type>select</frontend_type>
|
67 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
68 |
<sort_order>4</sort_order>
|
@@ -72,8 +67,7 @@
|
|
72 |
</testmode>
|
73 |
<auto_invoice translate="label comment">
|
74 |
<label>Automatisch factureren</label>
|
75 |
-
<comment>
|
76 |
-
<![CDATA[Betaalde orders automatisch factureren, LET OP! Als dit op NEE staat kun je orders ook niet refunden]]></comment>
|
77 |
<frontend_type>select</frontend_type>
|
78 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
79 |
<sort_order>5</sort_order>
|
@@ -103,8 +97,7 @@
|
|
103 |
</send_statusupdates>
|
104 |
<send_order_data translate="label comment">
|
105 |
<label>Order data sturen</label>
|
106 |
-
<comment>
|
107 |
-
<![CDATA[Klantgegeven en orderdata naar pay versturen, verplicht indien u gebruik maakt van een achteraf betaalmethode, of wanneer u gebruik wilt maken van Second Chance]]></comment>
|
108 |
<frontend_type>select</frontend_type>
|
109 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
110 |
<sort_order>8</sort_order>
|
@@ -114,8 +107,7 @@
|
|
114 |
</send_order_data>
|
115 |
<restore_cart translate="label comment">
|
116 |
<label>Winkelwagen vullen bij cancel</label>
|
117 |
-
<comment>
|
118 |
-
<![CDATA[Geef aan of u wilt dat de winkelwagen weer wordt gevuld met de producten die waren besteld als de gebruiker op het betaalscherm op annuleren heeft geklikt]]></comment>
|
119 |
<frontend_type>select</frontend_type>
|
120 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
121 |
<sort_order>9</sort_order>
|
@@ -123,40 +115,36 @@
|
|
123 |
<show_in_website>1</show_in_website>
|
124 |
<show_in_store>1</show_in_store>
|
125 |
</restore_cart>
|
126 |
-
<page_success>
|
127 |
<label>Success pagina</label>
|
128 |
-
<comment>
|
129 |
-
<![CDATA[De pagina waar de gebruiker naartoe gestuurd moet worden bij een geslaagde betaling]]></comment>
|
130 |
<frontend_type>text</frontend_type>
|
131 |
<sort_order>10</sort_order>
|
132 |
<show_in_default>1</show_in_default>
|
133 |
<show_in_website>1</show_in_website>
|
134 |
<show_in_store>1</show_in_store>
|
135 |
</page_success>
|
136 |
-
<page_pending>
|
137 |
<label>Pending pagina</label>
|
138 |
-
<comment>
|
139 |
-
<![CDATA[De pagina waar de gebruiker naartoe gestuurd moet worden wanneer de betaalstatus nog pending is (bijv. bij paypal komt de statusupdate later)]]></comment>
|
140 |
<frontend_type>text</frontend_type>
|
141 |
<sort_order>11</sort_order>
|
142 |
<show_in_default>1</show_in_default>
|
143 |
<show_in_website>1</show_in_website>
|
144 |
<show_in_store>1</show_in_store>
|
145 |
</page_pending>
|
146 |
-
<page_canceled>
|
147 |
<label>Mislukt pagina</label>
|
148 |
-
<comment>
|
149 |
-
<![CDATA[De pagina waar de gebruiker naartoe gestuurd moet worden bij een mislukte/geannuleerde betaling]]></comment>
|
150 |
<frontend_type>text</frontend_type>
|
151 |
<sort_order>12</sort_order>
|
152 |
<show_in_default>1</show_in_default>
|
153 |
<show_in_website>1</show_in_website>
|
154 |
<show_in_store>1</show_in_store>
|
155 |
</page_canceled>
|
156 |
-
<user_language>
|
157 |
<label>Gebruikers taal</label>
|
158 |
-
<comment>
|
159 |
-
<![CDATA[De taalcode die naar pay.nl moet worden gestuurd, dit is van invloed op de taal van het betaalscherm en de eventuele email die naar de gebruiker wordt gestuurd door pay (bijvoorbeeld bij bankoverschrijving).]]></comment>
|
160 |
<frontend_type>select</frontend_type>
|
161 |
<source_model>pay_payment/source_language</source_model>
|
162 |
<sort_order>13</sort_order>
|
@@ -164,7 +152,7 @@
|
|
164 |
<show_in_website>1</show_in_website>
|
165 |
<show_in_store>1</show_in_store>
|
166 |
</user_language>
|
167 |
-
<show_icons>
|
168 |
<label>Icoontjes weergeven</label>
|
169 |
<comment><![CDATA[Icoontjes bij de betaalmethoden weergeven]]></comment>
|
170 |
<frontend_type>select</frontend_type>
|
@@ -174,7 +162,7 @@
|
|
174 |
<show_in_website>1</show_in_website>
|
175 |
<show_in_store>1</show_in_store>
|
176 |
</show_icons>
|
177 |
-
<show_fee>
|
178 |
<label>Betaalkosten weergeven</label>
|
179 |
<comment><![CDATA[Kosten voor de betaalmethode weergeven in de checkout]]></comment>
|
180 |
<frontend_type>select</frontend_type>
|
@@ -184,10 +172,9 @@
|
|
184 |
<show_in_website>1</show_in_website>
|
185 |
<show_in_store>1</show_in_store>
|
186 |
</show_fee>
|
187 |
-
<icon_size>
|
188 |
-
<label>
|
189 |
-
<comment>
|
190 |
-
<![CDATA[Selecteer hoe groot de icoontjes van de betaalmethoden moeten zijn]]></comment>
|
191 |
<frontend_type>select</frontend_type>
|
192 |
<source_model>pay_payment/source_iconsize</source_model>
|
193 |
<sort_order>16</sort_order>
|
@@ -204,27 +191,25 @@
|
|
204 |
<show_in_website>1</show_in_website>
|
205 |
<show_in_store>1</show_in_store>
|
206 |
</text_payment_charge>
|
207 |
-
<use_backup_api>
|
208 |
<label>Gateway</label>
|
209 |
-
<comment>
|
210 |
-
<![CDATA[Gebruik de standard gateway, op <a href='http://status-pay.nl'>status-pay.nl</a> kunt u de status van onze techniek volgen]]></comment>
|
211 |
<frontend_type>select</frontend_type>
|
212 |
<source_model>pay_payment/source_gateway</source_model>
|
213 |
<sort_order>18</sort_order>
|
214 |
<show_in_default>1</show_in_default>
|
215 |
</use_backup_api>
|
216 |
-
<backup_api_url>
|
217 |
<depends>
|
218 |
<use_backup_api>1</use_backup_api>
|
219 |
</depends>
|
220 |
-
<comment>Vul hier de locatie van de failover gateway in die door pay.nl is verstrekt
|
221 |
-
</comment>
|
222 |
<label>Failover gateway</label>
|
223 |
<frontend_type>text</frontend_type>
|
224 |
<sort_order>19</sort_order>
|
225 |
<show_in_default>1</show_in_default>
|
226 |
</backup_api_url>
|
227 |
-
<enable_refund>
|
228 |
<label>Refunden inschakelen</label>
|
229 |
<comment>Schakel dit uit indien u het rechstreeks refunden wilt uitschakelen</comment>
|
230 |
<frontend_type>select</frontend_type>
|
@@ -232,7 +217,7 @@
|
|
232 |
<sort_order>20</sort_order>
|
233 |
<show_in_default>1</show_in_default>
|
234 |
</enable_refund>
|
235 |
-
<show_in_admin>
|
236 |
<label>Alle betaalmethoden weergegeven in admin</label>
|
237 |
<comment>Schakel dit in om alle betaalmethoden selecteerbaar te maken in de admin, er wordt geen betaling gestart</comment>
|
238 |
<frontend_type>select</frontend_type>
|
@@ -250,11 +235,9 @@
|
|
250 |
<show_in_store>1</show_in_store>
|
251 |
<expanded>1</expanded>
|
252 |
<fields>
|
253 |
-
<test123>
|
254 |
<label>Beschikbaar</label>
|
255 |
-
<comment>Hierboven ziet u de betaalmethoden die voor uw account bij pay.nl beschikbaar
|
256 |
-
zijn
|
257 |
-
</comment>
|
258 |
<sort_order>3</sort_order>
|
259 |
<show_in_default>1</show_in_default>
|
260 |
<show_in_website>1</show_in_website>
|
@@ -271,7 +254,7 @@
|
|
271 |
<show_in_website>1</show_in_website>
|
272 |
<show_in_store>1</show_in_store>
|
273 |
<fields>
|
274 |
-
<active translate="label">
|
275 |
<label>Actief</label>
|
276 |
<comment>Wilt u deze betaalmethode gebruiken</comment>
|
277 |
<sort_order>1</sort_order>
|
@@ -294,7 +277,7 @@
|
|
294 |
<show_in_store>1</show_in_store>
|
295 |
<config_path>payment/pay_payment_paylink/title</config_path>
|
296 |
</title>
|
297 |
-
<order_status translate="label">
|
298 |
<depends>
|
299 |
<active>1</active>
|
300 |
</depends>
|
@@ -308,7 +291,7 @@
|
|
308 |
<show_in_store>1</show_in_store>
|
309 |
<config_path>payment/pay_payment_paylink/order_status</config_path>
|
310 |
</order_status>
|
311 |
-
<order_status_success translate="label">
|
312 |
<depends>
|
313 |
<active>1</active>
|
314 |
</depends>
|
@@ -322,16 +305,12 @@
|
|
322 |
<show_in_store>1</show_in_store>
|
323 |
<config_path>payment/pay_payment_paylink/order_status_success</config_path>
|
324 |
</order_status_success>
|
325 |
-
<charge_type translate="label">
|
326 |
<depends>
|
327 |
<active>1</active>
|
328 |
</depends>
|
329 |
<label>Extra kosten rekenen</label>
|
330 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
331 |
-
van
|
332 |
-
het
|
333 |
-
totaalbedrag of een vast bedrag
|
334 |
-
</comment>
|
335 |
<frontend_type>select</frontend_type>
|
336 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
337 |
<sort_order>200</sort_order>
|
@@ -340,15 +319,12 @@
|
|
340 |
<show_in_store>1</show_in_store>
|
341 |
<config_path>payment/pay_payment_paylink/charge_type</config_path>
|
342 |
</charge_type>
|
343 |
-
<charge_value translate="label">
|
344 |
<depends>
|
345 |
<active>1</active>
|
346 |
</depends>
|
347 |
<label>Extra kosten</label>
|
348 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
349 |
-
decimalen,
|
350 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
351 |
-
</comment>
|
352 |
<frontend_type>text</frontend_type>
|
353 |
<sort_order>201</sort_order>
|
354 |
<show_in_default>1</show_in_default>
|
@@ -369,7 +345,7 @@
|
|
369 |
<show_in_store>1</show_in_store>
|
370 |
<config_path>payment/pay_payment_paylink/charge_tax_class</config_path>
|
371 |
</charge_tax_class>
|
372 |
-
<send_mail translate="label">
|
373 |
<depends>
|
374 |
<active>1</active>
|
375 |
</depends>
|
@@ -407,7 +383,7 @@
|
|
407 |
<show_in_website>1</show_in_website>
|
408 |
<show_in_store>1</show_in_store>
|
409 |
<fields>
|
410 |
-
<active translate="label">
|
411 |
<label>Actief</label>
|
412 |
<comment>Wilt u deze betaalmethode gebruiken</comment>
|
413 |
<sort_order>1</sort_order>
|
@@ -442,13 +418,12 @@
|
|
442 |
<show_in_store>1</show_in_store>
|
443 |
<config_path>payment/pay_payment_afterpay/sort_order</config_path>
|
444 |
</sort_order>
|
445 |
-
<min_order_total translate="label">
|
446 |
<depends>
|
447 |
<active>1</active>
|
448 |
</depends>
|
449 |
<label>Minimum bedrag</label>
|
450 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
451 |
-
</comment>
|
452 |
<frontend_type>text</frontend_type>
|
453 |
<sort_order>5</sort_order>
|
454 |
<show_in_default>1</show_in_default>
|
@@ -456,13 +431,12 @@
|
|
456 |
<show_in_store>1</show_in_store>
|
457 |
<config_path>payment/pay_payment_afterpay/min_order_total</config_path>
|
458 |
</min_order_total>
|
459 |
-
<max_order_total translate="label">
|
460 |
<depends>
|
461 |
<active>1</active>
|
462 |
</depends>
|
463 |
<label>Maximum bedrag</label>
|
464 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
465 |
-
</comment>
|
466 |
<frontend_type>text</frontend_type>
|
467 |
<sort_order>6</sort_order>
|
468 |
<show_in_default>1</show_in_default>
|
@@ -476,15 +450,14 @@
|
|
476 |
</depends>
|
477 |
<label>Beschikbaarheid per land</label>
|
478 |
<frontend_type>allowspecific</frontend_type>
|
479 |
-
<source_model>adminhtml/system_config_source_payment_allspecificcountries
|
480 |
-
</source_model>
|
481 |
<sort_order>7</sort_order>
|
482 |
<show_in_default>1</show_in_default>
|
483 |
<show_in_website>1</show_in_website>
|
484 |
<show_in_store>1</show_in_store>
|
485 |
<config_path>payment/pay_payment_afterpay/allowspecific</config_path>
|
486 |
</allowspecific>
|
487 |
-
<specificcountry translate="label">
|
488 |
<depends>
|
489 |
<active>1</active>
|
490 |
<allowspecific>1</allowspecific>
|
@@ -499,15 +472,12 @@
|
|
499 |
<comment>Selecteer de landen waarvoor deze betaalmethode beschikbaar is</comment>
|
500 |
<config_path>payment/pay_payment_afterpay/specificcountry</config_path>
|
501 |
</specificcountry>
|
502 |
-
<limit_shipping translate="label">
|
503 |
<depends>
|
504 |
<active>1</active>
|
505 |
</depends>
|
506 |
<label>Verzendmethoden blokkeren</label>
|
507 |
-
<comment>
|
508 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
509 |
-
verzendmethoden
|
510 |
-
</comment>
|
511 |
<frontend_type>select</frontend_type>
|
512 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
513 |
<sort_order>9</sort_order>
|
@@ -516,14 +486,12 @@
|
|
516 |
<show_in_store>1</show_in_store>
|
517 |
<config_path>payment/pay_payment_afterpay/limit_shipping</config_path>
|
518 |
</limit_shipping>
|
519 |
-
<disabled_shippingmethods>
|
520 |
<depends>
|
521 |
<active>1</active>
|
522 |
<limit_shipping>1</limit_shipping>
|
523 |
</depends>
|
524 |
-
<comment>
|
525 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
526 |
-
</comment>
|
527 |
<label>Geblokkeerde verzendmethoden</label>
|
528 |
<frontend_type>multiselect</frontend_type>
|
529 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -533,7 +501,7 @@
|
|
533 |
<show_in_store>1</show_in_store>
|
534 |
<config_path>payment/pay_payment_afterpay/disabled_shippingmethods</config_path>
|
535 |
</disabled_shippingmethods>
|
536 |
-
<order_status translate="label">
|
537 |
<depends>
|
538 |
<active>1</active>
|
539 |
</depends>
|
@@ -547,7 +515,7 @@
|
|
547 |
<show_in_store>1</show_in_store>
|
548 |
<config_path>payment/pay_payment_afterpay/order_status</config_path>
|
549 |
</order_status>
|
550 |
-
<order_status_success translate="label">
|
551 |
<depends>
|
552 |
<active>1</active>
|
553 |
</depends>
|
@@ -561,16 +529,12 @@
|
|
561 |
<show_in_store>1</show_in_store>
|
562 |
<config_path>payment/pay_payment_afterpay/order_status_success</config_path>
|
563 |
</order_status_success>
|
564 |
-
<charge_type translate="label">
|
565 |
<depends>
|
566 |
<active>1</active>
|
567 |
</depends>
|
568 |
<label>Extra kosten rekenen</label>
|
569 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
570 |
-
van
|
571 |
-
het
|
572 |
-
totaalbedrag of een vast bedrag
|
573 |
-
</comment>
|
574 |
<frontend_type>select</frontend_type>
|
575 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
576 |
<sort_order>200</sort_order>
|
@@ -584,10 +548,7 @@
|
|
584 |
<active>1</active>
|
585 |
</depends>
|
586 |
<label>Extra kosten</label>
|
587 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
588 |
-
decimalen,
|
589 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
590 |
-
</comment>
|
591 |
<frontend_type>text</frontend_type>
|
592 |
<sort_order>201</sort_order>
|
593 |
<show_in_default>1</show_in_default>
|
@@ -646,7 +607,7 @@
|
|
646 |
<show_in_website>1</show_in_website>
|
647 |
<show_in_store>1</show_in_store>
|
648 |
<fields>
|
649 |
-
<active translate="label">
|
650 |
<label>Actief</label>
|
651 |
<comment>Wilt u deze betaalmethode gebruiken</comment>
|
652 |
<sort_order>1</sort_order>
|
@@ -681,13 +642,12 @@
|
|
681 |
<show_in_store>1</show_in_store>
|
682 |
<config_path>payment/pay_payment_afterpayem/sort_order</config_path>
|
683 |
</sort_order>
|
684 |
-
<min_order_total translate="label">
|
685 |
<depends>
|
686 |
<active>1</active>
|
687 |
</depends>
|
688 |
<label>Minimum bedrag</label>
|
689 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
690 |
-
</comment>
|
691 |
<frontend_type>text</frontend_type>
|
692 |
<sort_order>5</sort_order>
|
693 |
<show_in_default>1</show_in_default>
|
@@ -695,13 +655,12 @@
|
|
695 |
<show_in_store>1</show_in_store>
|
696 |
<config_path>payment/pay_payment_afterpayem/min_order_total</config_path>
|
697 |
</min_order_total>
|
698 |
-
<max_order_total translate="label">
|
699 |
<depends>
|
700 |
<active>1</active>
|
701 |
</depends>
|
702 |
<label>Maximum bedrag</label>
|
703 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
704 |
-
</comment>
|
705 |
<frontend_type>text</frontend_type>
|
706 |
<sort_order>6</sort_order>
|
707 |
<show_in_default>1</show_in_default>
|
@@ -723,7 +682,7 @@
|
|
723 |
<show_in_store>1</show_in_store>
|
724 |
<config_path>payment/pay_payment_afterpayem/allowspecific</config_path>
|
725 |
</allowspecific>
|
726 |
-
<specificcountry translate="label">
|
727 |
<depends>
|
728 |
<active>1</active>
|
729 |
<allowspecific>1</allowspecific>
|
@@ -738,15 +697,12 @@
|
|
738 |
<comment>Selecteer de landen waarvoor deze betaalmethode beschikbaar is</comment>
|
739 |
<config_path>payment/pay_payment_afterpayem/specificcountry</config_path>
|
740 |
</specificcountry>
|
741 |
-
<limit_shipping translate="label">
|
742 |
<depends>
|
743 |
<active>1</active>
|
744 |
</depends>
|
745 |
<label>Verzendmethoden blokkeren</label>
|
746 |
-
<comment>
|
747 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
748 |
-
verzendmethoden
|
749 |
-
</comment>
|
750 |
<frontend_type>select</frontend_type>
|
751 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
752 |
<sort_order>9</sort_order>
|
@@ -755,14 +711,12 @@
|
|
755 |
<show_in_store>1</show_in_store>
|
756 |
<config_path>payment/pay_payment_afterpayem/limit_shipping</config_path>
|
757 |
</limit_shipping>
|
758 |
-
<disabled_shippingmethods>
|
759 |
<depends>
|
760 |
<active>1</active>
|
761 |
<limit_shipping>1</limit_shipping>
|
762 |
</depends>
|
763 |
-
<comment>
|
764 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
765 |
-
</comment>
|
766 |
<label>Geblokkeerde verzendmethoden</label>
|
767 |
<frontend_type>multiselect</frontend_type>
|
768 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -772,7 +726,7 @@
|
|
772 |
<show_in_store>1</show_in_store>
|
773 |
<config_path>payment/pay_payment_afterpayem/disabled_shippingmethods</config_path>
|
774 |
</disabled_shippingmethods>
|
775 |
-
<order_status translate="label">
|
776 |
<depends>
|
777 |
<active>1</active>
|
778 |
</depends>
|
@@ -786,7 +740,7 @@
|
|
786 |
<show_in_store>1</show_in_store>
|
787 |
<config_path>payment/pay_payment_afterpayem/order_status</config_path>
|
788 |
</order_status>
|
789 |
-
<order_status_success translate="label">
|
790 |
<depends>
|
791 |
<active>1</active>
|
792 |
</depends>
|
@@ -800,16 +754,12 @@
|
|
800 |
<show_in_store>1</show_in_store>
|
801 |
<config_path>payment/pay_payment_afterpayem/order_status_success</config_path>
|
802 |
</order_status_success>
|
803 |
-
<charge_type translate="label">
|
804 |
<depends>
|
805 |
<active>1</active>
|
806 |
</depends>
|
807 |
<label>Extra kosten rekenen</label>
|
808 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
809 |
-
van
|
810 |
-
het
|
811 |
-
totaalbedrag of een vast bedrag
|
812 |
-
</comment>
|
813 |
<frontend_type>select</frontend_type>
|
814 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
815 |
<sort_order>200</sort_order>
|
@@ -818,15 +768,12 @@
|
|
818 |
<show_in_store>1</show_in_store>
|
819 |
<config_path>payment/pay_payment_afterpayem/charge_type</config_path>
|
820 |
</charge_type>
|
821 |
-
<charge_value translate="label">
|
822 |
<depends>
|
823 |
<active>1</active>
|
824 |
</depends>
|
825 |
<label>Extra kosten</label>
|
826 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
827 |
-
decimalen,
|
828 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
829 |
-
</comment>
|
830 |
<frontend_type>text</frontend_type>
|
831 |
<sort_order>201</sort_order>
|
832 |
<show_in_default>1</show_in_default>
|
@@ -847,7 +794,7 @@
|
|
847 |
<show_in_store>1</show_in_store>
|
848 |
<config_path>payment/pay_payment_afterpayem/charge_tax_class</config_path>
|
849 |
</charge_tax_class>
|
850 |
-
<send_mail translate="label">
|
851 |
<depends>
|
852 |
<active>1</active>
|
853 |
</depends>
|
@@ -920,13 +867,12 @@
|
|
920 |
<show_in_store>1</show_in_store>
|
921 |
<config_path>payment/pay_payment_amex/sort_order</config_path>
|
922 |
</sort_order>
|
923 |
-
<min_order_total translate="label">
|
924 |
<depends>
|
925 |
<active>1</active>
|
926 |
</depends>
|
927 |
<label>Minimum bedrag</label>
|
928 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
929 |
-
</comment>
|
930 |
<frontend_type>text</frontend_type>
|
931 |
<sort_order>5</sort_order>
|
932 |
<show_in_default>1</show_in_default>
|
@@ -934,13 +880,12 @@
|
|
934 |
<show_in_store>1</show_in_store>
|
935 |
<config_path>payment/pay_payment_amex/min_order_total</config_path>
|
936 |
</min_order_total>
|
937 |
-
<max_order_total translate="label">
|
938 |
<depends>
|
939 |
<active>1</active>
|
940 |
</depends>
|
941 |
<label>Maximum bedrag</label>
|
942 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
943 |
-
</comment>
|
944 |
<frontend_type>text</frontend_type>
|
945 |
<sort_order>6</sort_order>
|
946 |
<show_in_default>1</show_in_default>
|
@@ -977,15 +922,12 @@
|
|
977 |
<comment>Selecteer de landen waarvoor deze betaalmethode beschikbaar is</comment>
|
978 |
<config_path>payment/pay_payment_amex/specificcountry</config_path>
|
979 |
</specificcountry>
|
980 |
-
<limit_shipping translate="label">
|
981 |
<depends>
|
982 |
<active>1</active>
|
983 |
</depends>
|
984 |
<label>Verzendmethoden blokkeren</label>
|
985 |
-
<comment>
|
986 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
987 |
-
verzendmethoden
|
988 |
-
</comment>
|
989 |
<frontend_type>select</frontend_type>
|
990 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
991 |
<sort_order>9</sort_order>
|
@@ -994,14 +936,12 @@
|
|
994 |
<show_in_store>1</show_in_store>
|
995 |
<config_path>payment/pay_payment_amex/limit_shipping</config_path>
|
996 |
</limit_shipping>
|
997 |
-
<disabled_shippingmethods>
|
998 |
<depends>
|
999 |
<active>1</active>
|
1000 |
<limit_shipping>1</limit_shipping>
|
1001 |
</depends>
|
1002 |
-
<comment>
|
1003 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
1004 |
-
</comment>
|
1005 |
<label>Geblokkeerde verzendmethoden</label>
|
1006 |
<frontend_type>multiselect</frontend_type>
|
1007 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -1044,10 +984,7 @@
|
|
1044 |
<active>1</active>
|
1045 |
</depends>
|
1046 |
<label>Extra kosten rekenen</label>
|
1047 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
1048 |
-
van
|
1049 |
-
het
|
1050 |
-
totaalbedrag of een vast bedrag
|
1051 |
</comment>
|
1052 |
<frontend_type>select</frontend_type>
|
1053 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
@@ -1062,10 +999,7 @@
|
|
1062 |
<active>1</active>
|
1063 |
</depends>
|
1064 |
<label>Extra kosten</label>
|
1065 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
1066 |
-
decimalen,
|
1067 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
1068 |
-
</comment>
|
1069 |
<frontend_type>text</frontend_type>
|
1070 |
<sort_order>201</sort_order>
|
1071 |
<show_in_default>1</show_in_default>
|
@@ -1164,8 +1098,7 @@
|
|
1164 |
<active>1</active>
|
1165 |
</depends>
|
1166 |
<label>Minimum bedrag</label>
|
1167 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
1168 |
-
</comment>
|
1169 |
<frontend_type>text</frontend_type>
|
1170 |
<sort_order>5</sort_order>
|
1171 |
<show_in_default>1</show_in_default>
|
@@ -1173,13 +1106,12 @@
|
|
1173 |
<show_in_store>1</show_in_store>
|
1174 |
<config_path>payment/pay_payment_billink/min_order_total</config_path>
|
1175 |
</min_order_total>
|
1176 |
-
<max_order_total translate="label">
|
1177 |
<depends>
|
1178 |
<active>1</active>
|
1179 |
</depends>
|
1180 |
<label>Maximum bedrag</label>
|
1181 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
1182 |
-
</comment>
|
1183 |
<frontend_type>text</frontend_type>
|
1184 |
<sort_order>6</sort_order>
|
1185 |
<show_in_default>1</show_in_default>
|
@@ -1187,14 +1119,12 @@
|
|
1187 |
<show_in_store>1</show_in_store>
|
1188 |
<config_path>payment/pay_payment_billink/max_order_total</config_path>
|
1189 |
</max_order_total>
|
1190 |
-
<ask_data_personal translate="label">
|
1191 |
<depends>
|
1192 |
<active>1</active>
|
1193 |
</depends>
|
1194 |
<label>Persoonlijk inschakelen</label>
|
1195 |
-
<comment>Geboortedatum vragen, zodat persoonlijke bestellingen rechtstreeks worden
|
1196 |
-
doorgestuurd zonder tussenscherm
|
1197 |
-
</comment>
|
1198 |
<frontend_type>select</frontend_type>
|
1199 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1200 |
<sort_order>7</sort_order>
|
@@ -1203,7 +1133,7 @@
|
|
1203 |
<show_in_store>1</show_in_store>
|
1204 |
<config_path>payment/pay_payment_billink/ask_data_personal</config_path>
|
1205 |
</ask_data_personal>
|
1206 |
-
<ask_data_business translate="label">
|
1207 |
<depends>
|
1208 |
<active>1</active>
|
1209 |
</depends>
|
@@ -1246,15 +1176,12 @@
|
|
1246 |
<comment>Selecteer de landen waarvoor deze betaalmethode beschikbaar is</comment>
|
1247 |
<config_path>payment/pay_payment_billink/specificcountry</config_path>
|
1248 |
</specificcountry>
|
1249 |
-
<limit_shipping translate="label">
|
1250 |
<depends>
|
1251 |
<active>1</active>
|
1252 |
</depends>
|
1253 |
<label>Verzendmethoden blokkeren</label>
|
1254 |
-
<comment>
|
1255 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
1256 |
-
verzendmethoden
|
1257 |
-
</comment>
|
1258 |
<frontend_type>select</frontend_type>
|
1259 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1260 |
<sort_order>9</sort_order>
|
@@ -1268,9 +1195,7 @@
|
|
1268 |
<active>1</active>
|
1269 |
<limit_shipping>1</limit_shipping>
|
1270 |
</depends>
|
1271 |
-
<comment>
|
1272 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
1273 |
-
</comment>
|
1274 |
<label>Geblokkeerde verzendmethoden</label>
|
1275 |
<frontend_type>multiselect</frontend_type>
|
1276 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -1313,11 +1238,7 @@
|
|
1313 |
<active>1</active>
|
1314 |
</depends>
|
1315 |
<label>Extra kosten rekenen</label>
|
1316 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
1317 |
-
van
|
1318 |
-
het
|
1319 |
-
totaalbedrag of een vast bedrag
|
1320 |
-
</comment>
|
1321 |
<frontend_type>select</frontend_type>
|
1322 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
1323 |
<sort_order>200</sort_order>
|
@@ -1331,10 +1252,7 @@
|
|
1331 |
<active>1</active>
|
1332 |
</depends>
|
1333 |
<label>Extra kosten</label>
|
1334 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
1335 |
-
decimalen,
|
1336 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
1337 |
-
</comment>
|
1338 |
<frontend_type>text</frontend_type>
|
1339 |
<sort_order>201</sort_order>
|
1340 |
<show_in_default>1</show_in_default>
|
@@ -1428,13 +1346,12 @@
|
|
1428 |
<show_in_store>1</show_in_store>
|
1429 |
<config_path>payment/pay_payment_bitcoin/sort_order</config_path>
|
1430 |
</sort_order>
|
1431 |
-
<min_order_total translate="label">
|
1432 |
<depends>
|
1433 |
<active>1</active>
|
1434 |
</depends>
|
1435 |
<label>Minimum bedrag</label>
|
1436 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
1437 |
-
</comment>
|
1438 |
<frontend_type>text</frontend_type>
|
1439 |
<sort_order>5</sort_order>
|
1440 |
<show_in_default>1</show_in_default>
|
@@ -1442,13 +1359,12 @@
|
|
1442 |
<show_in_store>1</show_in_store>
|
1443 |
<config_path>payment/pay_payment_bitcoin/min_order_total</config_path>
|
1444 |
</min_order_total>
|
1445 |
-
<max_order_total translate="label">
|
1446 |
<depends>
|
1447 |
<active>1</active>
|
1448 |
</depends>
|
1449 |
<label>Maximum bedrag</label>
|
1450 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
1451 |
-
</comment>
|
1452 |
<frontend_type>text</frontend_type>
|
1453 |
<sort_order>6</sort_order>
|
1454 |
<show_in_default>1</show_in_default>
|
@@ -1490,10 +1406,7 @@
|
|
1490 |
<active>1</active>
|
1491 |
</depends>
|
1492 |
<label>Verzendmethoden blokkeren</label>
|
1493 |
-
<comment>
|
1494 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
1495 |
-
verzendmethoden
|
1496 |
-
</comment>
|
1497 |
<frontend_type>select</frontend_type>
|
1498 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1499 |
<sort_order>9</sort_order>
|
@@ -1507,9 +1420,7 @@
|
|
1507 |
<active>1</active>
|
1508 |
<limit_shipping>1</limit_shipping>
|
1509 |
</depends>
|
1510 |
-
<comment>
|
1511 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
1512 |
-
</comment>
|
1513 |
<label>Geblokkeerde verzendmethoden</label>
|
1514 |
<frontend_type>multiselect</frontend_type>
|
1515 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -1552,11 +1463,7 @@
|
|
1552 |
<active>1</active>
|
1553 |
</depends>
|
1554 |
<label>Extra kosten rekenen</label>
|
1555 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
1556 |
-
van
|
1557 |
-
het
|
1558 |
-
totaalbedrag of een vast bedrag
|
1559 |
-
</comment>
|
1560 |
<frontend_type>select</frontend_type>
|
1561 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
1562 |
<sort_order>200</sort_order>
|
@@ -1570,10 +1477,7 @@
|
|
1570 |
<active>1</active>
|
1571 |
</depends>
|
1572 |
<label>Extra kosten</label>
|
1573 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
1574 |
-
decimalen,
|
1575 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
1576 |
-
</comment>
|
1577 |
<frontend_type>text</frontend_type>
|
1578 |
<sort_order>201</sort_order>
|
1579 |
<show_in_default>1</show_in_default>
|
@@ -1667,13 +1571,12 @@
|
|
1667 |
<show_in_store>1</show_in_store>
|
1668 |
<config_path>payment/pay_payment_capayable/sort_order</config_path>
|
1669 |
</sort_order>
|
1670 |
-
<min_order_total translate="label">
|
1671 |
<depends>
|
1672 |
<active>1</active>
|
1673 |
</depends>
|
1674 |
<label>Minimum bedrag</label>
|
1675 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
1676 |
-
</comment>
|
1677 |
<frontend_type>text</frontend_type>
|
1678 |
<sort_order>5</sort_order>
|
1679 |
<show_in_default>1</show_in_default>
|
@@ -1729,10 +1632,7 @@
|
|
1729 |
<active>1</active>
|
1730 |
</depends>
|
1731 |
<label>Verzendmethoden blokkeren</label>
|
1732 |
-
<comment>
|
1733 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
1734 |
-
verzendmethoden
|
1735 |
-
</comment>
|
1736 |
<frontend_type>select</frontend_type>
|
1737 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1738 |
<sort_order>9</sort_order>
|
@@ -1746,9 +1646,7 @@
|
|
1746 |
<active>1</active>
|
1747 |
<limit_shipping>1</limit_shipping>
|
1748 |
</depends>
|
1749 |
-
<comment>
|
1750 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
1751 |
-
</comment>
|
1752 |
<label>Geblokkeerde verzendmethoden</label>
|
1753 |
<frontend_type>multiselect</frontend_type>
|
1754 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -1791,11 +1689,7 @@
|
|
1791 |
<active>1</active>
|
1792 |
</depends>
|
1793 |
<label>Extra kosten rekenen</label>
|
1794 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
1795 |
-
van
|
1796 |
-
het
|
1797 |
-
totaalbedrag of een vast bedrag
|
1798 |
-
</comment>
|
1799 |
<frontend_type>select</frontend_type>
|
1800 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
1801 |
<sort_order>200</sort_order>
|
@@ -1809,10 +1703,7 @@
|
|
1809 |
<active>1</active>
|
1810 |
</depends>
|
1811 |
<label>Extra kosten</label>
|
1812 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
1813 |
-
decimalen,
|
1814 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
1815 |
-
</comment>
|
1816 |
<frontend_type>text</frontend_type>
|
1817 |
<sort_order>201</sort_order>
|
1818 |
<show_in_default>1</show_in_default>
|
@@ -1907,13 +1798,12 @@
|
|
1907 |
<show_in_store>1</show_in_store>
|
1908 |
<config_path>payment/pay_payment_capayablegespreid/sort_order</config_path>
|
1909 |
</sort_order>
|
1910 |
-
<min_order_total translate="label">
|
1911 |
<depends>
|
1912 |
<active>1</active>
|
1913 |
</depends>
|
1914 |
<label>Minimum bedrag</label>
|
1915 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
1916 |
-
</comment>
|
1917 |
<frontend_type>text</frontend_type>
|
1918 |
<sort_order>5</sort_order>
|
1919 |
<show_in_default>1</show_in_default>
|
@@ -1969,10 +1859,7 @@
|
|
1969 |
<active>1</active>
|
1970 |
</depends>
|
1971 |
<label>Verzendmethoden blokkeren</label>
|
1972 |
-
<comment>
|
1973 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
1974 |
-
verzendmethoden
|
1975 |
-
</comment>
|
1976 |
<frontend_type>select</frontend_type>
|
1977 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1978 |
<sort_order>9</sort_order>
|
@@ -1986,9 +1873,7 @@
|
|
1986 |
<active>1</active>
|
1987 |
<limit_shipping>1</limit_shipping>
|
1988 |
</depends>
|
1989 |
-
<comment>
|
1990 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
1991 |
-
</comment>
|
1992 |
<label>Geblokkeerde verzendmethoden</label>
|
1993 |
<frontend_type>multiselect</frontend_type>
|
1994 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -2031,11 +1916,7 @@
|
|
2031 |
<active>1</active>
|
2032 |
</depends>
|
2033 |
<label>Extra kosten rekenen</label>
|
2034 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
2035 |
-
van
|
2036 |
-
het
|
2037 |
-
totaalbedrag of een vast bedrag
|
2038 |
-
</comment>
|
2039 |
<frontend_type>select</frontend_type>
|
2040 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
2041 |
<sort_order>200</sort_order>
|
@@ -2049,10 +1930,7 @@
|
|
2049 |
<active>1</active>
|
2050 |
</depends>
|
2051 |
<label>Extra kosten</label>
|
2052 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
2053 |
-
decimalen,
|
2054 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
2055 |
-
</comment>
|
2056 |
<frontend_type>text</frontend_type>
|
2057 |
<sort_order>201</sort_order>
|
2058 |
<show_in_default>1</show_in_default>
|
@@ -2146,13 +2024,12 @@
|
|
2146 |
<show_in_store>1</show_in_store>
|
2147 |
<config_path>payment/pay_payment_cartebleue/sort_order</config_path>
|
2148 |
</sort_order>
|
2149 |
-
<min_order_total translate="label">
|
2150 |
<depends>
|
2151 |
<active>1</active>
|
2152 |
</depends>
|
2153 |
<label>Minimum bedrag</label>
|
2154 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
2155 |
-
</comment>
|
2156 |
<frontend_type>text</frontend_type>
|
2157 |
<sort_order>5</sort_order>
|
2158 |
<show_in_default>1</show_in_default>
|
@@ -2208,10 +2085,7 @@
|
|
2208 |
<active>1</active>
|
2209 |
</depends>
|
2210 |
<label>Verzendmethoden blokkeren</label>
|
2211 |
-
<comment>
|
2212 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
2213 |
-
verzendmethoden
|
2214 |
-
</comment>
|
2215 |
<frontend_type>select</frontend_type>
|
2216 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
2217 |
<sort_order>9</sort_order>
|
@@ -2225,9 +2099,7 @@
|
|
2225 |
<active>1</active>
|
2226 |
<limit_shipping>1</limit_shipping>
|
2227 |
</depends>
|
2228 |
-
<comment>
|
2229 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
2230 |
-
</comment>
|
2231 |
<label>Geblokkeerde verzendmethoden</label>
|
2232 |
<frontend_type>multiselect</frontend_type>
|
2233 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -2270,11 +2142,7 @@
|
|
2270 |
<active>1</active>
|
2271 |
</depends>
|
2272 |
<label>Extra kosten rekenen</label>
|
2273 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
2274 |
-
van
|
2275 |
-
het
|
2276 |
-
totaalbedrag of een vast bedrag
|
2277 |
-
</comment>
|
2278 |
<frontend_type>select</frontend_type>
|
2279 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
2280 |
<sort_order>200</sort_order>
|
@@ -2288,10 +2156,7 @@
|
|
2288 |
<active>1</active>
|
2289 |
</depends>
|
2290 |
<label>Extra kosten</label>
|
2291 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
2292 |
-
decimalen,
|
2293 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
2294 |
-
</comment>
|
2295 |
<frontend_type>text</frontend_type>
|
2296 |
<sort_order>201</sort_order>
|
2297 |
<show_in_default>1</show_in_default>
|
@@ -2385,13 +2250,12 @@
|
|
2385 |
<show_in_store>1</show_in_store>
|
2386 |
<config_path>payment/pay_payment_fashioncheque/sort_order</config_path>
|
2387 |
</sort_order>
|
2388 |
-
<min_order_total translate="label">
|
2389 |
<depends>
|
2390 |
<active>1</active>
|
2391 |
</depends>
|
2392 |
<label>Minimum bedrag</label>
|
2393 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
2394 |
-
</comment>
|
2395 |
<frontend_type>text</frontend_type>
|
2396 |
<sort_order>5</sort_order>
|
2397 |
<show_in_default>1</show_in_default>
|
@@ -2447,10 +2311,7 @@
|
|
2447 |
<active>1</active>
|
2448 |
</depends>
|
2449 |
<label>Verzendmethoden blokkeren</label>
|
2450 |
-
<comment>
|
2451 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
2452 |
-
verzendmethoden
|
2453 |
-
</comment>
|
2454 |
<frontend_type>select</frontend_type>
|
2455 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
2456 |
<sort_order>9</sort_order>
|
@@ -2464,9 +2325,7 @@
|
|
2464 |
<active>1</active>
|
2465 |
<limit_shipping>1</limit_shipping>
|
2466 |
</depends>
|
2467 |
-
<comment>
|
2468 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
2469 |
-
</comment>
|
2470 |
<label>Geblokkeerde verzendmethoden</label>
|
2471 |
<frontend_type>multiselect</frontend_type>
|
2472 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -2509,11 +2368,7 @@
|
|
2509 |
<active>1</active>
|
2510 |
</depends>
|
2511 |
<label>Extra kosten rekenen</label>
|
2512 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
2513 |
-
van
|
2514 |
-
het
|
2515 |
-
totaalbedrag of een vast bedrag
|
2516 |
-
</comment>
|
2517 |
<frontend_type>select</frontend_type>
|
2518 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
2519 |
<sort_order>200</sort_order>
|
@@ -2527,10 +2382,7 @@
|
|
2527 |
<active>1</active>
|
2528 |
</depends>
|
2529 |
<label>Extra kosten</label>
|
2530 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
2531 |
-
decimalen,
|
2532 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
2533 |
-
</comment>
|
2534 |
<frontend_type>text</frontend_type>
|
2535 |
<sort_order>201</sort_order>
|
2536 |
<show_in_default>1</show_in_default>
|
@@ -2624,13 +2476,12 @@
|
|
2624 |
<show_in_store>1</show_in_store>
|
2625 |
<config_path>payment/pay_payment_fashiongiftcard/sort_order</config_path>
|
2626 |
</sort_order>
|
2627 |
-
<min_order_total translate="label">
|
2628 |
<depends>
|
2629 |
<active>1</active>
|
2630 |
</depends>
|
2631 |
<label>Minimum bedrag</label>
|
2632 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
2633 |
-
</comment>
|
2634 |
<frontend_type>text</frontend_type>
|
2635 |
<sort_order>5</sort_order>
|
2636 |
<show_in_default>1</show_in_default>
|
@@ -2686,10 +2537,7 @@
|
|
2686 |
<active>1</active>
|
2687 |
</depends>
|
2688 |
<label>Verzendmethoden blokkeren</label>
|
2689 |
-
<comment>
|
2690 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
2691 |
-
verzendmethoden
|
2692 |
-
</comment>
|
2693 |
<frontend_type>select</frontend_type>
|
2694 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
2695 |
<sort_order>9</sort_order>
|
@@ -2703,9 +2551,7 @@
|
|
2703 |
<active>1</active>
|
2704 |
<limit_shipping>1</limit_shipping>
|
2705 |
</depends>
|
2706 |
-
<comment>
|
2707 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
2708 |
-
</comment>
|
2709 |
<label>Geblokkeerde verzendmethoden</label>
|
2710 |
<frontend_type>multiselect</frontend_type>
|
2711 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -2748,11 +2594,7 @@
|
|
2748 |
<active>1</active>
|
2749 |
</depends>
|
2750 |
<label>Extra kosten rekenen</label>
|
2751 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
2752 |
-
van
|
2753 |
-
het
|
2754 |
-
totaalbedrag of een vast bedrag
|
2755 |
-
</comment>
|
2756 |
<frontend_type>select</frontend_type>
|
2757 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
2758 |
<sort_order>200</sort_order>
|
@@ -2766,10 +2608,7 @@
|
|
2766 |
<active>1</active>
|
2767 |
</depends>
|
2768 |
<label>Extra kosten</label>
|
2769 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
2770 |
-
decimalen,
|
2771 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
2772 |
-
</comment>
|
2773 |
<frontend_type>text</frontend_type>
|
2774 |
<sort_order>201</sort_order>
|
2775 |
<show_in_default>1</show_in_default>
|
@@ -2863,13 +2702,12 @@
|
|
2863 |
<show_in_store>1</show_in_store>
|
2864 |
<config_path>payment/pay_payment_focum/sort_order</config_path>
|
2865 |
</sort_order>
|
2866 |
-
<min_order_total translate="label">
|
2867 |
<depends>
|
2868 |
<active>1</active>
|
2869 |
</depends>
|
2870 |
<label>Minimum bedrag</label>
|
2871 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
2872 |
-
</comment>
|
2873 |
<frontend_type>text</frontend_type>
|
2874 |
<sort_order>5</sort_order>
|
2875 |
<show_in_default>1</show_in_default>
|
@@ -2925,10 +2763,7 @@
|
|
2925 |
<active>1</active>
|
2926 |
</depends>
|
2927 |
<label>Verzendmethoden blokkeren</label>
|
2928 |
-
<comment>
|
2929 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
2930 |
-
verzendmethoden
|
2931 |
-
</comment>
|
2932 |
<frontend_type>select</frontend_type>
|
2933 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
2934 |
<sort_order>9</sort_order>
|
@@ -2942,9 +2777,7 @@
|
|
2942 |
<active>1</active>
|
2943 |
<limit_shipping>1</limit_shipping>
|
2944 |
</depends>
|
2945 |
-
<comment>
|
2946 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
2947 |
-
</comment>
|
2948 |
<label>Geblokkeerde verzendmethoden</label>
|
2949 |
<frontend_type>multiselect</frontend_type>
|
2950 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -2987,11 +2820,7 @@
|
|
2987 |
<active>1</active>
|
2988 |
</depends>
|
2989 |
<label>Extra kosten rekenen</label>
|
2990 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
2991 |
-
van
|
2992 |
-
het
|
2993 |
-
totaalbedrag of een vast bedrag
|
2994 |
-
</comment>
|
2995 |
<frontend_type>select</frontend_type>
|
2996 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
2997 |
<sort_order>200</sort_order>
|
@@ -3005,10 +2834,7 @@
|
|
3005 |
<active>1</active>
|
3006 |
</depends>
|
3007 |
<label>Extra kosten</label>
|
3008 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
3009 |
-
decimalen,
|
3010 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
3011 |
-
</comment>
|
3012 |
<frontend_type>text</frontend_type>
|
3013 |
<sort_order>201</sort_order>
|
3014 |
<show_in_default>1</show_in_default>
|
@@ -3102,13 +2928,12 @@
|
|
3102 |
<show_in_store>1</show_in_store>
|
3103 |
<config_path>payment/pay_payment_gezondheidsbon/sort_order</config_path>
|
3104 |
</sort_order>
|
3105 |
-
<min_order_total translate="label">
|
3106 |
<depends>
|
3107 |
<active>1</active>
|
3108 |
</depends>
|
3109 |
<label>Minimum bedrag</label>
|
3110 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
3111 |
-
</comment>
|
3112 |
<frontend_type>text</frontend_type>
|
3113 |
<sort_order>5</sort_order>
|
3114 |
<show_in_default>1</show_in_default>
|
@@ -3164,10 +2989,7 @@
|
|
3164 |
<active>1</active>
|
3165 |
</depends>
|
3166 |
<label>Verzendmethoden blokkeren</label>
|
3167 |
-
<comment>
|
3168 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
3169 |
-
verzendmethoden
|
3170 |
-
</comment>
|
3171 |
<frontend_type>select</frontend_type>
|
3172 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
3173 |
<sort_order>9</sort_order>
|
@@ -3181,9 +3003,7 @@
|
|
3181 |
<active>1</active>
|
3182 |
<limit_shipping>1</limit_shipping>
|
3183 |
</depends>
|
3184 |
-
<comment>
|
3185 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
3186 |
-
</comment>
|
3187 |
<label>Geblokkeerde verzendmethoden</label>
|
3188 |
<frontend_type>multiselect</frontend_type>
|
3189 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -3226,11 +3046,7 @@
|
|
3226 |
<active>1</active>
|
3227 |
</depends>
|
3228 |
<label>Extra kosten rekenen</label>
|
3229 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
3230 |
-
van
|
3231 |
-
het
|
3232 |
-
totaalbedrag of een vast bedrag
|
3233 |
-
</comment>
|
3234 |
<frontend_type>select</frontend_type>
|
3235 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
3236 |
<sort_order>200</sort_order>
|
@@ -3244,10 +3060,7 @@
|
|
3244 |
<active>1</active>
|
3245 |
</depends>
|
3246 |
<label>Extra kosten</label>
|
3247 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
3248 |
-
decimalen,
|
3249 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
3250 |
-
</comment>
|
3251 |
<frontend_type>text</frontend_type>
|
3252 |
<sort_order>201</sort_order>
|
3253 |
<show_in_default>1</show_in_default>
|
@@ -3341,13 +3154,12 @@
|
|
3341 |
<show_in_store>1</show_in_store>
|
3342 |
<config_path>payment/pay_payment_giropay/sort_order</config_path>
|
3343 |
</sort_order>
|
3344 |
-
<min_order_total translate="label">
|
3345 |
<depends>
|
3346 |
<active>1</active>
|
3347 |
</depends>
|
3348 |
<label>Minimum bedrag</label>
|
3349 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
3350 |
-
</comment>
|
3351 |
<frontend_type>text</frontend_type>
|
3352 |
<sort_order>5</sort_order>
|
3353 |
<show_in_default>1</show_in_default>
|
@@ -3403,10 +3215,7 @@
|
|
3403 |
<active>1</active>
|
3404 |
</depends>
|
3405 |
<label>Verzendmethoden blokkeren</label>
|
3406 |
-
<comment>
|
3407 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
3408 |
-
verzendmethoden
|
3409 |
-
</comment>
|
3410 |
<frontend_type>select</frontend_type>
|
3411 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
3412 |
<sort_order>9</sort_order>
|
@@ -3420,9 +3229,7 @@
|
|
3420 |
<active>1</active>
|
3421 |
<limit_shipping>1</limit_shipping>
|
3422 |
</depends>
|
3423 |
-
<comment>
|
3424 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
3425 |
-
</comment>
|
3426 |
<label>Geblokkeerde verzendmethoden</label>
|
3427 |
<frontend_type>multiselect</frontend_type>
|
3428 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -3465,11 +3272,7 @@
|
|
3465 |
<active>1</active>
|
3466 |
</depends>
|
3467 |
<label>Extra kosten rekenen</label>
|
3468 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
3469 |
-
van
|
3470 |
-
het
|
3471 |
-
totaalbedrag of een vast bedrag
|
3472 |
-
</comment>
|
3473 |
<frontend_type>select</frontend_type>
|
3474 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
3475 |
<sort_order>200</sort_order>
|
@@ -3483,10 +3286,7 @@
|
|
3483 |
<active>1</active>
|
3484 |
</depends>
|
3485 |
<label>Extra kosten</label>
|
3486 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
3487 |
-
decimalen,
|
3488 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
3489 |
-
</comment>
|
3490 |
<frontend_type>text</frontend_type>
|
3491 |
<sort_order>201</sort_order>
|
3492 |
<show_in_default>1</show_in_default>
|
@@ -3580,13 +3380,12 @@
|
|
3580 |
<show_in_store>1</show_in_store>
|
3581 |
<config_path>payment/pay_payment_givacard/sort_order</config_path>
|
3582 |
</sort_order>
|
3583 |
-
<min_order_total translate="label">
|
3584 |
<depends>
|
3585 |
<active>1</active>
|
3586 |
</depends>
|
3587 |
<label>Minimum bedrag</label>
|
3588 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
3589 |
-
</comment>
|
3590 |
<frontend_type>text</frontend_type>
|
3591 |
<sort_order>5</sort_order>
|
3592 |
<show_in_default>1</show_in_default>
|
@@ -3642,10 +3441,7 @@
|
|
3642 |
<active>1</active>
|
3643 |
</depends>
|
3644 |
<label>Verzendmethoden blokkeren</label>
|
3645 |
-
<comment>
|
3646 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
3647 |
-
verzendmethoden
|
3648 |
-
</comment>
|
3649 |
<frontend_type>select</frontend_type>
|
3650 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
3651 |
<sort_order>9</sort_order>
|
@@ -3659,9 +3455,7 @@
|
|
3659 |
<active>1</active>
|
3660 |
<limit_shipping>1</limit_shipping>
|
3661 |
</depends>
|
3662 |
-
<comment>
|
3663 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
3664 |
-
</comment>
|
3665 |
<label>Geblokkeerde verzendmethoden</label>
|
3666 |
<frontend_type>multiselect</frontend_type>
|
3667 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -3704,11 +3498,7 @@
|
|
3704 |
<active>1</active>
|
3705 |
</depends>
|
3706 |
<label>Extra kosten rekenen</label>
|
3707 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
3708 |
-
van
|
3709 |
-
het
|
3710 |
-
totaalbedrag of een vast bedrag
|
3711 |
-
</comment>
|
3712 |
<frontend_type>select</frontend_type>
|
3713 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
3714 |
<sort_order>200</sort_order>
|
@@ -3722,10 +3512,7 @@
|
|
3722 |
<active>1</active>
|
3723 |
</depends>
|
3724 |
<label>Extra kosten</label>
|
3725 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
3726 |
-
decimalen,
|
3727 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
3728 |
-
</comment>
|
3729 |
<frontend_type>text</frontend_type>
|
3730 |
<sort_order>201</sort_order>
|
3731 |
<show_in_default>1</show_in_default>
|
@@ -3812,10 +3599,7 @@
|
|
3812 |
<active>1</active>
|
3813 |
</depends>
|
3814 |
<label>Bank selectie type</label>
|
3815 |
-
<comment>Kies of je de bankselectie met een selectbox of met radiobuttons wilt
|
3816 |
-
weergeven
|
3817 |
-
in
|
3818 |
-
checkout
|
3819 |
</comment>
|
3820 |
<frontend_type>select</frontend_type>
|
3821 |
<source_model>pay_payment/source_paymentmethod_ideal_selecttype</source_model>
|
@@ -3849,13 +3633,12 @@
|
|
3849 |
<show_in_store>1</show_in_store>
|
3850 |
<config_path>payment/pay_payment_ideal/sort_order</config_path>
|
3851 |
</sort_order>
|
3852 |
-
<min_order_total translate="label">
|
3853 |
<depends>
|
3854 |
<active>1</active>
|
3855 |
</depends>
|
3856 |
<label>Minimum bedrag</label>
|
3857 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
3858 |
-
</comment>
|
3859 |
<frontend_type>text</frontend_type>
|
3860 |
<sort_order>6</sort_order>
|
3861 |
<show_in_default>1</show_in_default>
|
@@ -3863,13 +3646,12 @@
|
|
3863 |
<show_in_store>1</show_in_store>
|
3864 |
<config_path>payment/pay_payment_ideal/min_order_total</config_path>
|
3865 |
</min_order_total>
|
3866 |
-
<max_order_total translate="label">
|
3867 |
<depends>
|
3868 |
<active>1</active>
|
3869 |
</depends>
|
3870 |
<label>Maximum bedrag</label>
|
3871 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
3872 |
-
</comment>
|
3873 |
<frontend_type>text</frontend_type>
|
3874 |
<sort_order>7</sort_order>
|
3875 |
<show_in_default>1</show_in_default>
|
@@ -3911,10 +3693,7 @@
|
|
3911 |
<active>1</active>
|
3912 |
</depends>
|
3913 |
<label>Verzendmethoden blokkeren</label>
|
3914 |
-
<comment>
|
3915 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
3916 |
-
verzendmethoden
|
3917 |
-
</comment>
|
3918 |
<frontend_type>select</frontend_type>
|
3919 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
3920 |
<sort_order>9</sort_order>
|
@@ -3928,9 +3707,7 @@
|
|
3928 |
<active>1</active>
|
3929 |
<limit_shipping>1</limit_shipping>
|
3930 |
</depends>
|
3931 |
-
<comment>
|
3932 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
3933 |
-
</comment>
|
3934 |
<label>Geblokkeerde verzendmethoden</label>
|
3935 |
<frontend_type>multiselect</frontend_type>
|
3936 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -3973,11 +3750,7 @@
|
|
3973 |
<active>1</active>
|
3974 |
</depends>
|
3975 |
<label>Extra kosten rekenen</label>
|
3976 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
3977 |
-
van
|
3978 |
-
het
|
3979 |
-
totaalbedrag of een vast bedrag
|
3980 |
-
</comment>
|
3981 |
<frontend_type>select</frontend_type>
|
3982 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
3983 |
<sort_order>200</sort_order>
|
@@ -3991,10 +3764,7 @@
|
|
3991 |
<active>1</active>
|
3992 |
</depends>
|
3993 |
<label>Extra kosten</label>
|
3994 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
3995 |
-
decimalen,
|
3996 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
3997 |
-
</comment>
|
3998 |
<frontend_type>text</frontend_type>
|
3999 |
<sort_order>201</sort_order>
|
4000 |
<show_in_default>1</show_in_default>
|
@@ -4088,13 +3858,12 @@
|
|
4088 |
<show_in_store>1</show_in_store>
|
4089 |
<config_path>payment/pay_payment_incasso/sort_order</config_path>
|
4090 |
</sort_order>
|
4091 |
-
<min_order_total translate="label">
|
4092 |
<depends>
|
4093 |
<active>1</active>
|
4094 |
</depends>
|
4095 |
<label>Minimum bedrag</label>
|
4096 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
4097 |
-
</comment>
|
4098 |
<frontend_type>text</frontend_type>
|
4099 |
<sort_order>5</sort_order>
|
4100 |
<show_in_default>1</show_in_default>
|
@@ -4102,13 +3871,12 @@
|
|
4102 |
<show_in_store>1</show_in_store>
|
4103 |
<config_path>payment/pay_payment_incasso/min_order_total</config_path>
|
4104 |
</min_order_total>
|
4105 |
-
<max_order_total translate="label">
|
4106 |
<depends>
|
4107 |
<active>1</active>
|
4108 |
</depends>
|
4109 |
<label>Maximum bedrag</label>
|
4110 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
4111 |
-
</comment>
|
4112 |
<frontend_type>text</frontend_type>
|
4113 |
<sort_order>6</sort_order>
|
4114 |
<show_in_default>1</show_in_default>
|
@@ -4150,10 +3918,7 @@
|
|
4150 |
<active>1</active>
|
4151 |
</depends>
|
4152 |
<label>Verzendmethoden blokkeren</label>
|
4153 |
-
<comment>
|
4154 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
4155 |
-
verzendmethoden
|
4156 |
-
</comment>
|
4157 |
<frontend_type>select</frontend_type>
|
4158 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4159 |
<sort_order>9</sort_order>
|
@@ -4167,9 +3932,7 @@
|
|
4167 |
<active>1</active>
|
4168 |
<limit_shipping>1</limit_shipping>
|
4169 |
</depends>
|
4170 |
-
<comment>
|
4171 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
4172 |
-
</comment>
|
4173 |
<label>Geblokkeerde verzendmethoden</label>
|
4174 |
<frontend_type>multiselect</frontend_type>
|
4175 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -4212,11 +3975,7 @@
|
|
4212 |
<active>1</active>
|
4213 |
</depends>
|
4214 |
<label>Extra kosten rekenen</label>
|
4215 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
4216 |
-
van
|
4217 |
-
het
|
4218 |
-
totaalbedrag of een vast bedrag
|
4219 |
-
</comment>
|
4220 |
<frontend_type>select</frontend_type>
|
4221 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
4222 |
<sort_order>200</sort_order>
|
@@ -4230,10 +3989,7 @@
|
|
4230 |
<active>1</active>
|
4231 |
</depends>
|
4232 |
<label>Extra kosten</label>
|
4233 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
4234 |
-
decimalen,
|
4235 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
4236 |
-
</comment>
|
4237 |
<frontend_type>text</frontend_type>
|
4238 |
<sort_order>201</sort_order>
|
4239 |
<show_in_default>1</show_in_default>
|
@@ -4341,13 +4097,12 @@
|
|
4341 |
<show_in_store>1</show_in_store>
|
4342 |
<config_path>payment/pay_payment_instore/sort_order</config_path>
|
4343 |
</sort_order>
|
4344 |
-
<min_order_total translate="label">
|
4345 |
<depends>
|
4346 |
<active>1</active>
|
4347 |
</depends>
|
4348 |
<label>Minimum bedrag</label>
|
4349 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
4350 |
-
</comment>
|
4351 |
<frontend_type>text</frontend_type>
|
4352 |
<sort_order>5</sort_order>
|
4353 |
<show_in_default>1</show_in_default>
|
@@ -4355,13 +4110,12 @@
|
|
4355 |
<show_in_store>1</show_in_store>
|
4356 |
<config_path>payment/pay_payment_instore/min_order_total</config_path>
|
4357 |
</min_order_total>
|
4358 |
-
<max_order_total translate="label">
|
4359 |
<depends>
|
4360 |
<active>1</active>
|
4361 |
</depends>
|
4362 |
<label>Maximum bedrag</label>
|
4363 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
4364 |
-
</comment>
|
4365 |
<frontend_type>text</frontend_type>
|
4366 |
<sort_order>6</sort_order>
|
4367 |
<show_in_default>1</show_in_default>
|
@@ -4403,10 +4157,7 @@
|
|
4403 |
<active>1</active>
|
4404 |
</depends>
|
4405 |
<label>Verzendmethoden blokkeren</label>
|
4406 |
-
<comment>
|
4407 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
4408 |
-
verzendmethoden
|
4409 |
-
</comment>
|
4410 |
<frontend_type>select</frontend_type>
|
4411 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4412 |
<sort_order>9</sort_order>
|
@@ -4420,9 +4171,7 @@
|
|
4420 |
<active>1</active>
|
4421 |
<limit_shipping>1</limit_shipping>
|
4422 |
</depends>
|
4423 |
-
<comment>
|
4424 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
4425 |
-
</comment>
|
4426 |
<label>Geblokkeerde verzendmethoden</label>
|
4427 |
<frontend_type>multiselect</frontend_type>
|
4428 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -4465,11 +4214,7 @@
|
|
4465 |
<active>1</active>
|
4466 |
</depends>
|
4467 |
<label>Extra kosten rekenen</label>
|
4468 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
4469 |
-
van
|
4470 |
-
het
|
4471 |
-
totaalbedrag of een vast bedrag
|
4472 |
-
</comment>
|
4473 |
<frontend_type>select</frontend_type>
|
4474 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
4475 |
<sort_order>200</sort_order>
|
@@ -4483,10 +4228,7 @@
|
|
4483 |
<active>1</active>
|
4484 |
</depends>
|
4485 |
<label>Extra kosten</label>
|
4486 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
4487 |
-
decimalen,
|
4488 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
4489 |
-
</comment>
|
4490 |
<frontend_type>text</frontend_type>
|
4491 |
<sort_order>201</sort_order>
|
4492 |
<show_in_default>1</show_in_default>
|
@@ -4580,13 +4322,12 @@
|
|
4580 |
<show_in_store>1</show_in_store>
|
4581 |
<config_path>payment/pay_payment_klarna/sort_order</config_path>
|
4582 |
</sort_order>
|
4583 |
-
<min_order_total translate="label">
|
4584 |
<depends>
|
4585 |
<active>1</active>
|
4586 |
</depends>
|
4587 |
<label>Minimum bedrag</label>
|
4588 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
4589 |
-
</comment>
|
4590 |
<frontend_type>text</frontend_type>
|
4591 |
<sort_order>5</sort_order>
|
4592 |
<show_in_default>1</show_in_default>
|
@@ -4599,8 +4340,7 @@
|
|
4599 |
<active>1</active>
|
4600 |
</depends>
|
4601 |
<label>Maximum bedrag</label>
|
4602 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
4603 |
-
</comment>
|
4604 |
<frontend_type>text</frontend_type>
|
4605 |
<sort_order>6</sort_order>
|
4606 |
<show_in_default>1</show_in_default>
|
@@ -4643,8 +4383,7 @@
|
|
4643 |
</depends>
|
4644 |
<label>Verzendmethoden blokkeren</label>
|
4645 |
<comment>
|
4646 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
4647 |
-
verzendmethoden
|
4648 |
</comment>
|
4649 |
<frontend_type>select</frontend_type>
|
4650 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
@@ -4659,9 +4398,7 @@
|
|
4659 |
<active>1</active>
|
4660 |
<limit_shipping>1</limit_shipping>
|
4661 |
</depends>
|
4662 |
-
<comment>
|
4663 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
4664 |
-
</comment>
|
4665 |
<label>Geblokkeerde verzendmethoden</label>
|
4666 |
<frontend_type>multiselect</frontend_type>
|
4667 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -4704,11 +4441,7 @@
|
|
4704 |
<active>1</active>
|
4705 |
</depends>
|
4706 |
<label>Extra kosten rekenen</label>
|
4707 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
4708 |
-
van
|
4709 |
-
het
|
4710 |
-
totaalbedrag of een vast bedrag
|
4711 |
-
</comment>
|
4712 |
<frontend_type>select</frontend_type>
|
4713 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
4714 |
<sort_order>200</sort_order>
|
@@ -4722,10 +4455,7 @@
|
|
4722 |
<active>1</active>
|
4723 |
</depends>
|
4724 |
<label>Extra kosten</label>
|
4725 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
4726 |
-
decimalen,
|
4727 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
4728 |
-
</comment>
|
4729 |
<frontend_type>text</frontend_type>
|
4730 |
<sort_order>201</sort_order>
|
4731 |
<show_in_default>1</show_in_default>
|
@@ -4819,13 +4549,12 @@
|
|
4819 |
<show_in_store>1</show_in_store>
|
4820 |
<config_path>payment/pay_payment_maestro/sort_order</config_path>
|
4821 |
</sort_order>
|
4822 |
-
<min_order_total translate="label">
|
4823 |
<depends>
|
4824 |
<active>1</active>
|
4825 |
</depends>
|
4826 |
<label>Minimum bedrag</label>
|
4827 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
4828 |
-
</comment>
|
4829 |
<frontend_type>text</frontend_type>
|
4830 |
<sort_order>5</sort_order>
|
4831 |
<show_in_default>1</show_in_default>
|
@@ -4833,13 +4562,12 @@
|
|
4833 |
<show_in_store>1</show_in_store>
|
4834 |
<config_path>payment/pay_payment_maestro/min_order_total</config_path>
|
4835 |
</min_order_total>
|
4836 |
-
<max_order_total translate="label">
|
4837 |
<depends>
|
4838 |
<active>1</active>
|
4839 |
</depends>
|
4840 |
<label>Maximum bedrag</label>
|
4841 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
4842 |
-
</comment>
|
4843 |
<frontend_type>text</frontend_type>
|
4844 |
<sort_order>6</sort_order>
|
4845 |
<show_in_default>1</show_in_default>
|
@@ -4881,10 +4609,7 @@
|
|
4881 |
<active>1</active>
|
4882 |
</depends>
|
4883 |
<label>Verzendmethoden blokkeren</label>
|
4884 |
-
<comment>
|
4885 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
4886 |
-
verzendmethoden
|
4887 |
-
</comment>
|
4888 |
<frontend_type>select</frontend_type>
|
4889 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4890 |
<sort_order>9</sort_order>
|
@@ -4898,9 +4623,7 @@
|
|
4898 |
<active>1</active>
|
4899 |
<limit_shipping>1</limit_shipping>
|
4900 |
</depends>
|
4901 |
-
<comment>
|
4902 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
4903 |
-
</comment>
|
4904 |
<label>Geblokkeerde verzendmethoden</label>
|
4905 |
<frontend_type>multiselect</frontend_type>
|
4906 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -4943,11 +4666,7 @@
|
|
4943 |
<active>1</active>
|
4944 |
</depends>
|
4945 |
<label>Extra kosten rekenen</label>
|
4946 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
4947 |
-
van
|
4948 |
-
het
|
4949 |
-
totaalbedrag of een vast bedrag
|
4950 |
-
</comment>
|
4951 |
<frontend_type>select</frontend_type>
|
4952 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
4953 |
<sort_order>200</sort_order>
|
@@ -4961,10 +4680,7 @@
|
|
4961 |
<active>1</active>
|
4962 |
</depends>
|
4963 |
<label>Extra kosten</label>
|
4964 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
4965 |
-
decimalen,
|
4966 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
4967 |
-
</comment>
|
4968 |
<frontend_type>text</frontend_type>
|
4969 |
<sort_order>201</sort_order>
|
4970 |
<show_in_default>1</show_in_default>
|
@@ -5058,13 +4774,12 @@
|
|
5058 |
<show_in_store>1</show_in_store>
|
5059 |
<config_path>payment/pay_payment_mistercash/sort_order</config_path>
|
5060 |
</sort_order>
|
5061 |
-
<min_order_total translate="label">
|
5062 |
<depends>
|
5063 |
<active>1</active>
|
5064 |
</depends>
|
5065 |
<label>Minimum bedrag</label>
|
5066 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
5067 |
-
</comment>
|
5068 |
<frontend_type>text</frontend_type>
|
5069 |
<sort_order>5</sort_order>
|
5070 |
<show_in_default>1</show_in_default>
|
@@ -5072,13 +4787,12 @@
|
|
5072 |
<show_in_store>1</show_in_store>
|
5073 |
<config_path>payment/pay_payment_mistercash/min_order_total</config_path>
|
5074 |
</min_order_total>
|
5075 |
-
<max_order_total translate="label">
|
5076 |
<depends>
|
5077 |
<active>1</active>
|
5078 |
</depends>
|
5079 |
<label>Maximum bedrag</label>
|
5080 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
5081 |
-
</comment>
|
5082 |
<frontend_type>text</frontend_type>
|
5083 |
<sort_order>6</sort_order>
|
5084 |
<show_in_default>1</show_in_default>
|
@@ -5120,10 +4834,7 @@
|
|
5120 |
<active>1</active>
|
5121 |
</depends>
|
5122 |
<label>Verzendmethoden blokkeren</label>
|
5123 |
-
<comment>
|
5124 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
5125 |
-
verzendmethoden
|
5126 |
-
</comment>
|
5127 |
<frontend_type>select</frontend_type>
|
5128 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
5129 |
<sort_order>9</sort_order>
|
@@ -5137,9 +4848,7 @@
|
|
5137 |
<active>1</active>
|
5138 |
<limit_shipping>1</limit_shipping>
|
5139 |
</depends>
|
5140 |
-
<comment>
|
5141 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
5142 |
-
</comment>
|
5143 |
<label>Geblokkeerde verzendmethoden</label>
|
5144 |
<frontend_type>multiselect</frontend_type>
|
5145 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -5182,11 +4891,7 @@
|
|
5182 |
<active>1</active>
|
5183 |
</depends>
|
5184 |
<label>Extra kosten rekenen</label>
|
5185 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
5186 |
-
van
|
5187 |
-
het
|
5188 |
-
totaalbedrag of een vast bedrag
|
5189 |
-
</comment>
|
5190 |
<frontend_type>select</frontend_type>
|
5191 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
5192 |
<sort_order>200</sort_order>
|
@@ -5200,10 +4905,7 @@
|
|
5200 |
<active>1</active>
|
5201 |
</depends>
|
5202 |
<label>Extra kosten</label>
|
5203 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
5204 |
-
decimalen,
|
5205 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
5206 |
-
</comment>
|
5207 |
<frontend_type>text</frontend_type>
|
5208 |
<sort_order>201</sort_order>
|
5209 |
<show_in_default>1</show_in_default>
|
@@ -5297,13 +4999,12 @@
|
|
5297 |
<show_in_store>1</show_in_store>
|
5298 |
<config_path>payment/pay_payment_mybank/sort_order</config_path>
|
5299 |
</sort_order>
|
5300 |
-
<min_order_total translate="label">
|
5301 |
<depends>
|
5302 |
<active>1</active>
|
5303 |
</depends>
|
5304 |
<label>Minimum bedrag</label>
|
5305 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
5306 |
-
</comment>
|
5307 |
<frontend_type>text</frontend_type>
|
5308 |
<sort_order>5</sort_order>
|
5309 |
<show_in_default>1</show_in_default>
|
@@ -5311,13 +5012,12 @@
|
|
5311 |
<show_in_store>1</show_in_store>
|
5312 |
<config_path>payment/pay_payment_mybank/min_order_total</config_path>
|
5313 |
</min_order_total>
|
5314 |
-
<max_order_total translate="label">
|
5315 |
<depends>
|
5316 |
<active>1</active>
|
5317 |
</depends>
|
5318 |
<label>Maximum bedrag</label>
|
5319 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
5320 |
-
</comment>
|
5321 |
<frontend_type>text</frontend_type>
|
5322 |
<sort_order>6</sort_order>
|
5323 |
<show_in_default>1</show_in_default>
|
@@ -5359,10 +5059,7 @@
|
|
5359 |
<active>1</active>
|
5360 |
</depends>
|
5361 |
<label>Verzendmethoden blokkeren</label>
|
5362 |
-
<comment>
|
5363 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
5364 |
-
verzendmethoden
|
5365 |
-
</comment>
|
5366 |
<frontend_type>select</frontend_type>
|
5367 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
5368 |
<sort_order>9</sort_order>
|
@@ -5376,9 +5073,7 @@
|
|
5376 |
<active>1</active>
|
5377 |
<limit_shipping>1</limit_shipping>
|
5378 |
</depends>
|
5379 |
-
<comment>
|
5380 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
5381 |
-
</comment>
|
5382 |
<label>Geblokkeerde verzendmethoden</label>
|
5383 |
<frontend_type>multiselect</frontend_type>
|
5384 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -5421,11 +5116,7 @@
|
|
5421 |
<active>1</active>
|
5422 |
</depends>
|
5423 |
<label>Extra kosten rekenen</label>
|
5424 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
5425 |
-
van
|
5426 |
-
het
|
5427 |
-
totaalbedrag of een vast bedrag
|
5428 |
-
</comment>
|
5429 |
<frontend_type>select</frontend_type>
|
5430 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
5431 |
<sort_order>200</sort_order>
|
@@ -5439,10 +5130,7 @@
|
|
5439 |
<active>1</active>
|
5440 |
</depends>
|
5441 |
<label>Extra kosten</label>
|
5442 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
5443 |
-
decimalen,
|
5444 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
5445 |
-
</comment>
|
5446 |
<frontend_type>text</frontend_type>
|
5447 |
<sort_order>201</sort_order>
|
5448 |
<show_in_default>1</show_in_default>
|
@@ -5536,13 +5224,12 @@
|
|
5536 |
<show_in_store>1</show_in_store>
|
5537 |
<config_path>payment/pay_payment_overboeking/sort_order</config_path>
|
5538 |
</sort_order>
|
5539 |
-
<min_order_total translate="label">
|
5540 |
<depends>
|
5541 |
<active>1</active>
|
5542 |
</depends>
|
5543 |
<label>Minimum bedrag</label>
|
5544 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
5545 |
-
</comment>
|
5546 |
<frontend_type>text</frontend_type>
|
5547 |
<sort_order>5</sort_order>
|
5548 |
<show_in_default>1</show_in_default>
|
@@ -5550,13 +5237,12 @@
|
|
5550 |
<show_in_store>1</show_in_store>
|
5551 |
<config_path>payment/pay_payment_overboeking/min_order_total</config_path>
|
5552 |
</min_order_total>
|
5553 |
-
<max_order_total translate="label">
|
5554 |
<depends>
|
5555 |
<active>1</active>
|
5556 |
</depends>
|
5557 |
<label>Maximum bedrag</label>
|
5558 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
5559 |
-
</comment>
|
5560 |
<frontend_type>text</frontend_type>
|
5561 |
<sort_order>6</sort_order>
|
5562 |
<show_in_default>1</show_in_default>
|
@@ -5598,10 +5284,7 @@
|
|
5598 |
<active>1</active>
|
5599 |
</depends>
|
5600 |
<label>Verzendmethoden blokkeren</label>
|
5601 |
-
<comment>
|
5602 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
5603 |
-
verzendmethoden
|
5604 |
-
</comment>
|
5605 |
<frontend_type>select</frontend_type>
|
5606 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
5607 |
<sort_order>9</sort_order>
|
@@ -5615,9 +5298,7 @@
|
|
5615 |
<active>1</active>
|
5616 |
<limit_shipping>1</limit_shipping>
|
5617 |
</depends>
|
5618 |
-
<comment>
|
5619 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
5620 |
-
</comment>
|
5621 |
<label>Geblokkeerde verzendmethoden</label>
|
5622 |
<frontend_type>multiselect</frontend_type>
|
5623 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -5660,11 +5341,7 @@
|
|
5660 |
<active>1</active>
|
5661 |
</depends>
|
5662 |
<label>Extra kosten rekenen</label>
|
5663 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
5664 |
-
van
|
5665 |
-
het
|
5666 |
-
totaalbedrag of een vast bedrag
|
5667 |
-
</comment>
|
5668 |
<frontend_type>select</frontend_type>
|
5669 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
5670 |
<sort_order>200</sort_order>
|
@@ -5678,10 +5355,7 @@
|
|
5678 |
<active>1</active>
|
5679 |
</depends>
|
5680 |
<label>Extra kosten</label>
|
5681 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
5682 |
-
decimalen,
|
5683 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
5684 |
-
</comment>
|
5685 |
<frontend_type>text</frontend_type>
|
5686 |
<sort_order>201</sort_order>
|
5687 |
<show_in_default>1</show_in_default>
|
@@ -5775,13 +5449,12 @@
|
|
5775 |
<show_in_store>1</show_in_store>
|
5776 |
<config_path>payment/pay_payment_paypal/sort_order</config_path>
|
5777 |
</sort_order>
|
5778 |
-
<min_order_total translate="label">
|
5779 |
<depends>
|
5780 |
<active>1</active>
|
5781 |
</depends>
|
5782 |
<label>Minimum bedrag</label>
|
5783 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
5784 |
-
</comment>
|
5785 |
<frontend_type>text</frontend_type>
|
5786 |
<sort_order>5</sort_order>
|
5787 |
<show_in_default>1</show_in_default>
|
@@ -5837,10 +5510,7 @@
|
|
5837 |
<active>1</active>
|
5838 |
</depends>
|
5839 |
<label>Verzendmethoden blokkeren</label>
|
5840 |
-
<comment>
|
5841 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
5842 |
-
verzendmethoden
|
5843 |
-
</comment>
|
5844 |
<frontend_type>select</frontend_type>
|
5845 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
5846 |
<sort_order>9</sort_order>
|
@@ -5854,9 +5524,7 @@
|
|
5854 |
<active>1</active>
|
5855 |
<limit_shipping>1</limit_shipping>
|
5856 |
</depends>
|
5857 |
-
<comment>
|
5858 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
5859 |
-
</comment>
|
5860 |
<label>Geblokkeerde verzendmethoden</label>
|
5861 |
<frontend_type>multiselect</frontend_type>
|
5862 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -5899,11 +5567,7 @@
|
|
5899 |
<active>1</active>
|
5900 |
</depends>
|
5901 |
<label>Extra kosten rekenen</label>
|
5902 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
5903 |
-
van
|
5904 |
-
het
|
5905 |
-
totaalbedrag of een vast bedrag
|
5906 |
-
</comment>
|
5907 |
<frontend_type>select</frontend_type>
|
5908 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
5909 |
<sort_order>200</sort_order>
|
@@ -5917,10 +5581,7 @@
|
|
5917 |
<active>1</active>
|
5918 |
</depends>
|
5919 |
<label>Extra kosten</label>
|
5920 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
5921 |
-
decimalen,
|
5922 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
5923 |
-
</comment>
|
5924 |
<frontend_type>text</frontend_type>
|
5925 |
<sort_order>201</sort_order>
|
5926 |
<show_in_default>1</show_in_default>
|
@@ -6014,13 +5675,12 @@
|
|
6014 |
<show_in_store>1</show_in_store>
|
6015 |
<config_path>payment/pay_payment_paysafecard/sort_order</config_path>
|
6016 |
</sort_order>
|
6017 |
-
<min_order_total translate="label">
|
6018 |
<depends>
|
6019 |
<active>1</active>
|
6020 |
</depends>
|
6021 |
<label>Minimum bedrag</label>
|
6022 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
6023 |
-
</comment>
|
6024 |
<frontend_type>text</frontend_type>
|
6025 |
<sort_order>5</sort_order>
|
6026 |
<show_in_default>1</show_in_default>
|
@@ -6028,13 +5688,12 @@
|
|
6028 |
<show_in_store>1</show_in_store>
|
6029 |
<config_path>payment/pay_payment_paysafecard/min_order_total</config_path>
|
6030 |
</min_order_total>
|
6031 |
-
<max_order_total translate="label">
|
6032 |
<depends>
|
6033 |
<active>1</active>
|
6034 |
</depends>
|
6035 |
<label>Maximum bedrag</label>
|
6036 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
6037 |
-
</comment>
|
6038 |
<frontend_type>text</frontend_type>
|
6039 |
<sort_order>6</sort_order>
|
6040 |
<show_in_default>1</show_in_default>
|
@@ -6076,10 +5735,7 @@
|
|
6076 |
<active>1</active>
|
6077 |
</depends>
|
6078 |
<label>Verzendmethoden blokkeren</label>
|
6079 |
-
<comment>
|
6080 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
6081 |
-
verzendmethoden
|
6082 |
-
</comment>
|
6083 |
<frontend_type>select</frontend_type>
|
6084 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
6085 |
<sort_order>9</sort_order>
|
@@ -6093,9 +5749,7 @@
|
|
6093 |
<active>1</active>
|
6094 |
<limit_shipping>1</limit_shipping>
|
6095 |
</depends>
|
6096 |
-
<comment>
|
6097 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
6098 |
-
</comment>
|
6099 |
<label>Geblokkeerde verzendmethoden</label>
|
6100 |
<frontend_type>multiselect</frontend_type>
|
6101 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -6138,11 +5792,7 @@
|
|
6138 |
<active>1</active>
|
6139 |
</depends>
|
6140 |
<label>Extra kosten rekenen</label>
|
6141 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
6142 |
-
van
|
6143 |
-
het
|
6144 |
-
totaalbedrag of een vast bedrag
|
6145 |
-
</comment>
|
6146 |
<frontend_type>select</frontend_type>
|
6147 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
6148 |
<sort_order>200</sort_order>
|
@@ -6156,10 +5806,7 @@
|
|
6156 |
<active>1</active>
|
6157 |
</depends>
|
6158 |
<label>Extra kosten</label>
|
6159 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
6160 |
-
decimalen,
|
6161 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
6162 |
-
</comment>
|
6163 |
<frontend_type>text</frontend_type>
|
6164 |
<sort_order>201</sort_order>
|
6165 |
<show_in_default>1</show_in_default>
|
@@ -6253,13 +5900,12 @@
|
|
6253 |
<show_in_store>1</show_in_store>
|
6254 |
<config_path>payment/pay_payment_podiumkadokaart/sort_order</config_path>
|
6255 |
</sort_order>
|
6256 |
-
<min_order_total translate="label">
|
6257 |
<depends>
|
6258 |
<active>1</active>
|
6259 |
</depends>
|
6260 |
<label>Minimum bedrag</label>
|
6261 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
6262 |
-
</comment>
|
6263 |
<frontend_type>text</frontend_type>
|
6264 |
<sort_order>5</sort_order>
|
6265 |
<show_in_default>1</show_in_default>
|
@@ -6267,13 +5913,12 @@
|
|
6267 |
<show_in_store>1</show_in_store>
|
6268 |
<config_path>payment/pay_payment_podiumkadokaart/min_order_total</config_path>
|
6269 |
</min_order_total>
|
6270 |
-
<max_order_total translate="label">
|
6271 |
<depends>
|
6272 |
<active>1</active>
|
6273 |
</depends>
|
6274 |
<label>Maximum bedrag</label>
|
6275 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
6276 |
-
</comment>
|
6277 |
<frontend_type>text</frontend_type>
|
6278 |
<sort_order>6</sort_order>
|
6279 |
<show_in_default>1</show_in_default>
|
@@ -6315,10 +5960,7 @@
|
|
6315 |
<active>1</active>
|
6316 |
</depends>
|
6317 |
<label>Verzendmethoden blokkeren</label>
|
6318 |
-
<comment>
|
6319 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
6320 |
-
verzendmethoden
|
6321 |
-
</comment>
|
6322 |
<frontend_type>select</frontend_type>
|
6323 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
6324 |
<sort_order>9</sort_order>
|
@@ -6332,9 +5974,7 @@
|
|
6332 |
<active>1</active>
|
6333 |
<limit_shipping>1</limit_shipping>
|
6334 |
</depends>
|
6335 |
-
<comment>
|
6336 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
6337 |
-
</comment>
|
6338 |
<label>Geblokkeerde verzendmethoden</label>
|
6339 |
<frontend_type>multiselect</frontend_type>
|
6340 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -6377,11 +6017,7 @@
|
|
6377 |
<active>1</active>
|
6378 |
</depends>
|
6379 |
<label>Extra kosten rekenen</label>
|
6380 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
6381 |
-
van
|
6382 |
-
het
|
6383 |
-
totaalbedrag of een vast bedrag
|
6384 |
-
</comment>
|
6385 |
<frontend_type>select</frontend_type>
|
6386 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
6387 |
<sort_order>200</sort_order>
|
@@ -6395,10 +6031,7 @@
|
|
6395 |
<active>1</active>
|
6396 |
</depends>
|
6397 |
<label>Extra kosten</label>
|
6398 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
6399 |
-
decimalen,
|
6400 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
6401 |
-
</comment>
|
6402 |
<frontend_type>text</frontend_type>
|
6403 |
<sort_order>201</sort_order>
|
6404 |
<show_in_default>1</show_in_default>
|
@@ -6492,13 +6125,12 @@
|
|
6492 |
<show_in_store>1</show_in_store>
|
6493 |
<config_path>payment/pay_payment_postepay/sort_order</config_path>
|
6494 |
</sort_order>
|
6495 |
-
<min_order_total translate="label">
|
6496 |
<depends>
|
6497 |
<active>1</active>
|
6498 |
</depends>
|
6499 |
<label>Minimum bedrag</label>
|
6500 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
6501 |
-
</comment>
|
6502 |
<frontend_type>text</frontend_type>
|
6503 |
<sort_order>5</sort_order>
|
6504 |
<show_in_default>1</show_in_default>
|
@@ -6506,13 +6138,12 @@
|
|
6506 |
<show_in_store>1</show_in_store>
|
6507 |
<config_path>payment/pay_payment_postepay/min_order_total</config_path>
|
6508 |
</min_order_total>
|
6509 |
-
<max_order_total translate="label">
|
6510 |
<depends>
|
6511 |
<active>1</active>
|
6512 |
</depends>
|
6513 |
<label>Maximum bedrag</label>
|
6514 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
6515 |
-
</comment>
|
6516 |
<frontend_type>text</frontend_type>
|
6517 |
<sort_order>6</sort_order>
|
6518 |
<show_in_default>1</show_in_default>
|
@@ -6554,10 +6185,7 @@
|
|
6554 |
<active>1</active>
|
6555 |
</depends>
|
6556 |
<label>Verzendmethoden blokkeren</label>
|
6557 |
-
<comment>
|
6558 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
6559 |
-
verzendmethoden
|
6560 |
-
</comment>
|
6561 |
<frontend_type>select</frontend_type>
|
6562 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
6563 |
<sort_order>9</sort_order>
|
@@ -6571,9 +6199,7 @@
|
|
6571 |
<active>1</active>
|
6572 |
<limit_shipping>1</limit_shipping>
|
6573 |
</depends>
|
6574 |
-
<comment>
|
6575 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
6576 |
-
</comment>
|
6577 |
<label>Geblokkeerde verzendmethoden</label>
|
6578 |
<frontend_type>multiselect</frontend_type>
|
6579 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -6616,11 +6242,7 @@
|
|
6616 |
<active>1</active>
|
6617 |
</depends>
|
6618 |
<label>Extra kosten rekenen</label>
|
6619 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
6620 |
-
van
|
6621 |
-
het
|
6622 |
-
totaalbedrag of een vast bedrag
|
6623 |
-
</comment>
|
6624 |
<frontend_type>select</frontend_type>
|
6625 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
6626 |
<sort_order>200</sort_order>
|
@@ -6634,10 +6256,7 @@
|
|
6634 |
<active>1</active>
|
6635 |
</depends>
|
6636 |
<label>Extra kosten</label>
|
6637 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
6638 |
-
decimalen,
|
6639 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
6640 |
-
</comment>
|
6641 |
<frontend_type>text</frontend_type>
|
6642 |
<sort_order>201</sort_order>
|
6643 |
<show_in_default>1</show_in_default>
|
@@ -6731,13 +6350,12 @@
|
|
6731 |
<show_in_store>1</show_in_store>
|
6732 |
<config_path>payment/pay_payment_sofortbanking/sort_order</config_path>
|
6733 |
</sort_order>
|
6734 |
-
<min_order_total translate="label">
|
6735 |
<depends>
|
6736 |
<active>1</active>
|
6737 |
</depends>
|
6738 |
<label>Minimum bedrag</label>
|
6739 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
6740 |
-
</comment>
|
6741 |
<frontend_type>text</frontend_type>
|
6742 |
<sort_order>5</sort_order>
|
6743 |
<show_in_default>1</show_in_default>
|
@@ -6745,13 +6363,12 @@
|
|
6745 |
<show_in_store>1</show_in_store>
|
6746 |
<config_path>payment/pay_payment_sofortbanking/min_order_total</config_path>
|
6747 |
</min_order_total>
|
6748 |
-
<max_order_total translate="label">
|
6749 |
<depends>
|
6750 |
<active>1</active>
|
6751 |
</depends>
|
6752 |
<label>Maximum bedrag</label>
|
6753 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
6754 |
-
</comment>
|
6755 |
<frontend_type>text</frontend_type>
|
6756 |
<sort_order>6</sort_order>
|
6757 |
<show_in_default>1</show_in_default>
|
@@ -6793,10 +6410,7 @@
|
|
6793 |
<active>1</active>
|
6794 |
</depends>
|
6795 |
<label>Verzendmethoden blokkeren</label>
|
6796 |
-
<comment>
|
6797 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
6798 |
-
verzendmethoden
|
6799 |
-
</comment>
|
6800 |
<frontend_type>select</frontend_type>
|
6801 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
6802 |
<sort_order>9</sort_order>
|
@@ -6810,9 +6424,7 @@
|
|
6810 |
<active>1</active>
|
6811 |
<limit_shipping>1</limit_shipping>
|
6812 |
</depends>
|
6813 |
-
<comment>
|
6814 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
6815 |
-
</comment>
|
6816 |
<label>Geblokkeerde verzendmethoden</label>
|
6817 |
<frontend_type>multiselect</frontend_type>
|
6818 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -6855,11 +6467,7 @@
|
|
6855 |
<active>1</active>
|
6856 |
</depends>
|
6857 |
<label>Extra kosten rekenen</label>
|
6858 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
6859 |
-
van
|
6860 |
-
het
|
6861 |
-
totaalbedrag of een vast bedrag
|
6862 |
-
</comment>
|
6863 |
<frontend_type>select</frontend_type>
|
6864 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
6865 |
<sort_order>200</sort_order>
|
@@ -6873,10 +6481,7 @@
|
|
6873 |
<active>1</active>
|
6874 |
</depends>
|
6875 |
<label>Extra kosten</label>
|
6876 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
6877 |
-
decimalen,
|
6878 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
6879 |
-
</comment>
|
6880 |
<frontend_type>text</frontend_type>
|
6881 |
<sort_order>201</sort_order>
|
6882 |
<show_in_default>1</show_in_default>
|
@@ -6970,13 +6575,12 @@
|
|
6970 |
<show_in_store>1</show_in_store>
|
6971 |
<config_path>payment/pay_payment_telefoon/sort_order</config_path>
|
6972 |
</sort_order>
|
6973 |
-
<min_order_total translate="label">
|
6974 |
<depends>
|
6975 |
<active>1</active>
|
6976 |
</depends>
|
6977 |
<label>Minimum bedrag</label>
|
6978 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
6979 |
-
</comment>
|
6980 |
<frontend_type>text</frontend_type>
|
6981 |
<sort_order>5</sort_order>
|
6982 |
<show_in_default>1</show_in_default>
|
@@ -6984,13 +6588,12 @@
|
|
6984 |
<show_in_store>1</show_in_store>
|
6985 |
<config_path>payment/pay_payment_telefoon/min_order_total</config_path>
|
6986 |
</min_order_total>
|
6987 |
-
<max_order_total translate="label">
|
6988 |
<depends>
|
6989 |
<active>1</active>
|
6990 |
</depends>
|
6991 |
<label>Maximum bedrag</label>
|
6992 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
6993 |
-
</comment>
|
6994 |
<frontend_type>text</frontend_type>
|
6995 |
<sort_order>6</sort_order>
|
6996 |
<show_in_default>1</show_in_default>
|
@@ -7032,10 +6635,7 @@
|
|
7032 |
<active>1</active>
|
7033 |
</depends>
|
7034 |
<label>Verzendmethoden blokkeren</label>
|
7035 |
-
<comment>
|
7036 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
7037 |
-
verzendmethoden
|
7038 |
-
</comment>
|
7039 |
<frontend_type>select</frontend_type>
|
7040 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
7041 |
<sort_order>9</sort_order>
|
@@ -7049,9 +6649,7 @@
|
|
7049 |
<active>1</active>
|
7050 |
<limit_shipping>1</limit_shipping>
|
7051 |
</depends>
|
7052 |
-
<comment>
|
7053 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
7054 |
-
</comment>
|
7055 |
<label>Geblokkeerde verzendmethoden</label>
|
7056 |
<frontend_type>multiselect</frontend_type>
|
7057 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -7094,11 +6692,7 @@
|
|
7094 |
<active>1</active>
|
7095 |
</depends>
|
7096 |
<label>Extra kosten rekenen</label>
|
7097 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
7098 |
-
van
|
7099 |
-
het
|
7100 |
-
totaalbedrag of een vast bedrag
|
7101 |
-
</comment>
|
7102 |
<frontend_type>select</frontend_type>
|
7103 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
7104 |
<sort_order>200</sort_order>
|
@@ -7112,10 +6706,7 @@
|
|
7112 |
<active>1</active>
|
7113 |
</depends>
|
7114 |
<label>Extra kosten</label>
|
7115 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
7116 |
-
decimalen,
|
7117 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
7118 |
-
</comment>
|
7119 |
<frontend_type>text</frontend_type>
|
7120 |
<sort_order>201</sort_order>
|
7121 |
<show_in_default>1</show_in_default>
|
@@ -7209,13 +6800,12 @@
|
|
7209 |
<show_in_store>1</show_in_store>
|
7210 |
<config_path>payment/pay_payment_visamastercard/sort_order</config_path>
|
7211 |
</sort_order>
|
7212 |
-
<min_order_total translate="label">
|
7213 |
<depends>
|
7214 |
<active>1</active>
|
7215 |
</depends>
|
7216 |
<label>Minimum bedrag</label>
|
7217 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
7218 |
-
</comment>
|
7219 |
<frontend_type>text</frontend_type>
|
7220 |
<sort_order>5</sort_order>
|
7221 |
<show_in_default>1</show_in_default>
|
@@ -7223,13 +6813,12 @@
|
|
7223 |
<show_in_store>1</show_in_store>
|
7224 |
<config_path>payment/pay_payment_visamastercard/min_order_total</config_path>
|
7225 |
</min_order_total>
|
7226 |
-
<max_order_total translate="label">
|
7227 |
<depends>
|
7228 |
<active>1</active>
|
7229 |
</depends>
|
7230 |
<label>Maximum bedrag</label>
|
7231 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
7232 |
-
</comment>
|
7233 |
<frontend_type>text</frontend_type>
|
7234 |
<sort_order>6</sort_order>
|
7235 |
<show_in_default>1</show_in_default>
|
@@ -7271,10 +6860,7 @@
|
|
7271 |
<active>1</active>
|
7272 |
</depends>
|
7273 |
<label>Verzendmethoden blokkeren</label>
|
7274 |
-
<comment>
|
7275 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
7276 |
-
verzendmethoden
|
7277 |
-
</comment>
|
7278 |
<frontend_type>select</frontend_type>
|
7279 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
7280 |
<sort_order>9</sort_order>
|
@@ -7288,9 +6874,7 @@
|
|
7288 |
<active>1</active>
|
7289 |
<limit_shipping>1</limit_shipping>
|
7290 |
</depends>
|
7291 |
-
<comment>
|
7292 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
7293 |
-
</comment>
|
7294 |
<label>Geblokkeerde verzendmethoden</label>
|
7295 |
<frontend_type>multiselect</frontend_type>
|
7296 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -7333,11 +6917,7 @@
|
|
7333 |
<active>1</active>
|
7334 |
</depends>
|
7335 |
<label>Extra kosten rekenen</label>
|
7336 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
7337 |
-
van
|
7338 |
-
het
|
7339 |
-
totaalbedrag of een vast bedrag
|
7340 |
-
</comment>
|
7341 |
<frontend_type>select</frontend_type>
|
7342 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
7343 |
<sort_order>200</sort_order>
|
@@ -7351,10 +6931,7 @@
|
|
7351 |
<active>1</active>
|
7352 |
</depends>
|
7353 |
<label>Extra kosten</label>
|
7354 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
7355 |
-
decimalen,
|
7356 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
7357 |
-
</comment>
|
7358 |
<frontend_type>text</frontend_type>
|
7359 |
<sort_order>201</sort_order>
|
7360 |
<show_in_default>1</show_in_default>
|
@@ -7448,13 +7025,12 @@
|
|
7448 |
<show_in_store>1</show_in_store>
|
7449 |
<config_path>payment/pay_payment_vvvgiftcard/sort_order</config_path>
|
7450 |
</sort_order>
|
7451 |
-
<min_order_total translate="label">
|
7452 |
<depends>
|
7453 |
<active>1</active>
|
7454 |
</depends>
|
7455 |
<label>Minimum bedrag</label>
|
7456 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
7457 |
-
</comment>
|
7458 |
<frontend_type>text</frontend_type>
|
7459 |
<sort_order>5</sort_order>
|
7460 |
<show_in_default>1</show_in_default>
|
@@ -7462,13 +7038,12 @@
|
|
7462 |
<show_in_store>1</show_in_store>
|
7463 |
<config_path>payment/pay_payment_vvvgiftcard/min_order_total</config_path>
|
7464 |
</min_order_total>
|
7465 |
-
<max_order_total translate="label">
|
7466 |
<depends>
|
7467 |
<active>1</active>
|
7468 |
</depends>
|
7469 |
<label>Maximum bedrag</label>
|
7470 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
7471 |
-
</comment>
|
7472 |
<frontend_type>text</frontend_type>
|
7473 |
<sort_order>6</sort_order>
|
7474 |
<show_in_default>1</show_in_default>
|
@@ -7510,10 +7085,7 @@
|
|
7510 |
<active>1</active>
|
7511 |
</depends>
|
7512 |
<label>Verzendmethoden blokkeren</label>
|
7513 |
-
<comment>
|
7514 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
7515 |
-
verzendmethoden
|
7516 |
-
</comment>
|
7517 |
<frontend_type>select</frontend_type>
|
7518 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
7519 |
<sort_order>9</sort_order>
|
@@ -7527,9 +7099,7 @@
|
|
7527 |
<active>1</active>
|
7528 |
<limit_shipping>1</limit_shipping>
|
7529 |
</depends>
|
7530 |
-
<comment>
|
7531 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
7532 |
-
</comment>
|
7533 |
<label>Geblokkeerde verzendmethoden</label>
|
7534 |
<frontend_type>multiselect</frontend_type>
|
7535 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -7572,11 +7142,7 @@
|
|
7572 |
<active>1</active>
|
7573 |
</depends>
|
7574 |
<label>Extra kosten rekenen</label>
|
7575 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
7576 |
-
van
|
7577 |
-
het
|
7578 |
-
totaalbedrag of een vast bedrag
|
7579 |
-
</comment>
|
7580 |
<frontend_type>select</frontend_type>
|
7581 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
7582 |
<sort_order>200</sort_order>
|
@@ -7590,10 +7156,7 @@
|
|
7590 |
<active>1</active>
|
7591 |
</depends>
|
7592 |
<label>Extra kosten</label>
|
7593 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
7594 |
-
decimalen,
|
7595 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
7596 |
-
</comment>
|
7597 |
<frontend_type>text</frontend_type>
|
7598 |
<sort_order>201</sort_order>
|
7599 |
<show_in_default>1</show_in_default>
|
@@ -7687,13 +7250,12 @@
|
|
7687 |
<show_in_store>1</show_in_store>
|
7688 |
<config_path>payment/pay_payment_webshopgiftcard/sort_order</config_path>
|
7689 |
</sort_order>
|
7690 |
-
<min_order_total translate="label">
|
7691 |
<depends>
|
7692 |
<active>1</active>
|
7693 |
</depends>
|
7694 |
<label>Minimum bedrag</label>
|
7695 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
7696 |
-
</comment>
|
7697 |
<frontend_type>text</frontend_type>
|
7698 |
<sort_order>5</sort_order>
|
7699 |
<show_in_default>1</show_in_default>
|
@@ -7701,13 +7263,12 @@
|
|
7701 |
<show_in_store>1</show_in_store>
|
7702 |
<config_path>payment/pay_payment_webshopgiftcard/min_order_total</config_path>
|
7703 |
</min_order_total>
|
7704 |
-
<max_order_total translate="label">
|
7705 |
<depends>
|
7706 |
<active>1</active>
|
7707 |
</depends>
|
7708 |
<label>Maximum bedrag</label>
|
7709 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
7710 |
-
</comment>
|
7711 |
<frontend_type>text</frontend_type>
|
7712 |
<sort_order>6</sort_order>
|
7713 |
<show_in_default>1</show_in_default>
|
@@ -7749,10 +7310,7 @@
|
|
7749 |
<active>1</active>
|
7750 |
</depends>
|
7751 |
<label>Verzendmethoden blokkeren</label>
|
7752 |
-
<comment>
|
7753 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
7754 |
-
verzendmethoden
|
7755 |
-
</comment>
|
7756 |
<frontend_type>select</frontend_type>
|
7757 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
7758 |
<sort_order>9</sort_order>
|
@@ -7766,9 +7324,7 @@
|
|
7766 |
<active>1</active>
|
7767 |
<limit_shipping>1</limit_shipping>
|
7768 |
</depends>
|
7769 |
-
<comment>
|
7770 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
7771 |
-
</comment>
|
7772 |
<label>Geblokkeerde verzendmethoden</label>
|
7773 |
<frontend_type>multiselect</frontend_type>
|
7774 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -7811,11 +7367,7 @@
|
|
7811 |
<active>1</active>
|
7812 |
</depends>
|
7813 |
<label>Extra kosten rekenen</label>
|
7814 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
7815 |
-
van
|
7816 |
-
het
|
7817 |
-
totaalbedrag of een vast bedrag
|
7818 |
-
</comment>
|
7819 |
<frontend_type>select</frontend_type>
|
7820 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
7821 |
<sort_order>200</sort_order>
|
@@ -7829,10 +7381,7 @@
|
|
7829 |
<active>1</active>
|
7830 |
</depends>
|
7831 |
<label>Extra kosten</label>
|
7832 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
7833 |
-
decimalen,
|
7834 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
7835 |
-
</comment>
|
7836 |
<frontend_type>text</frontend_type>
|
7837 |
<sort_order>201</sort_order>
|
7838 |
<show_in_default>1</show_in_default>
|
@@ -7926,13 +7475,12 @@
|
|
7926 |
<show_in_store>1</show_in_store>
|
7927 |
<config_path>payment/pay_payment_wijncadeau/sort_order</config_path>
|
7928 |
</sort_order>
|
7929 |
-
<min_order_total translate="label">
|
7930 |
<depends>
|
7931 |
<active>1</active>
|
7932 |
</depends>
|
7933 |
<label>Minimum bedrag</label>
|
7934 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
7935 |
-
</comment>
|
7936 |
<frontend_type>text</frontend_type>
|
7937 |
<sort_order>5</sort_order>
|
7938 |
<show_in_default>1</show_in_default>
|
@@ -7940,13 +7488,12 @@
|
|
7940 |
<show_in_store>1</show_in_store>
|
7941 |
<config_path>payment/pay_payment_wijncadeau/min_order_total</config_path>
|
7942 |
</min_order_total>
|
7943 |
-
<max_order_total translate="label">
|
7944 |
<depends>
|
7945 |
<active>1</active>
|
7946 |
</depends>
|
7947 |
<label>Maximum bedrag</label>
|
7948 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
7949 |
-
</comment>
|
7950 |
<frontend_type>text</frontend_type>
|
7951 |
<sort_order>6</sort_order>
|
7952 |
<show_in_default>1</show_in_default>
|
@@ -7988,10 +7535,7 @@
|
|
7988 |
<active>1</active>
|
7989 |
</depends>
|
7990 |
<label>Verzendmethoden blokkeren</label>
|
7991 |
-
<comment>
|
7992 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
7993 |
-
verzendmethoden
|
7994 |
-
</comment>
|
7995 |
<frontend_type>select</frontend_type>
|
7996 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
7997 |
<sort_order>9</sort_order>
|
@@ -8005,9 +7549,7 @@
|
|
8005 |
<active>1</active>
|
8006 |
<limit_shipping>1</limit_shipping>
|
8007 |
</depends>
|
8008 |
-
<comment>
|
8009 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
8010 |
-
</comment>
|
8011 |
<label>Geblokkeerde verzendmethoden</label>
|
8012 |
<frontend_type>multiselect</frontend_type>
|
8013 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -8050,11 +7592,7 @@
|
|
8050 |
<active>1</active>
|
8051 |
</depends>
|
8052 |
<label>Extra kosten rekenen</label>
|
8053 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
8054 |
-
van
|
8055 |
-
het
|
8056 |
-
totaalbedrag of een vast bedrag
|
8057 |
-
</comment>
|
8058 |
<frontend_type>select</frontend_type>
|
8059 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
8060 |
<sort_order>200</sort_order>
|
@@ -8068,10 +7606,7 @@
|
|
8068 |
<active>1</active>
|
8069 |
</depends>
|
8070 |
<label>Extra kosten</label>
|
8071 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
8072 |
-
decimalen,
|
8073 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
8074 |
-
</comment>
|
8075 |
<frontend_type>text</frontend_type>
|
8076 |
<sort_order>201</sort_order>
|
8077 |
<show_in_default>1</show_in_default>
|
@@ -8165,13 +7700,12 @@
|
|
8165 |
<show_in_store>1</show_in_store>
|
8166 |
<config_path>payment/pay_payment_yehhpay/sort_order</config_path>
|
8167 |
</sort_order>
|
8168 |
-
<min_order_total translate="label">
|
8169 |
<depends>
|
8170 |
<active>1</active>
|
8171 |
</depends>
|
8172 |
<label>Minimum bedrag</label>
|
8173 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
8174 |
-
</comment>
|
8175 |
<frontend_type>text</frontend_type>
|
8176 |
<sort_order>5</sort_order>
|
8177 |
<show_in_default>1</show_in_default>
|
@@ -8179,13 +7713,12 @@
|
|
8179 |
<show_in_store>1</show_in_store>
|
8180 |
<config_path>payment/pay_payment_yehhpay/min_order_total</config_path>
|
8181 |
</min_order_total>
|
8182 |
-
<max_order_total translate="label">
|
8183 |
<depends>
|
8184 |
<active>1</active>
|
8185 |
</depends>
|
8186 |
<label>Maximum bedrag</label>
|
8187 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
8188 |
-
</comment>
|
8189 |
<frontend_type>text</frontend_type>
|
8190 |
<sort_order>6</sort_order>
|
8191 |
<show_in_default>1</show_in_default>
|
@@ -8227,10 +7760,7 @@
|
|
8227 |
<active>1</active>
|
8228 |
</depends>
|
8229 |
<label>Verzendmethoden blokkeren</label>
|
8230 |
-
<comment>
|
8231 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
8232 |
-
verzendmethoden
|
8233 |
-
</comment>
|
8234 |
<frontend_type>select</frontend_type>
|
8235 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
8236 |
<sort_order>9</sort_order>
|
@@ -8244,9 +7774,7 @@
|
|
8244 |
<active>1</active>
|
8245 |
<limit_shipping>1</limit_shipping>
|
8246 |
</depends>
|
8247 |
-
<comment>
|
8248 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
8249 |
-
</comment>
|
8250 |
<label>Geblokkeerde verzendmethoden</label>
|
8251 |
<frontend_type>multiselect</frontend_type>
|
8252 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -8289,11 +7817,7 @@
|
|
8289 |
<active>1</active>
|
8290 |
</depends>
|
8291 |
<label>Extra kosten rekenen</label>
|
8292 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
8293 |
-
van
|
8294 |
-
het
|
8295 |
-
totaalbedrag of een vast bedrag
|
8296 |
-
</comment>
|
8297 |
<frontend_type>select</frontend_type>
|
8298 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
8299 |
<sort_order>200</sort_order>
|
@@ -8307,10 +7831,7 @@
|
|
8307 |
<active>1</active>
|
8308 |
</depends>
|
8309 |
<label>Extra kosten</label>
|
8310 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
8311 |
-
decimalen,
|
8312 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
8313 |
-
</comment>
|
8314 |
<frontend_type>text</frontend_type>
|
8315 |
<sort_order>201</sort_order>
|
8316 |
<show_in_default>1</show_in_default>
|
@@ -8404,13 +7925,12 @@
|
|
8404 |
<show_in_store>1</show_in_store>
|
8405 |
<config_path>payment/pay_payment_yourgift/sort_order</config_path>
|
8406 |
</sort_order>
|
8407 |
-
<min_order_total translate="label">
|
8408 |
<depends>
|
8409 |
<active>1</active>
|
8410 |
</depends>
|
8411 |
<label>Minimum bedrag</label>
|
8412 |
-
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
8413 |
-
</comment>
|
8414 |
<frontend_type>text</frontend_type>
|
8415 |
<sort_order>5</sort_order>
|
8416 |
<show_in_default>1</show_in_default>
|
@@ -8418,13 +7938,12 @@
|
|
8418 |
<show_in_store>1</show_in_store>
|
8419 |
<config_path>payment/pay_payment_yourgift/min_order_total</config_path>
|
8420 |
</min_order_total>
|
8421 |
-
<max_order_total translate="label">
|
8422 |
<depends>
|
8423 |
<active>1</active>
|
8424 |
</depends>
|
8425 |
<label>Maximum bedrag</label>
|
8426 |
-
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden
|
8427 |
-
</comment>
|
8428 |
<frontend_type>text</frontend_type>
|
8429 |
<sort_order>6</sort_order>
|
8430 |
<show_in_default>1</show_in_default>
|
@@ -8466,10 +7985,7 @@
|
|
8466 |
<active>1</active>
|
8467 |
</depends>
|
8468 |
<label>Verzendmethoden blokkeren</label>
|
8469 |
-
<comment>
|
8470 |
-
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde
|
8471 |
-
verzendmethoden
|
8472 |
-
</comment>
|
8473 |
<frontend_type>select</frontend_type>
|
8474 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
8475 |
<sort_order>9</sort_order>
|
@@ -8483,9 +7999,7 @@
|
|
8483 |
<active>1</active>
|
8484 |
<limit_shipping>1</limit_shipping>
|
8485 |
</depends>
|
8486 |
-
<comment>
|
8487 |
-
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
8488 |
-
</comment>
|
8489 |
<label>Geblokkeerde verzendmethoden</label>
|
8490 |
<frontend_type>multiselect</frontend_type>
|
8491 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
@@ -8528,11 +8042,7 @@
|
|
8528 |
<active>1</active>
|
8529 |
</depends>
|
8530 |
<label>Extra kosten rekenen</label>
|
8531 |
-
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
|
8532 |
-
van
|
8533 |
-
het
|
8534 |
-
totaalbedrag of een vast bedrag
|
8535 |
-
</comment>
|
8536 |
<frontend_type>select</frontend_type>
|
8537 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
8538 |
<sort_order>200</sort_order>
|
@@ -8546,10 +8056,7 @@
|
|
8546 |
<active>1</active>
|
8547 |
</depends>
|
8548 |
<label>Extra kosten</label>
|
8549 |
-
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
|
8550 |
-
decimalen,
|
8551 |
-
als u geen extra kosten wilt rekenen vult u niets in
|
8552 |
-
</comment>
|
8553 |
<frontend_type>text</frontend_type>
|
8554 |
<sort_order>201</sort_order>
|
8555 |
<show_in_default>1</show_in_default>
|
18 |
<show_in_website>1</show_in_website>
|
19 |
<show_in_store>1</show_in_store>
|
20 |
<groups>
|
|
|
21 |
<general translate="label" module="pay_payment">
|
22 |
<label>Algemene instellingen</label>
|
23 |
<sort_order>1</sort_order>
|
37 |
</version>
|
38 |
<apitoken translate="label comment">
|
39 |
<label>API token</label>
|
40 |
+
<comment><![CDATA[Uw API token, deze kunt u vinden op <a href='https://admin.pay.nl/company/tokens'>admin.pay.nl/company/tokens</a>]]></comment>
|
|
|
41 |
<frontend_type>text</frontend_type>
|
42 |
<backend_model>pay_payment/Backend_Trim</backend_model>
|
43 |
<sort_order>2</sort_order>
|
47 |
</apitoken>
|
48 |
<serviceid translate="label comment">
|
49 |
<label>Service id</label>
|
50 |
+
<comment><![CDATA[Uw service id, deze kunt u vinden op <a href='https://admin.pay.nl/programs/programs'>admin.pay.nl/programs/programs</a>]]></comment>
|
|
|
51 |
<frontend_type>text</frontend_type>
|
52 |
<backend_model>pay_payment/Backend_Trim</backend_model>
|
53 |
<sort_order>3</sort_order>
|
57 |
</serviceid>
|
58 |
<testmode translate="label comment">
|
59 |
<label>Testmode</label>
|
60 |
+
<comment><![CDATA[Schakel in om alle betalingen in testmode te starten. Je kunt de betaling vervolgens bevestigen met je apitoken]]></comment>
|
|
|
|
|
61 |
<frontend_type>select</frontend_type>
|
62 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
63 |
<sort_order>4</sort_order>
|
67 |
</testmode>
|
68 |
<auto_invoice translate="label comment">
|
69 |
<label>Automatisch factureren</label>
|
70 |
+
<comment><![CDATA[Betaalde orders automatisch factureren, LET OP! Als dit op NEE staat kun je orders ook niet refunden]]></comment>
|
|
|
71 |
<frontend_type>select</frontend_type>
|
72 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
73 |
<sort_order>5</sort_order>
|
97 |
</send_statusupdates>
|
98 |
<send_order_data translate="label comment">
|
99 |
<label>Order data sturen</label>
|
100 |
+
<comment><![CDATA[Klantgegeven en orderdata naar pay versturen, verplicht indien u gebruik maakt van een achteraf betaalmethode, of wanneer u gebruik wilt maken van Second Chance]]></comment>
|
|
|
101 |
<frontend_type>select</frontend_type>
|
102 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
103 |
<sort_order>8</sort_order>
|
107 |
</send_order_data>
|
108 |
<restore_cart translate="label comment">
|
109 |
<label>Winkelwagen vullen bij cancel</label>
|
110 |
+
<comment><![CDATA[Geef aan of u wilt dat de winkelwagen weer wordt gevuld met de producten die waren besteld als de gebruiker op het betaalscherm op annuleren heeft geklikt]]></comment>
|
|
|
111 |
<frontend_type>select</frontend_type>
|
112 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
113 |
<sort_order>9</sort_order>
|
115 |
<show_in_website>1</show_in_website>
|
116 |
<show_in_store>1</show_in_store>
|
117 |
</restore_cart>
|
118 |
+
<page_success translate="label comment">
|
119 |
<label>Success pagina</label>
|
120 |
+
<comment><![CDATA[De pagina waar de gebruiker naartoe gestuurd moet worden bij een geslaagde betaling]]></comment>
|
|
|
121 |
<frontend_type>text</frontend_type>
|
122 |
<sort_order>10</sort_order>
|
123 |
<show_in_default>1</show_in_default>
|
124 |
<show_in_website>1</show_in_website>
|
125 |
<show_in_store>1</show_in_store>
|
126 |
</page_success>
|
127 |
+
<page_pending translate="label comment">
|
128 |
<label>Pending pagina</label>
|
129 |
+
<comment><![CDATA[De pagina waar de gebruiker naartoe gestuurd moet worden wanneer de betaalstatus nog pending is (bijv. bij paypal komt de statusupdate later)]]></comment>
|
|
|
130 |
<frontend_type>text</frontend_type>
|
131 |
<sort_order>11</sort_order>
|
132 |
<show_in_default>1</show_in_default>
|
133 |
<show_in_website>1</show_in_website>
|
134 |
<show_in_store>1</show_in_store>
|
135 |
</page_pending>
|
136 |
+
<page_canceled translate="label comment">
|
137 |
<label>Mislukt pagina</label>
|
138 |
+
<comment><![CDATA[De pagina waar de gebruiker naartoe gestuurd moet worden bij een mislukte/geannuleerde betaling]]></comment>
|
|
|
139 |
<frontend_type>text</frontend_type>
|
140 |
<sort_order>12</sort_order>
|
141 |
<show_in_default>1</show_in_default>
|
142 |
<show_in_website>1</show_in_website>
|
143 |
<show_in_store>1</show_in_store>
|
144 |
</page_canceled>
|
145 |
+
<user_language translate="label comment">
|
146 |
<label>Gebruikers taal</label>
|
147 |
+
<comment><![CDATA[De taalcode die naar pay.nl moet worden gestuurd, dit is van invloed op de taal van het betaalscherm en de eventuele email die naar de gebruiker wordt gestuurd door pay (bijvoorbeeld bij bankoverschrijving)]]></comment>
|
|
|
148 |
<frontend_type>select</frontend_type>
|
149 |
<source_model>pay_payment/source_language</source_model>
|
150 |
<sort_order>13</sort_order>
|
152 |
<show_in_website>1</show_in_website>
|
153 |
<show_in_store>1</show_in_store>
|
154 |
</user_language>
|
155 |
+
<show_icons translate="label comment">
|
156 |
<label>Icoontjes weergeven</label>
|
157 |
<comment><![CDATA[Icoontjes bij de betaalmethoden weergeven]]></comment>
|
158 |
<frontend_type>select</frontend_type>
|
162 |
<show_in_website>1</show_in_website>
|
163 |
<show_in_store>1</show_in_store>
|
164 |
</show_icons>
|
165 |
+
<show_fee translate="label comment">
|
166 |
<label>Betaalkosten weergeven</label>
|
167 |
<comment><![CDATA[Kosten voor de betaalmethode weergeven in de checkout]]></comment>
|
168 |
<frontend_type>select</frontend_type>
|
172 |
<show_in_website>1</show_in_website>
|
173 |
<show_in_store>1</show_in_store>
|
174 |
</show_fee>
|
175 |
+
<icon_size translate="label comment">
|
176 |
+
<label>Icon size</label>
|
177 |
+
<comment><![CDATA[Selecteer hoe groot de icoontjes van de betaalmethoden moeten zijn]]></comment>
|
|
|
178 |
<frontend_type>select</frontend_type>
|
179 |
<source_model>pay_payment/source_iconsize</source_model>
|
180 |
<sort_order>16</sort_order>
|
191 |
<show_in_website>1</show_in_website>
|
192 |
<show_in_store>1</show_in_store>
|
193 |
</text_payment_charge>
|
194 |
+
<use_backup_api translate="label comment">
|
195 |
<label>Gateway</label>
|
196 |
+
<comment><![CDATA[Gebruik de standard gateway, op <a href='http://status-pay.nl'>status-pay.nl</a> kunt u de status van onze techniek volgen]]></comment>
|
|
|
197 |
<frontend_type>select</frontend_type>
|
198 |
<source_model>pay_payment/source_gateway</source_model>
|
199 |
<sort_order>18</sort_order>
|
200 |
<show_in_default>1</show_in_default>
|
201 |
</use_backup_api>
|
202 |
+
<backup_api_url translate="label comment">
|
203 |
<depends>
|
204 |
<use_backup_api>1</use_backup_api>
|
205 |
</depends>
|
206 |
+
<comment>Vul hier de locatie van de failover gateway in die door pay.nl is verstrekt</comment>
|
|
|
207 |
<label>Failover gateway</label>
|
208 |
<frontend_type>text</frontend_type>
|
209 |
<sort_order>19</sort_order>
|
210 |
<show_in_default>1</show_in_default>
|
211 |
</backup_api_url>
|
212 |
+
<enable_refund translate="label comment">
|
213 |
<label>Refunden inschakelen</label>
|
214 |
<comment>Schakel dit uit indien u het rechstreeks refunden wilt uitschakelen</comment>
|
215 |
<frontend_type>select</frontend_type>
|
217 |
<sort_order>20</sort_order>
|
218 |
<show_in_default>1</show_in_default>
|
219 |
</enable_refund>
|
220 |
+
<show_in_admin translate="label comment">
|
221 |
<label>Alle betaalmethoden weergegeven in admin</label>
|
222 |
<comment>Schakel dit in om alle betaalmethoden selecteerbaar te maken in de admin, er wordt geen betaling gestart</comment>
|
223 |
<frontend_type>select</frontend_type>
|
235 |
<show_in_store>1</show_in_store>
|
236 |
<expanded>1</expanded>
|
237 |
<fields>
|
238 |
+
<test123 translate="label comment">
|
239 |
<label>Beschikbaar</label>
|
240 |
+
<comment>Hierboven ziet u de betaalmethoden die voor uw account bij pay.nl beschikbaar zijn</comment>
|
|
|
|
|
241 |
<sort_order>3</sort_order>
|
242 |
<show_in_default>1</show_in_default>
|
243 |
<show_in_website>1</show_in_website>
|
254 |
<show_in_website>1</show_in_website>
|
255 |
<show_in_store>1</show_in_store>
|
256 |
<fields>
|
257 |
+
<active translate="label comment">
|
258 |
<label>Actief</label>
|
259 |
<comment>Wilt u deze betaalmethode gebruiken</comment>
|
260 |
<sort_order>1</sort_order>
|
277 |
<show_in_store>1</show_in_store>
|
278 |
<config_path>payment/pay_payment_paylink/title</config_path>
|
279 |
</title>
|
280 |
+
<order_status translate="label comment">
|
281 |
<depends>
|
282 |
<active>1</active>
|
283 |
</depends>
|
291 |
<show_in_store>1</show_in_store>
|
292 |
<config_path>payment/pay_payment_paylink/order_status</config_path>
|
293 |
</order_status>
|
294 |
+
<order_status_success translate="label comment">
|
295 |
<depends>
|
296 |
<active>1</active>
|
297 |
</depends>
|
305 |
<show_in_store>1</show_in_store>
|
306 |
<config_path>payment/pay_payment_paylink/order_status_success</config_path>
|
307 |
</order_status_success>
|
308 |
+
<charge_type translate="label comment">
|
309 |
<depends>
|
310 |
<active>1</active>
|
311 |
</depends>
|
312 |
<label>Extra kosten rekenen</label>
|
313 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
314 |
<frontend_type>select</frontend_type>
|
315 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
316 |
<sort_order>200</sort_order>
|
319 |
<show_in_store>1</show_in_store>
|
320 |
<config_path>payment/pay_payment_paylink/charge_type</config_path>
|
321 |
</charge_type>
|
322 |
+
<charge_value translate="label comment">
|
323 |
<depends>
|
324 |
<active>1</active>
|
325 |
</depends>
|
326 |
<label>Extra kosten</label>
|
327 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
328 |
<frontend_type>text</frontend_type>
|
329 |
<sort_order>201</sort_order>
|
330 |
<show_in_default>1</show_in_default>
|
345 |
<show_in_store>1</show_in_store>
|
346 |
<config_path>payment/pay_payment_paylink/charge_tax_class</config_path>
|
347 |
</charge_tax_class>
|
348 |
+
<send_mail translate="label comment">
|
349 |
<depends>
|
350 |
<active>1</active>
|
351 |
</depends>
|
383 |
<show_in_website>1</show_in_website>
|
384 |
<show_in_store>1</show_in_store>
|
385 |
<fields>
|
386 |
+
<active translate="label comment">
|
387 |
<label>Actief</label>
|
388 |
<comment>Wilt u deze betaalmethode gebruiken</comment>
|
389 |
<sort_order>1</sort_order>
|
418 |
<show_in_store>1</show_in_store>
|
419 |
<config_path>payment/pay_payment_afterpay/sort_order</config_path>
|
420 |
</sort_order>
|
421 |
+
<min_order_total translate="label comment">
|
422 |
<depends>
|
423 |
<active>1</active>
|
424 |
</depends>
|
425 |
<label>Minimum bedrag</label>
|
426 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
427 |
<frontend_type>text</frontend_type>
|
428 |
<sort_order>5</sort_order>
|
429 |
<show_in_default>1</show_in_default>
|
431 |
<show_in_store>1</show_in_store>
|
432 |
<config_path>payment/pay_payment_afterpay/min_order_total</config_path>
|
433 |
</min_order_total>
|
434 |
+
<max_order_total translate="label comment">
|
435 |
<depends>
|
436 |
<active>1</active>
|
437 |
</depends>
|
438 |
<label>Maximum bedrag</label>
|
439 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
440 |
<frontend_type>text</frontend_type>
|
441 |
<sort_order>6</sort_order>
|
442 |
<show_in_default>1</show_in_default>
|
450 |
</depends>
|
451 |
<label>Beschikbaarheid per land</label>
|
452 |
<frontend_type>allowspecific</frontend_type>
|
453 |
+
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
|
|
454 |
<sort_order>7</sort_order>
|
455 |
<show_in_default>1</show_in_default>
|
456 |
<show_in_website>1</show_in_website>
|
457 |
<show_in_store>1</show_in_store>
|
458 |
<config_path>payment/pay_payment_afterpay/allowspecific</config_path>
|
459 |
</allowspecific>
|
460 |
+
<specificcountry translate="label comment">
|
461 |
<depends>
|
462 |
<active>1</active>
|
463 |
<allowspecific>1</allowspecific>
|
472 |
<comment>Selecteer de landen waarvoor deze betaalmethode beschikbaar is</comment>
|
473 |
<config_path>payment/pay_payment_afterpay/specificcountry</config_path>
|
474 |
</specificcountry>
|
475 |
+
<limit_shipping translate="label comment">
|
476 |
<depends>
|
477 |
<active>1</active>
|
478 |
</depends>
|
479 |
<label>Verzendmethoden blokkeren</label>
|
480 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
481 |
<frontend_type>select</frontend_type>
|
482 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
483 |
<sort_order>9</sort_order>
|
486 |
<show_in_store>1</show_in_store>
|
487 |
<config_path>payment/pay_payment_afterpay/limit_shipping</config_path>
|
488 |
</limit_shipping>
|
489 |
+
<disabled_shippingmethods translate="label comment">
|
490 |
<depends>
|
491 |
<active>1</active>
|
492 |
<limit_shipping>1</limit_shipping>
|
493 |
</depends>
|
494 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
495 |
<label>Geblokkeerde verzendmethoden</label>
|
496 |
<frontend_type>multiselect</frontend_type>
|
497 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
501 |
<show_in_store>1</show_in_store>
|
502 |
<config_path>payment/pay_payment_afterpay/disabled_shippingmethods</config_path>
|
503 |
</disabled_shippingmethods>
|
504 |
+
<order_status translate="label comment">
|
505 |
<depends>
|
506 |
<active>1</active>
|
507 |
</depends>
|
515 |
<show_in_store>1</show_in_store>
|
516 |
<config_path>payment/pay_payment_afterpay/order_status</config_path>
|
517 |
</order_status>
|
518 |
+
<order_status_success translate="label comment">
|
519 |
<depends>
|
520 |
<active>1</active>
|
521 |
</depends>
|
529 |
<show_in_store>1</show_in_store>
|
530 |
<config_path>payment/pay_payment_afterpay/order_status_success</config_path>
|
531 |
</order_status_success>
|
532 |
+
<charge_type translate="label comment">
|
533 |
<depends>
|
534 |
<active>1</active>
|
535 |
</depends>
|
536 |
<label>Extra kosten rekenen</label>
|
537 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
538 |
<frontend_type>select</frontend_type>
|
539 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
540 |
<sort_order>200</sort_order>
|
548 |
<active>1</active>
|
549 |
</depends>
|
550 |
<label>Extra kosten</label>
|
551 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
552 |
<frontend_type>text</frontend_type>
|
553 |
<sort_order>201</sort_order>
|
554 |
<show_in_default>1</show_in_default>
|
607 |
<show_in_website>1</show_in_website>
|
608 |
<show_in_store>1</show_in_store>
|
609 |
<fields>
|
610 |
+
<active translate="label comment">
|
611 |
<label>Actief</label>
|
612 |
<comment>Wilt u deze betaalmethode gebruiken</comment>
|
613 |
<sort_order>1</sort_order>
|
642 |
<show_in_store>1</show_in_store>
|
643 |
<config_path>payment/pay_payment_afterpayem/sort_order</config_path>
|
644 |
</sort_order>
|
645 |
+
<min_order_total translate="label comment">
|
646 |
<depends>
|
647 |
<active>1</active>
|
648 |
</depends>
|
649 |
<label>Minimum bedrag</label>
|
650 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
651 |
<frontend_type>text</frontend_type>
|
652 |
<sort_order>5</sort_order>
|
653 |
<show_in_default>1</show_in_default>
|
655 |
<show_in_store>1</show_in_store>
|
656 |
<config_path>payment/pay_payment_afterpayem/min_order_total</config_path>
|
657 |
</min_order_total>
|
658 |
+
<max_order_total translate="label comment">
|
659 |
<depends>
|
660 |
<active>1</active>
|
661 |
</depends>
|
662 |
<label>Maximum bedrag</label>
|
663 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
664 |
<frontend_type>text</frontend_type>
|
665 |
<sort_order>6</sort_order>
|
666 |
<show_in_default>1</show_in_default>
|
682 |
<show_in_store>1</show_in_store>
|
683 |
<config_path>payment/pay_payment_afterpayem/allowspecific</config_path>
|
684 |
</allowspecific>
|
685 |
+
<specificcountry translate="label comment">
|
686 |
<depends>
|
687 |
<active>1</active>
|
688 |
<allowspecific>1</allowspecific>
|
697 |
<comment>Selecteer de landen waarvoor deze betaalmethode beschikbaar is</comment>
|
698 |
<config_path>payment/pay_payment_afterpayem/specificcountry</config_path>
|
699 |
</specificcountry>
|
700 |
+
<limit_shipping translate="label comment">
|
701 |
<depends>
|
702 |
<active>1</active>
|
703 |
</depends>
|
704 |
<label>Verzendmethoden blokkeren</label>
|
705 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
706 |
<frontend_type>select</frontend_type>
|
707 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
708 |
<sort_order>9</sort_order>
|
711 |
<show_in_store>1</show_in_store>
|
712 |
<config_path>payment/pay_payment_afterpayem/limit_shipping</config_path>
|
713 |
</limit_shipping>
|
714 |
+
<disabled_shippingmethods translate="label comment">
|
715 |
<depends>
|
716 |
<active>1</active>
|
717 |
<limit_shipping>1</limit_shipping>
|
718 |
</depends>
|
719 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
720 |
<label>Geblokkeerde verzendmethoden</label>
|
721 |
<frontend_type>multiselect</frontend_type>
|
722 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
726 |
<show_in_store>1</show_in_store>
|
727 |
<config_path>payment/pay_payment_afterpayem/disabled_shippingmethods</config_path>
|
728 |
</disabled_shippingmethods>
|
729 |
+
<order_status translate="label comment">
|
730 |
<depends>
|
731 |
<active>1</active>
|
732 |
</depends>
|
740 |
<show_in_store>1</show_in_store>
|
741 |
<config_path>payment/pay_payment_afterpayem/order_status</config_path>
|
742 |
</order_status>
|
743 |
+
<order_status_success translate="label comment">
|
744 |
<depends>
|
745 |
<active>1</active>
|
746 |
</depends>
|
754 |
<show_in_store>1</show_in_store>
|
755 |
<config_path>payment/pay_payment_afterpayem/order_status_success</config_path>
|
756 |
</order_status_success>
|
757 |
+
<charge_type translate="label comment">
|
758 |
<depends>
|
759 |
<active>1</active>
|
760 |
</depends>
|
761 |
<label>Extra kosten rekenen</label>
|
762 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
763 |
<frontend_type>select</frontend_type>
|
764 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
765 |
<sort_order>200</sort_order>
|
768 |
<show_in_store>1</show_in_store>
|
769 |
<config_path>payment/pay_payment_afterpayem/charge_type</config_path>
|
770 |
</charge_type>
|
771 |
+
<charge_value translate="label comment">
|
772 |
<depends>
|
773 |
<active>1</active>
|
774 |
</depends>
|
775 |
<label>Extra kosten</label>
|
776 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
777 |
<frontend_type>text</frontend_type>
|
778 |
<sort_order>201</sort_order>
|
779 |
<show_in_default>1</show_in_default>
|
794 |
<show_in_store>1</show_in_store>
|
795 |
<config_path>payment/pay_payment_afterpayem/charge_tax_class</config_path>
|
796 |
</charge_tax_class>
|
797 |
+
<send_mail translate="label comment">
|
798 |
<depends>
|
799 |
<active>1</active>
|
800 |
</depends>
|
867 |
<show_in_store>1</show_in_store>
|
868 |
<config_path>payment/pay_payment_amex/sort_order</config_path>
|
869 |
</sort_order>
|
870 |
+
<min_order_total translate="label comment">
|
871 |
<depends>
|
872 |
<active>1</active>
|
873 |
</depends>
|
874 |
<label>Minimum bedrag</label>
|
875 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
876 |
<frontend_type>text</frontend_type>
|
877 |
<sort_order>5</sort_order>
|
878 |
<show_in_default>1</show_in_default>
|
880 |
<show_in_store>1</show_in_store>
|
881 |
<config_path>payment/pay_payment_amex/min_order_total</config_path>
|
882 |
</min_order_total>
|
883 |
+
<max_order_total translate="label comment">
|
884 |
<depends>
|
885 |
<active>1</active>
|
886 |
</depends>
|
887 |
<label>Maximum bedrag</label>
|
888 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
889 |
<frontend_type>text</frontend_type>
|
890 |
<sort_order>6</sort_order>
|
891 |
<show_in_default>1</show_in_default>
|
922 |
<comment>Selecteer de landen waarvoor deze betaalmethode beschikbaar is</comment>
|
923 |
<config_path>payment/pay_payment_amex/specificcountry</config_path>
|
924 |
</specificcountry>
|
925 |
+
<limit_shipping translate="label comment">
|
926 |
<depends>
|
927 |
<active>1</active>
|
928 |
</depends>
|
929 |
<label>Verzendmethoden blokkeren</label>
|
930 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
931 |
<frontend_type>select</frontend_type>
|
932 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
933 |
<sort_order>9</sort_order>
|
936 |
<show_in_store>1</show_in_store>
|
937 |
<config_path>payment/pay_payment_amex/limit_shipping</config_path>
|
938 |
</limit_shipping>
|
939 |
+
<disabled_shippingmethods translate="label comment">
|
940 |
<depends>
|
941 |
<active>1</active>
|
942 |
<limit_shipping>1</limit_shipping>
|
943 |
</depends>
|
944 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
945 |
<label>Geblokkeerde verzendmethoden</label>
|
946 |
<frontend_type>multiselect</frontend_type>
|
947 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
984 |
<active>1</active>
|
985 |
</depends>
|
986 |
<label>Extra kosten rekenen</label>
|
987 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag
|
|
|
|
|
|
|
988 |
</comment>
|
989 |
<frontend_type>select</frontend_type>
|
990 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
999 |
<active>1</active>
|
1000 |
</depends>
|
1001 |
<label>Extra kosten</label>
|
1002 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
1003 |
<frontend_type>text</frontend_type>
|
1004 |
<sort_order>201</sort_order>
|
1005 |
<show_in_default>1</show_in_default>
|
1098 |
<active>1</active>
|
1099 |
</depends>
|
1100 |
<label>Minimum bedrag</label>
|
1101 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
1102 |
<frontend_type>text</frontend_type>
|
1103 |
<sort_order>5</sort_order>
|
1104 |
<show_in_default>1</show_in_default>
|
1106 |
<show_in_store>1</show_in_store>
|
1107 |
<config_path>payment/pay_payment_billink/min_order_total</config_path>
|
1108 |
</min_order_total>
|
1109 |
+
<max_order_total translate="label comment">
|
1110 |
<depends>
|
1111 |
<active>1</active>
|
1112 |
</depends>
|
1113 |
<label>Maximum bedrag</label>
|
1114 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
1115 |
<frontend_type>text</frontend_type>
|
1116 |
<sort_order>6</sort_order>
|
1117 |
<show_in_default>1</show_in_default>
|
1119 |
<show_in_store>1</show_in_store>
|
1120 |
<config_path>payment/pay_payment_billink/max_order_total</config_path>
|
1121 |
</max_order_total>
|
1122 |
+
<ask_data_personal translate="label comment">
|
1123 |
<depends>
|
1124 |
<active>1</active>
|
1125 |
</depends>
|
1126 |
<label>Persoonlijk inschakelen</label>
|
1127 |
+
<comment>Geboortedatum vragen, zodat persoonlijke bestellingen rechtstreeks worden doorgestuurd zonder tussenscherm</comment>
|
|
|
|
|
1128 |
<frontend_type>select</frontend_type>
|
1129 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1130 |
<sort_order>7</sort_order>
|
1133 |
<show_in_store>1</show_in_store>
|
1134 |
<config_path>payment/pay_payment_billink/ask_data_personal</config_path>
|
1135 |
</ask_data_personal>
|
1136 |
+
<ask_data_business translate="label">
|
1137 |
<depends>
|
1138 |
<active>1</active>
|
1139 |
</depends>
|
1176 |
<comment>Selecteer de landen waarvoor deze betaalmethode beschikbaar is</comment>
|
1177 |
<config_path>payment/pay_payment_billink/specificcountry</config_path>
|
1178 |
</specificcountry>
|
1179 |
+
<limit_shipping translate="label comment">
|
1180 |
<depends>
|
1181 |
<active>1</active>
|
1182 |
</depends>
|
1183 |
<label>Verzendmethoden blokkeren</label>
|
1184 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
1185 |
<frontend_type>select</frontend_type>
|
1186 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1187 |
<sort_order>9</sort_order>
|
1195 |
<active>1</active>
|
1196 |
<limit_shipping>1</limit_shipping>
|
1197 |
</depends>
|
1198 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
1199 |
<label>Geblokkeerde verzendmethoden</label>
|
1200 |
<frontend_type>multiselect</frontend_type>
|
1201 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
1238 |
<active>1</active>
|
1239 |
</depends>
|
1240 |
<label>Extra kosten rekenen</label>
|
1241 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
1242 |
<frontend_type>select</frontend_type>
|
1243 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
1244 |
<sort_order>200</sort_order>
|
1252 |
<active>1</active>
|
1253 |
</depends>
|
1254 |
<label>Extra kosten</label>
|
1255 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
1256 |
<frontend_type>text</frontend_type>
|
1257 |
<sort_order>201</sort_order>
|
1258 |
<show_in_default>1</show_in_default>
|
1346 |
<show_in_store>1</show_in_store>
|
1347 |
<config_path>payment/pay_payment_bitcoin/sort_order</config_path>
|
1348 |
</sort_order>
|
1349 |
+
<min_order_total translate="label comment">
|
1350 |
<depends>
|
1351 |
<active>1</active>
|
1352 |
</depends>
|
1353 |
<label>Minimum bedrag</label>
|
1354 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
1355 |
<frontend_type>text</frontend_type>
|
1356 |
<sort_order>5</sort_order>
|
1357 |
<show_in_default>1</show_in_default>
|
1359 |
<show_in_store>1</show_in_store>
|
1360 |
<config_path>payment/pay_payment_bitcoin/min_order_total</config_path>
|
1361 |
</min_order_total>
|
1362 |
+
<max_order_total translate="label comment">
|
1363 |
<depends>
|
1364 |
<active>1</active>
|
1365 |
</depends>
|
1366 |
<label>Maximum bedrag</label>
|
1367 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
1368 |
<frontend_type>text</frontend_type>
|
1369 |
<sort_order>6</sort_order>
|
1370 |
<show_in_default>1</show_in_default>
|
1406 |
<active>1</active>
|
1407 |
</depends>
|
1408 |
<label>Verzendmethoden blokkeren</label>
|
1409 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
1410 |
<frontend_type>select</frontend_type>
|
1411 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1412 |
<sort_order>9</sort_order>
|
1420 |
<active>1</active>
|
1421 |
<limit_shipping>1</limit_shipping>
|
1422 |
</depends>
|
1423 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
1424 |
<label>Geblokkeerde verzendmethoden</label>
|
1425 |
<frontend_type>multiselect</frontend_type>
|
1426 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
1463 |
<active>1</active>
|
1464 |
</depends>
|
1465 |
<label>Extra kosten rekenen</label>
|
1466 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
1467 |
<frontend_type>select</frontend_type>
|
1468 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
1469 |
<sort_order>200</sort_order>
|
1477 |
<active>1</active>
|
1478 |
</depends>
|
1479 |
<label>Extra kosten</label>
|
1480 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
1481 |
<frontend_type>text</frontend_type>
|
1482 |
<sort_order>201</sort_order>
|
1483 |
<show_in_default>1</show_in_default>
|
1571 |
<show_in_store>1</show_in_store>
|
1572 |
<config_path>payment/pay_payment_capayable/sort_order</config_path>
|
1573 |
</sort_order>
|
1574 |
+
<min_order_total translate="label comment">
|
1575 |
<depends>
|
1576 |
<active>1</active>
|
1577 |
</depends>
|
1578 |
<label>Minimum bedrag</label>
|
1579 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
1580 |
<frontend_type>text</frontend_type>
|
1581 |
<sort_order>5</sort_order>
|
1582 |
<show_in_default>1</show_in_default>
|
1632 |
<active>1</active>
|
1633 |
</depends>
|
1634 |
<label>Verzendmethoden blokkeren</label>
|
1635 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
1636 |
<frontend_type>select</frontend_type>
|
1637 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1638 |
<sort_order>9</sort_order>
|
1646 |
<active>1</active>
|
1647 |
<limit_shipping>1</limit_shipping>
|
1648 |
</depends>
|
1649 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
1650 |
<label>Geblokkeerde verzendmethoden</label>
|
1651 |
<frontend_type>multiselect</frontend_type>
|
1652 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
1689 |
<active>1</active>
|
1690 |
</depends>
|
1691 |
<label>Extra kosten rekenen</label>
|
1692 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
1693 |
<frontend_type>select</frontend_type>
|
1694 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
1695 |
<sort_order>200</sort_order>
|
1703 |
<active>1</active>
|
1704 |
</depends>
|
1705 |
<label>Extra kosten</label>
|
1706 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
1707 |
<frontend_type>text</frontend_type>
|
1708 |
<sort_order>201</sort_order>
|
1709 |
<show_in_default>1</show_in_default>
|
1798 |
<show_in_store>1</show_in_store>
|
1799 |
<config_path>payment/pay_payment_capayablegespreid/sort_order</config_path>
|
1800 |
</sort_order>
|
1801 |
+
<min_order_total translate="label comment">
|
1802 |
<depends>
|
1803 |
<active>1</active>
|
1804 |
</depends>
|
1805 |
<label>Minimum bedrag</label>
|
1806 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
1807 |
<frontend_type>text</frontend_type>
|
1808 |
<sort_order>5</sort_order>
|
1809 |
<show_in_default>1</show_in_default>
|
1859 |
<active>1</active>
|
1860 |
</depends>
|
1861 |
<label>Verzendmethoden blokkeren</label>
|
1862 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
1863 |
<frontend_type>select</frontend_type>
|
1864 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1865 |
<sort_order>9</sort_order>
|
1873 |
<active>1</active>
|
1874 |
<limit_shipping>1</limit_shipping>
|
1875 |
</depends>
|
1876 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
1877 |
<label>Geblokkeerde verzendmethoden</label>
|
1878 |
<frontend_type>multiselect</frontend_type>
|
1879 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
1916 |
<active>1</active>
|
1917 |
</depends>
|
1918 |
<label>Extra kosten rekenen</label>
|
1919 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
1920 |
<frontend_type>select</frontend_type>
|
1921 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
1922 |
<sort_order>200</sort_order>
|
1930 |
<active>1</active>
|
1931 |
</depends>
|
1932 |
<label>Extra kosten</label>
|
1933 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
1934 |
<frontend_type>text</frontend_type>
|
1935 |
<sort_order>201</sort_order>
|
1936 |
<show_in_default>1</show_in_default>
|
2024 |
<show_in_store>1</show_in_store>
|
2025 |
<config_path>payment/pay_payment_cartebleue/sort_order</config_path>
|
2026 |
</sort_order>
|
2027 |
+
<min_order_total translate="label comment">
|
2028 |
<depends>
|
2029 |
<active>1</active>
|
2030 |
</depends>
|
2031 |
<label>Minimum bedrag</label>
|
2032 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
2033 |
<frontend_type>text</frontend_type>
|
2034 |
<sort_order>5</sort_order>
|
2035 |
<show_in_default>1</show_in_default>
|
2085 |
<active>1</active>
|
2086 |
</depends>
|
2087 |
<label>Verzendmethoden blokkeren</label>
|
2088 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
2089 |
<frontend_type>select</frontend_type>
|
2090 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
2091 |
<sort_order>9</sort_order>
|
2099 |
<active>1</active>
|
2100 |
<limit_shipping>1</limit_shipping>
|
2101 |
</depends>
|
2102 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
2103 |
<label>Geblokkeerde verzendmethoden</label>
|
2104 |
<frontend_type>multiselect</frontend_type>
|
2105 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
2142 |
<active>1</active>
|
2143 |
</depends>
|
2144 |
<label>Extra kosten rekenen</label>
|
2145 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
2146 |
<frontend_type>select</frontend_type>
|
2147 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
2148 |
<sort_order>200</sort_order>
|
2156 |
<active>1</active>
|
2157 |
</depends>
|
2158 |
<label>Extra kosten</label>
|
2159 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
2160 |
<frontend_type>text</frontend_type>
|
2161 |
<sort_order>201</sort_order>
|
2162 |
<show_in_default>1</show_in_default>
|
2250 |
<show_in_store>1</show_in_store>
|
2251 |
<config_path>payment/pay_payment_fashioncheque/sort_order</config_path>
|
2252 |
</sort_order>
|
2253 |
+
<min_order_total translate="label comment">
|
2254 |
<depends>
|
2255 |
<active>1</active>
|
2256 |
</depends>
|
2257 |
<label>Minimum bedrag</label>
|
2258 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
2259 |
<frontend_type>text</frontend_type>
|
2260 |
<sort_order>5</sort_order>
|
2261 |
<show_in_default>1</show_in_default>
|
2311 |
<active>1</active>
|
2312 |
</depends>
|
2313 |
<label>Verzendmethoden blokkeren</label>
|
2314 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
2315 |
<frontend_type>select</frontend_type>
|
2316 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
2317 |
<sort_order>9</sort_order>
|
2325 |
<active>1</active>
|
2326 |
<limit_shipping>1</limit_shipping>
|
2327 |
</depends>
|
2328 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
2329 |
<label>Geblokkeerde verzendmethoden</label>
|
2330 |
<frontend_type>multiselect</frontend_type>
|
2331 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
2368 |
<active>1</active>
|
2369 |
</depends>
|
2370 |
<label>Extra kosten rekenen</label>
|
2371 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
2372 |
<frontend_type>select</frontend_type>
|
2373 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
2374 |
<sort_order>200</sort_order>
|
2382 |
<active>1</active>
|
2383 |
</depends>
|
2384 |
<label>Extra kosten</label>
|
2385 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
2386 |
<frontend_type>text</frontend_type>
|
2387 |
<sort_order>201</sort_order>
|
2388 |
<show_in_default>1</show_in_default>
|
2476 |
<show_in_store>1</show_in_store>
|
2477 |
<config_path>payment/pay_payment_fashiongiftcard/sort_order</config_path>
|
2478 |
</sort_order>
|
2479 |
+
<min_order_total translate="label comment">
|
2480 |
<depends>
|
2481 |
<active>1</active>
|
2482 |
</depends>
|
2483 |
<label>Minimum bedrag</label>
|
2484 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
2485 |
<frontend_type>text</frontend_type>
|
2486 |
<sort_order>5</sort_order>
|
2487 |
<show_in_default>1</show_in_default>
|
2537 |
<active>1</active>
|
2538 |
</depends>
|
2539 |
<label>Verzendmethoden blokkeren</label>
|
2540 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
2541 |
<frontend_type>select</frontend_type>
|
2542 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
2543 |
<sort_order>9</sort_order>
|
2551 |
<active>1</active>
|
2552 |
<limit_shipping>1</limit_shipping>
|
2553 |
</depends>
|
2554 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
2555 |
<label>Geblokkeerde verzendmethoden</label>
|
2556 |
<frontend_type>multiselect</frontend_type>
|
2557 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
2594 |
<active>1</active>
|
2595 |
</depends>
|
2596 |
<label>Extra kosten rekenen</label>
|
2597 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
2598 |
<frontend_type>select</frontend_type>
|
2599 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
2600 |
<sort_order>200</sort_order>
|
2608 |
<active>1</active>
|
2609 |
</depends>
|
2610 |
<label>Extra kosten</label>
|
2611 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
2612 |
<frontend_type>text</frontend_type>
|
2613 |
<sort_order>201</sort_order>
|
2614 |
<show_in_default>1</show_in_default>
|
2702 |
<show_in_store>1</show_in_store>
|
2703 |
<config_path>payment/pay_payment_focum/sort_order</config_path>
|
2704 |
</sort_order>
|
2705 |
+
<min_order_total translate="label comment">
|
2706 |
<depends>
|
2707 |
<active>1</active>
|
2708 |
</depends>
|
2709 |
<label>Minimum bedrag</label>
|
2710 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
2711 |
<frontend_type>text</frontend_type>
|
2712 |
<sort_order>5</sort_order>
|
2713 |
<show_in_default>1</show_in_default>
|
2763 |
<active>1</active>
|
2764 |
</depends>
|
2765 |
<label>Verzendmethoden blokkeren</label>
|
2766 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
2767 |
<frontend_type>select</frontend_type>
|
2768 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
2769 |
<sort_order>9</sort_order>
|
2777 |
<active>1</active>
|
2778 |
<limit_shipping>1</limit_shipping>
|
2779 |
</depends>
|
2780 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
2781 |
<label>Geblokkeerde verzendmethoden</label>
|
2782 |
<frontend_type>multiselect</frontend_type>
|
2783 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
2820 |
<active>1</active>
|
2821 |
</depends>
|
2822 |
<label>Extra kosten rekenen</label>
|
2823 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
2824 |
<frontend_type>select</frontend_type>
|
2825 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
2826 |
<sort_order>200</sort_order>
|
2834 |
<active>1</active>
|
2835 |
</depends>
|
2836 |
<label>Extra kosten</label>
|
2837 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
2838 |
<frontend_type>text</frontend_type>
|
2839 |
<sort_order>201</sort_order>
|
2840 |
<show_in_default>1</show_in_default>
|
2928 |
<show_in_store>1</show_in_store>
|
2929 |
<config_path>payment/pay_payment_gezondheidsbon/sort_order</config_path>
|
2930 |
</sort_order>
|
2931 |
+
<min_order_total translate="label comment">
|
2932 |
<depends>
|
2933 |
<active>1</active>
|
2934 |
</depends>
|
2935 |
<label>Minimum bedrag</label>
|
2936 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
2937 |
<frontend_type>text</frontend_type>
|
2938 |
<sort_order>5</sort_order>
|
2939 |
<show_in_default>1</show_in_default>
|
2989 |
<active>1</active>
|
2990 |
</depends>
|
2991 |
<label>Verzendmethoden blokkeren</label>
|
2992 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
2993 |
<frontend_type>select</frontend_type>
|
2994 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
2995 |
<sort_order>9</sort_order>
|
3003 |
<active>1</active>
|
3004 |
<limit_shipping>1</limit_shipping>
|
3005 |
</depends>
|
3006 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
3007 |
<label>Geblokkeerde verzendmethoden</label>
|
3008 |
<frontend_type>multiselect</frontend_type>
|
3009 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
3046 |
<active>1</active>
|
3047 |
</depends>
|
3048 |
<label>Extra kosten rekenen</label>
|
3049 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
3050 |
<frontend_type>select</frontend_type>
|
3051 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
3052 |
<sort_order>200</sort_order>
|
3060 |
<active>1</active>
|
3061 |
</depends>
|
3062 |
<label>Extra kosten</label>
|
3063 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
3064 |
<frontend_type>text</frontend_type>
|
3065 |
<sort_order>201</sort_order>
|
3066 |
<show_in_default>1</show_in_default>
|
3154 |
<show_in_store>1</show_in_store>
|
3155 |
<config_path>payment/pay_payment_giropay/sort_order</config_path>
|
3156 |
</sort_order>
|
3157 |
+
<min_order_total translate="label comment">
|
3158 |
<depends>
|
3159 |
<active>1</active>
|
3160 |
</depends>
|
3161 |
<label>Minimum bedrag</label>
|
3162 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
3163 |
<frontend_type>text</frontend_type>
|
3164 |
<sort_order>5</sort_order>
|
3165 |
<show_in_default>1</show_in_default>
|
3215 |
<active>1</active>
|
3216 |
</depends>
|
3217 |
<label>Verzendmethoden blokkeren</label>
|
3218 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
3219 |
<frontend_type>select</frontend_type>
|
3220 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
3221 |
<sort_order>9</sort_order>
|
3229 |
<active>1</active>
|
3230 |
<limit_shipping>1</limit_shipping>
|
3231 |
</depends>
|
3232 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
3233 |
<label>Geblokkeerde verzendmethoden</label>
|
3234 |
<frontend_type>multiselect</frontend_type>
|
3235 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
3272 |
<active>1</active>
|
3273 |
</depends>
|
3274 |
<label>Extra kosten rekenen</label>
|
3275 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
3276 |
<frontend_type>select</frontend_type>
|
3277 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
3278 |
<sort_order>200</sort_order>
|
3286 |
<active>1</active>
|
3287 |
</depends>
|
3288 |
<label>Extra kosten</label>
|
3289 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
3290 |
<frontend_type>text</frontend_type>
|
3291 |
<sort_order>201</sort_order>
|
3292 |
<show_in_default>1</show_in_default>
|
3380 |
<show_in_store>1</show_in_store>
|
3381 |
<config_path>payment/pay_payment_givacard/sort_order</config_path>
|
3382 |
</sort_order>
|
3383 |
+
<min_order_total translate="label comment">
|
3384 |
<depends>
|
3385 |
<active>1</active>
|
3386 |
</depends>
|
3387 |
<label>Minimum bedrag</label>
|
3388 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
3389 |
<frontend_type>text</frontend_type>
|
3390 |
<sort_order>5</sort_order>
|
3391 |
<show_in_default>1</show_in_default>
|
3441 |
<active>1</active>
|
3442 |
</depends>
|
3443 |
<label>Verzendmethoden blokkeren</label>
|
3444 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
3445 |
<frontend_type>select</frontend_type>
|
3446 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
3447 |
<sort_order>9</sort_order>
|
3455 |
<active>1</active>
|
3456 |
<limit_shipping>1</limit_shipping>
|
3457 |
</depends>
|
3458 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
3459 |
<label>Geblokkeerde verzendmethoden</label>
|
3460 |
<frontend_type>multiselect</frontend_type>
|
3461 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
3498 |
<active>1</active>
|
3499 |
</depends>
|
3500 |
<label>Extra kosten rekenen</label>
|
3501 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
3502 |
<frontend_type>select</frontend_type>
|
3503 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
3504 |
<sort_order>200</sort_order>
|
3512 |
<active>1</active>
|
3513 |
</depends>
|
3514 |
<label>Extra kosten</label>
|
3515 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
3516 |
<frontend_type>text</frontend_type>
|
3517 |
<sort_order>201</sort_order>
|
3518 |
<show_in_default>1</show_in_default>
|
3599 |
<active>1</active>
|
3600 |
</depends>
|
3601 |
<label>Bank selectie type</label>
|
3602 |
+
<comment>Kies of je de bankselectie met een selectbox of met radiobuttons wilt weergeven in checkout
|
|
|
|
|
|
|
3603 |
</comment>
|
3604 |
<frontend_type>select</frontend_type>
|
3605 |
<source_model>pay_payment/source_paymentmethod_ideal_selecttype</source_model>
|
3633 |
<show_in_store>1</show_in_store>
|
3634 |
<config_path>payment/pay_payment_ideal/sort_order</config_path>
|
3635 |
</sort_order>
|
3636 |
+
<min_order_total translate="label comment">
|
3637 |
<depends>
|
3638 |
<active>1</active>
|
3639 |
</depends>
|
3640 |
<label>Minimum bedrag</label>
|
3641 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
3642 |
<frontend_type>text</frontend_type>
|
3643 |
<sort_order>6</sort_order>
|
3644 |
<show_in_default>1</show_in_default>
|
3646 |
<show_in_store>1</show_in_store>
|
3647 |
<config_path>payment/pay_payment_ideal/min_order_total</config_path>
|
3648 |
</min_order_total>
|
3649 |
+
<max_order_total translate="label comment">
|
3650 |
<depends>
|
3651 |
<active>1</active>
|
3652 |
</depends>
|
3653 |
<label>Maximum bedrag</label>
|
3654 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
3655 |
<frontend_type>text</frontend_type>
|
3656 |
<sort_order>7</sort_order>
|
3657 |
<show_in_default>1</show_in_default>
|
3693 |
<active>1</active>
|
3694 |
</depends>
|
3695 |
<label>Verzendmethoden blokkeren</label>
|
3696 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
3697 |
<frontend_type>select</frontend_type>
|
3698 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
3699 |
<sort_order>9</sort_order>
|
3707 |
<active>1</active>
|
3708 |
<limit_shipping>1</limit_shipping>
|
3709 |
</depends>
|
3710 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
3711 |
<label>Geblokkeerde verzendmethoden</label>
|
3712 |
<frontend_type>multiselect</frontend_type>
|
3713 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
3750 |
<active>1</active>
|
3751 |
</depends>
|
3752 |
<label>Extra kosten rekenen</label>
|
3753 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
3754 |
<frontend_type>select</frontend_type>
|
3755 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
3756 |
<sort_order>200</sort_order>
|
3764 |
<active>1</active>
|
3765 |
</depends>
|
3766 |
<label>Extra kosten</label>
|
3767 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
3768 |
<frontend_type>text</frontend_type>
|
3769 |
<sort_order>201</sort_order>
|
3770 |
<show_in_default>1</show_in_default>
|
3858 |
<show_in_store>1</show_in_store>
|
3859 |
<config_path>payment/pay_payment_incasso/sort_order</config_path>
|
3860 |
</sort_order>
|
3861 |
+
<min_order_total translate="label comment">
|
3862 |
<depends>
|
3863 |
<active>1</active>
|
3864 |
</depends>
|
3865 |
<label>Minimum bedrag</label>
|
3866 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
3867 |
<frontend_type>text</frontend_type>
|
3868 |
<sort_order>5</sort_order>
|
3869 |
<show_in_default>1</show_in_default>
|
3871 |
<show_in_store>1</show_in_store>
|
3872 |
<config_path>payment/pay_payment_incasso/min_order_total</config_path>
|
3873 |
</min_order_total>
|
3874 |
+
<max_order_total translate="label comment">
|
3875 |
<depends>
|
3876 |
<active>1</active>
|
3877 |
</depends>
|
3878 |
<label>Maximum bedrag</label>
|
3879 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
3880 |
<frontend_type>text</frontend_type>
|
3881 |
<sort_order>6</sort_order>
|
3882 |
<show_in_default>1</show_in_default>
|
3918 |
<active>1</active>
|
3919 |
</depends>
|
3920 |
<label>Verzendmethoden blokkeren</label>
|
3921 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
3922 |
<frontend_type>select</frontend_type>
|
3923 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
3924 |
<sort_order>9</sort_order>
|
3932 |
<active>1</active>
|
3933 |
<limit_shipping>1</limit_shipping>
|
3934 |
</depends>
|
3935 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
3936 |
<label>Geblokkeerde verzendmethoden</label>
|
3937 |
<frontend_type>multiselect</frontend_type>
|
3938 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
3975 |
<active>1</active>
|
3976 |
</depends>
|
3977 |
<label>Extra kosten rekenen</label>
|
3978 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
3979 |
<frontend_type>select</frontend_type>
|
3980 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
3981 |
<sort_order>200</sort_order>
|
3989 |
<active>1</active>
|
3990 |
</depends>
|
3991 |
<label>Extra kosten</label>
|
3992 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
3993 |
<frontend_type>text</frontend_type>
|
3994 |
<sort_order>201</sort_order>
|
3995 |
<show_in_default>1</show_in_default>
|
4097 |
<show_in_store>1</show_in_store>
|
4098 |
<config_path>payment/pay_payment_instore/sort_order</config_path>
|
4099 |
</sort_order>
|
4100 |
+
<min_order_total translate="label comment">
|
4101 |
<depends>
|
4102 |
<active>1</active>
|
4103 |
</depends>
|
4104 |
<label>Minimum bedrag</label>
|
4105 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
4106 |
<frontend_type>text</frontend_type>
|
4107 |
<sort_order>5</sort_order>
|
4108 |
<show_in_default>1</show_in_default>
|
4110 |
<show_in_store>1</show_in_store>
|
4111 |
<config_path>payment/pay_payment_instore/min_order_total</config_path>
|
4112 |
</min_order_total>
|
4113 |
+
<max_order_total translate="label comment">
|
4114 |
<depends>
|
4115 |
<active>1</active>
|
4116 |
</depends>
|
4117 |
<label>Maximum bedrag</label>
|
4118 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
4119 |
<frontend_type>text</frontend_type>
|
4120 |
<sort_order>6</sort_order>
|
4121 |
<show_in_default>1</show_in_default>
|
4157 |
<active>1</active>
|
4158 |
</depends>
|
4159 |
<label>Verzendmethoden blokkeren</label>
|
4160 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
4161 |
<frontend_type>select</frontend_type>
|
4162 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4163 |
<sort_order>9</sort_order>
|
4171 |
<active>1</active>
|
4172 |
<limit_shipping>1</limit_shipping>
|
4173 |
</depends>
|
4174 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
4175 |
<label>Geblokkeerde verzendmethoden</label>
|
4176 |
<frontend_type>multiselect</frontend_type>
|
4177 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
4214 |
<active>1</active>
|
4215 |
</depends>
|
4216 |
<label>Extra kosten rekenen</label>
|
4217 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
4218 |
<frontend_type>select</frontend_type>
|
4219 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
4220 |
<sort_order>200</sort_order>
|
4228 |
<active>1</active>
|
4229 |
</depends>
|
4230 |
<label>Extra kosten</label>
|
4231 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
4232 |
<frontend_type>text</frontend_type>
|
4233 |
<sort_order>201</sort_order>
|
4234 |
<show_in_default>1</show_in_default>
|
4322 |
<show_in_store>1</show_in_store>
|
4323 |
<config_path>payment/pay_payment_klarna/sort_order</config_path>
|
4324 |
</sort_order>
|
4325 |
+
<min_order_total translate="label comment">
|
4326 |
<depends>
|
4327 |
<active>1</active>
|
4328 |
</depends>
|
4329 |
<label>Minimum bedrag</label>
|
4330 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
4331 |
<frontend_type>text</frontend_type>
|
4332 |
<sort_order>5</sort_order>
|
4333 |
<show_in_default>1</show_in_default>
|
4340 |
<active>1</active>
|
4341 |
</depends>
|
4342 |
<label>Maximum bedrag</label>
|
4343 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
4344 |
<frontend_type>text</frontend_type>
|
4345 |
<sort_order>6</sort_order>
|
4346 |
<show_in_default>1</show_in_default>
|
4383 |
</depends>
|
4384 |
<label>Verzendmethoden blokkeren</label>
|
4385 |
<comment>
|
4386 |
+
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden
|
|
|
4387 |
</comment>
|
4388 |
<frontend_type>select</frontend_type>
|
4389 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4398 |
<active>1</active>
|
4399 |
<limit_shipping>1</limit_shipping>
|
4400 |
</depends>
|
4401 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
4402 |
<label>Geblokkeerde verzendmethoden</label>
|
4403 |
<frontend_type>multiselect</frontend_type>
|
4404 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
4441 |
<active>1</active>
|
4442 |
</depends>
|
4443 |
<label>Extra kosten rekenen</label>
|
4444 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
4445 |
<frontend_type>select</frontend_type>
|
4446 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
4447 |
<sort_order>200</sort_order>
|
4455 |
<active>1</active>
|
4456 |
</depends>
|
4457 |
<label>Extra kosten</label>
|
4458 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
4459 |
<frontend_type>text</frontend_type>
|
4460 |
<sort_order>201</sort_order>
|
4461 |
<show_in_default>1</show_in_default>
|
4549 |
<show_in_store>1</show_in_store>
|
4550 |
<config_path>payment/pay_payment_maestro/sort_order</config_path>
|
4551 |
</sort_order>
|
4552 |
+
<min_order_total translate="label comment">
|
4553 |
<depends>
|
4554 |
<active>1</active>
|
4555 |
</depends>
|
4556 |
<label>Minimum bedrag</label>
|
4557 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
4558 |
<frontend_type>text</frontend_type>
|
4559 |
<sort_order>5</sort_order>
|
4560 |
<show_in_default>1</show_in_default>
|
4562 |
<show_in_store>1</show_in_store>
|
4563 |
<config_path>payment/pay_payment_maestro/min_order_total</config_path>
|
4564 |
</min_order_total>
|
4565 |
+
<max_order_total translate="label comment">
|
4566 |
<depends>
|
4567 |
<active>1</active>
|
4568 |
</depends>
|
4569 |
<label>Maximum bedrag</label>
|
4570 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
4571 |
<frontend_type>text</frontend_type>
|
4572 |
<sort_order>6</sort_order>
|
4573 |
<show_in_default>1</show_in_default>
|
4609 |
<active>1</active>
|
4610 |
</depends>
|
4611 |
<label>Verzendmethoden blokkeren</label>
|
4612 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
4613 |
<frontend_type>select</frontend_type>
|
4614 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4615 |
<sort_order>9</sort_order>
|
4623 |
<active>1</active>
|
4624 |
<limit_shipping>1</limit_shipping>
|
4625 |
</depends>
|
4626 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
4627 |
<label>Geblokkeerde verzendmethoden</label>
|
4628 |
<frontend_type>multiselect</frontend_type>
|
4629 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
4666 |
<active>1</active>
|
4667 |
</depends>
|
4668 |
<label>Extra kosten rekenen</label>
|
4669 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
4670 |
<frontend_type>select</frontend_type>
|
4671 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
4672 |
<sort_order>200</sort_order>
|
4680 |
<active>1</active>
|
4681 |
</depends>
|
4682 |
<label>Extra kosten</label>
|
4683 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
4684 |
<frontend_type>text</frontend_type>
|
4685 |
<sort_order>201</sort_order>
|
4686 |
<show_in_default>1</show_in_default>
|
4774 |
<show_in_store>1</show_in_store>
|
4775 |
<config_path>payment/pay_payment_mistercash/sort_order</config_path>
|
4776 |
</sort_order>
|
4777 |
+
<min_order_total translate="label comment">
|
4778 |
<depends>
|
4779 |
<active>1</active>
|
4780 |
</depends>
|
4781 |
<label>Minimum bedrag</label>
|
4782 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
4783 |
<frontend_type>text</frontend_type>
|
4784 |
<sort_order>5</sort_order>
|
4785 |
<show_in_default>1</show_in_default>
|
4787 |
<show_in_store>1</show_in_store>
|
4788 |
<config_path>payment/pay_payment_mistercash/min_order_total</config_path>
|
4789 |
</min_order_total>
|
4790 |
+
<max_order_total translate="label comment">
|
4791 |
<depends>
|
4792 |
<active>1</active>
|
4793 |
</depends>
|
4794 |
<label>Maximum bedrag</label>
|
4795 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
4796 |
<frontend_type>text</frontend_type>
|
4797 |
<sort_order>6</sort_order>
|
4798 |
<show_in_default>1</show_in_default>
|
4834 |
<active>1</active>
|
4835 |
</depends>
|
4836 |
<label>Verzendmethoden blokkeren</label>
|
4837 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
4838 |
<frontend_type>select</frontend_type>
|
4839 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4840 |
<sort_order>9</sort_order>
|
4848 |
<active>1</active>
|
4849 |
<limit_shipping>1</limit_shipping>
|
4850 |
</depends>
|
4851 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
4852 |
<label>Geblokkeerde verzendmethoden</label>
|
4853 |
<frontend_type>multiselect</frontend_type>
|
4854 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
4891 |
<active>1</active>
|
4892 |
</depends>
|
4893 |
<label>Extra kosten rekenen</label>
|
4894 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
4895 |
<frontend_type>select</frontend_type>
|
4896 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
4897 |
<sort_order>200</sort_order>
|
4905 |
<active>1</active>
|
4906 |
</depends>
|
4907 |
<label>Extra kosten</label>
|
4908 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
4909 |
<frontend_type>text</frontend_type>
|
4910 |
<sort_order>201</sort_order>
|
4911 |
<show_in_default>1</show_in_default>
|
4999 |
<show_in_store>1</show_in_store>
|
5000 |
<config_path>payment/pay_payment_mybank/sort_order</config_path>
|
5001 |
</sort_order>
|
5002 |
+
<min_order_total translate="label comment">
|
5003 |
<depends>
|
5004 |
<active>1</active>
|
5005 |
</depends>
|
5006 |
<label>Minimum bedrag</label>
|
5007 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
5008 |
<frontend_type>text</frontend_type>
|
5009 |
<sort_order>5</sort_order>
|
5010 |
<show_in_default>1</show_in_default>
|
5012 |
<show_in_store>1</show_in_store>
|
5013 |
<config_path>payment/pay_payment_mybank/min_order_total</config_path>
|
5014 |
</min_order_total>
|
5015 |
+
<max_order_total translate="label comment">
|
5016 |
<depends>
|
5017 |
<active>1</active>
|
5018 |
</depends>
|
5019 |
<label>Maximum bedrag</label>
|
5020 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
5021 |
<frontend_type>text</frontend_type>
|
5022 |
<sort_order>6</sort_order>
|
5023 |
<show_in_default>1</show_in_default>
|
5059 |
<active>1</active>
|
5060 |
</depends>
|
5061 |
<label>Verzendmethoden blokkeren</label>
|
5062 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
5063 |
<frontend_type>select</frontend_type>
|
5064 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
5065 |
<sort_order>9</sort_order>
|
5073 |
<active>1</active>
|
5074 |
<limit_shipping>1</limit_shipping>
|
5075 |
</depends>
|
5076 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
5077 |
<label>Geblokkeerde verzendmethoden</label>
|
5078 |
<frontend_type>multiselect</frontend_type>
|
5079 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
5116 |
<active>1</active>
|
5117 |
</depends>
|
5118 |
<label>Extra kosten rekenen</label>
|
5119 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
5120 |
<frontend_type>select</frontend_type>
|
5121 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
5122 |
<sort_order>200</sort_order>
|
5130 |
<active>1</active>
|
5131 |
</depends>
|
5132 |
<label>Extra kosten</label>
|
5133 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
5134 |
<frontend_type>text</frontend_type>
|
5135 |
<sort_order>201</sort_order>
|
5136 |
<show_in_default>1</show_in_default>
|
5224 |
<show_in_store>1</show_in_store>
|
5225 |
<config_path>payment/pay_payment_overboeking/sort_order</config_path>
|
5226 |
</sort_order>
|
5227 |
+
<min_order_total translate="label comment">
|
5228 |
<depends>
|
5229 |
<active>1</active>
|
5230 |
</depends>
|
5231 |
<label>Minimum bedrag</label>
|
5232 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
5233 |
<frontend_type>text</frontend_type>
|
5234 |
<sort_order>5</sort_order>
|
5235 |
<show_in_default>1</show_in_default>
|
5237 |
<show_in_store>1</show_in_store>
|
5238 |
<config_path>payment/pay_payment_overboeking/min_order_total</config_path>
|
5239 |
</min_order_total>
|
5240 |
+
<max_order_total translate="label comment">
|
5241 |
<depends>
|
5242 |
<active>1</active>
|
5243 |
</depends>
|
5244 |
<label>Maximum bedrag</label>
|
5245 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
5246 |
<frontend_type>text</frontend_type>
|
5247 |
<sort_order>6</sort_order>
|
5248 |
<show_in_default>1</show_in_default>
|
5284 |
<active>1</active>
|
5285 |
</depends>
|
5286 |
<label>Verzendmethoden blokkeren</label>
|
5287 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
5288 |
<frontend_type>select</frontend_type>
|
5289 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
5290 |
<sort_order>9</sort_order>
|
5298 |
<active>1</active>
|
5299 |
<limit_shipping>1</limit_shipping>
|
5300 |
</depends>
|
5301 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
5302 |
<label>Geblokkeerde verzendmethoden</label>
|
5303 |
<frontend_type>multiselect</frontend_type>
|
5304 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
5341 |
<active>1</active>
|
5342 |
</depends>
|
5343 |
<label>Extra kosten rekenen</label>
|
5344 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
5345 |
<frontend_type>select</frontend_type>
|
5346 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
5347 |
<sort_order>200</sort_order>
|
5355 |
<active>1</active>
|
5356 |
</depends>
|
5357 |
<label>Extra kosten</label>
|
5358 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
5359 |
<frontend_type>text</frontend_type>
|
5360 |
<sort_order>201</sort_order>
|
5361 |
<show_in_default>1</show_in_default>
|
5449 |
<show_in_store>1</show_in_store>
|
5450 |
<config_path>payment/pay_payment_paypal/sort_order</config_path>
|
5451 |
</sort_order>
|
5452 |
+
<min_order_total translate="label comment">
|
5453 |
<depends>
|
5454 |
<active>1</active>
|
5455 |
</depends>
|
5456 |
<label>Minimum bedrag</label>
|
5457 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
5458 |
<frontend_type>text</frontend_type>
|
5459 |
<sort_order>5</sort_order>
|
5460 |
<show_in_default>1</show_in_default>
|
5510 |
<active>1</active>
|
5511 |
</depends>
|
5512 |
<label>Verzendmethoden blokkeren</label>
|
5513 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
5514 |
<frontend_type>select</frontend_type>
|
5515 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
5516 |
<sort_order>9</sort_order>
|
5524 |
<active>1</active>
|
5525 |
<limit_shipping>1</limit_shipping>
|
5526 |
</depends>
|
5527 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
5528 |
<label>Geblokkeerde verzendmethoden</label>
|
5529 |
<frontend_type>multiselect</frontend_type>
|
5530 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
5567 |
<active>1</active>
|
5568 |
</depends>
|
5569 |
<label>Extra kosten rekenen</label>
|
5570 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
5571 |
<frontend_type>select</frontend_type>
|
5572 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
5573 |
<sort_order>200</sort_order>
|
5581 |
<active>1</active>
|
5582 |
</depends>
|
5583 |
<label>Extra kosten</label>
|
5584 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
5585 |
<frontend_type>text</frontend_type>
|
5586 |
<sort_order>201</sort_order>
|
5587 |
<show_in_default>1</show_in_default>
|
5675 |
<show_in_store>1</show_in_store>
|
5676 |
<config_path>payment/pay_payment_paysafecard/sort_order</config_path>
|
5677 |
</sort_order>
|
5678 |
+
<min_order_total translate="label comment">
|
5679 |
<depends>
|
5680 |
<active>1</active>
|
5681 |
</depends>
|
5682 |
<label>Minimum bedrag</label>
|
5683 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
5684 |
<frontend_type>text</frontend_type>
|
5685 |
<sort_order>5</sort_order>
|
5686 |
<show_in_default>1</show_in_default>
|
5688 |
<show_in_store>1</show_in_store>
|
5689 |
<config_path>payment/pay_payment_paysafecard/min_order_total</config_path>
|
5690 |
</min_order_total>
|
5691 |
+
<max_order_total translate="label comment">
|
5692 |
<depends>
|
5693 |
<active>1</active>
|
5694 |
</depends>
|
5695 |
<label>Maximum bedrag</label>
|
5696 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
5697 |
<frontend_type>text</frontend_type>
|
5698 |
<sort_order>6</sort_order>
|
5699 |
<show_in_default>1</show_in_default>
|
5735 |
<active>1</active>
|
5736 |
</depends>
|
5737 |
<label>Verzendmethoden blokkeren</label>
|
5738 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
5739 |
<frontend_type>select</frontend_type>
|
5740 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
5741 |
<sort_order>9</sort_order>
|
5749 |
<active>1</active>
|
5750 |
<limit_shipping>1</limit_shipping>
|
5751 |
</depends>
|
5752 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
5753 |
<label>Geblokkeerde verzendmethoden</label>
|
5754 |
<frontend_type>multiselect</frontend_type>
|
5755 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
5792 |
<active>1</active>
|
5793 |
</depends>
|
5794 |
<label>Extra kosten rekenen</label>
|
5795 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
5796 |
<frontend_type>select</frontend_type>
|
5797 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
5798 |
<sort_order>200</sort_order>
|
5806 |
<active>1</active>
|
5807 |
</depends>
|
5808 |
<label>Extra kosten</label>
|
5809 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
5810 |
<frontend_type>text</frontend_type>
|
5811 |
<sort_order>201</sort_order>
|
5812 |
<show_in_default>1</show_in_default>
|
5900 |
<show_in_store>1</show_in_store>
|
5901 |
<config_path>payment/pay_payment_podiumkadokaart/sort_order</config_path>
|
5902 |
</sort_order>
|
5903 |
+
<min_order_total translate="label comment">
|
5904 |
<depends>
|
5905 |
<active>1</active>
|
5906 |
</depends>
|
5907 |
<label>Minimum bedrag</label>
|
5908 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
5909 |
<frontend_type>text</frontend_type>
|
5910 |
<sort_order>5</sort_order>
|
5911 |
<show_in_default>1</show_in_default>
|
5913 |
<show_in_store>1</show_in_store>
|
5914 |
<config_path>payment/pay_payment_podiumkadokaart/min_order_total</config_path>
|
5915 |
</min_order_total>
|
5916 |
+
<max_order_total translate="label comment">
|
5917 |
<depends>
|
5918 |
<active>1</active>
|
5919 |
</depends>
|
5920 |
<label>Maximum bedrag</label>
|
5921 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
5922 |
<frontend_type>text</frontend_type>
|
5923 |
<sort_order>6</sort_order>
|
5924 |
<show_in_default>1</show_in_default>
|
5960 |
<active>1</active>
|
5961 |
</depends>
|
5962 |
<label>Verzendmethoden blokkeren</label>
|
5963 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
5964 |
<frontend_type>select</frontend_type>
|
5965 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
5966 |
<sort_order>9</sort_order>
|
5974 |
<active>1</active>
|
5975 |
<limit_shipping>1</limit_shipping>
|
5976 |
</depends>
|
5977 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
5978 |
<label>Geblokkeerde verzendmethoden</label>
|
5979 |
<frontend_type>multiselect</frontend_type>
|
5980 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
6017 |
<active>1</active>
|
6018 |
</depends>
|
6019 |
<label>Extra kosten rekenen</label>
|
6020 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
6021 |
<frontend_type>select</frontend_type>
|
6022 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
6023 |
<sort_order>200</sort_order>
|
6031 |
<active>1</active>
|
6032 |
</depends>
|
6033 |
<label>Extra kosten</label>
|
6034 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
6035 |
<frontend_type>text</frontend_type>
|
6036 |
<sort_order>201</sort_order>
|
6037 |
<show_in_default>1</show_in_default>
|
6125 |
<show_in_store>1</show_in_store>
|
6126 |
<config_path>payment/pay_payment_postepay/sort_order</config_path>
|
6127 |
</sort_order>
|
6128 |
+
<min_order_total translate="label comment">
|
6129 |
<depends>
|
6130 |
<active>1</active>
|
6131 |
</depends>
|
6132 |
<label>Minimum bedrag</label>
|
6133 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
6134 |
<frontend_type>text</frontend_type>
|
6135 |
<sort_order>5</sort_order>
|
6136 |
<show_in_default>1</show_in_default>
|
6138 |
<show_in_store>1</show_in_store>
|
6139 |
<config_path>payment/pay_payment_postepay/min_order_total</config_path>
|
6140 |
</min_order_total>
|
6141 |
+
<max_order_total translate="label comment">
|
6142 |
<depends>
|
6143 |
<active>1</active>
|
6144 |
</depends>
|
6145 |
<label>Maximum bedrag</label>
|
6146 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
6147 |
<frontend_type>text</frontend_type>
|
6148 |
<sort_order>6</sort_order>
|
6149 |
<show_in_default>1</show_in_default>
|
6185 |
<active>1</active>
|
6186 |
</depends>
|
6187 |
<label>Verzendmethoden blokkeren</label>
|
6188 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
6189 |
<frontend_type>select</frontend_type>
|
6190 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
6191 |
<sort_order>9</sort_order>
|
6199 |
<active>1</active>
|
6200 |
<limit_shipping>1</limit_shipping>
|
6201 |
</depends>
|
6202 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
6203 |
<label>Geblokkeerde verzendmethoden</label>
|
6204 |
<frontend_type>multiselect</frontend_type>
|
6205 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
6242 |
<active>1</active>
|
6243 |
</depends>
|
6244 |
<label>Extra kosten rekenen</label>
|
6245 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
6246 |
<frontend_type>select</frontend_type>
|
6247 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
6248 |
<sort_order>200</sort_order>
|
6256 |
<active>1</active>
|
6257 |
</depends>
|
6258 |
<label>Extra kosten</label>
|
6259 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
6260 |
<frontend_type>text</frontend_type>
|
6261 |
<sort_order>201</sort_order>
|
6262 |
<show_in_default>1</show_in_default>
|
6350 |
<show_in_store>1</show_in_store>
|
6351 |
<config_path>payment/pay_payment_sofortbanking/sort_order</config_path>
|
6352 |
</sort_order>
|
6353 |
+
<min_order_total translate="label comment">
|
6354 |
<depends>
|
6355 |
<active>1</active>
|
6356 |
</depends>
|
6357 |
<label>Minimum bedrag</label>
|
6358 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
6359 |
<frontend_type>text</frontend_type>
|
6360 |
<sort_order>5</sort_order>
|
6361 |
<show_in_default>1</show_in_default>
|
6363 |
<show_in_store>1</show_in_store>
|
6364 |
<config_path>payment/pay_payment_sofortbanking/min_order_total</config_path>
|
6365 |
</min_order_total>
|
6366 |
+
<max_order_total translate="label comment">
|
6367 |
<depends>
|
6368 |
<active>1</active>
|
6369 |
</depends>
|
6370 |
<label>Maximum bedrag</label>
|
6371 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
6372 |
<frontend_type>text</frontend_type>
|
6373 |
<sort_order>6</sort_order>
|
6374 |
<show_in_default>1</show_in_default>
|
6410 |
<active>1</active>
|
6411 |
</depends>
|
6412 |
<label>Verzendmethoden blokkeren</label>
|
6413 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
6414 |
<frontend_type>select</frontend_type>
|
6415 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
6416 |
<sort_order>9</sort_order>
|
6424 |
<active>1</active>
|
6425 |
<limit_shipping>1</limit_shipping>
|
6426 |
</depends>
|
6427 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
6428 |
<label>Geblokkeerde verzendmethoden</label>
|
6429 |
<frontend_type>multiselect</frontend_type>
|
6430 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
6467 |
<active>1</active>
|
6468 |
</depends>
|
6469 |
<label>Extra kosten rekenen</label>
|
6470 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
6471 |
<frontend_type>select</frontend_type>
|
6472 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
6473 |
<sort_order>200</sort_order>
|
6481 |
<active>1</active>
|
6482 |
</depends>
|
6483 |
<label>Extra kosten</label>
|
6484 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
6485 |
<frontend_type>text</frontend_type>
|
6486 |
<sort_order>201</sort_order>
|
6487 |
<show_in_default>1</show_in_default>
|
6575 |
<show_in_store>1</show_in_store>
|
6576 |
<config_path>payment/pay_payment_telefoon/sort_order</config_path>
|
6577 |
</sort_order>
|
6578 |
+
<min_order_total translate="label comment">
|
6579 |
<depends>
|
6580 |
<active>1</active>
|
6581 |
</depends>
|
6582 |
<label>Minimum bedrag</label>
|
6583 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
6584 |
<frontend_type>text</frontend_type>
|
6585 |
<sort_order>5</sort_order>
|
6586 |
<show_in_default>1</show_in_default>
|
6588 |
<show_in_store>1</show_in_store>
|
6589 |
<config_path>payment/pay_payment_telefoon/min_order_total</config_path>
|
6590 |
</min_order_total>
|
6591 |
+
<max_order_total translate="label comment">
|
6592 |
<depends>
|
6593 |
<active>1</active>
|
6594 |
</depends>
|
6595 |
<label>Maximum bedrag</label>
|
6596 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
6597 |
<frontend_type>text</frontend_type>
|
6598 |
<sort_order>6</sort_order>
|
6599 |
<show_in_default>1</show_in_default>
|
6635 |
<active>1</active>
|
6636 |
</depends>
|
6637 |
<label>Verzendmethoden blokkeren</label>
|
6638 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
6639 |
<frontend_type>select</frontend_type>
|
6640 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
6641 |
<sort_order>9</sort_order>
|
6649 |
<active>1</active>
|
6650 |
<limit_shipping>1</limit_shipping>
|
6651 |
</depends>
|
6652 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
6653 |
<label>Geblokkeerde verzendmethoden</label>
|
6654 |
<frontend_type>multiselect</frontend_type>
|
6655 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
6692 |
<active>1</active>
|
6693 |
</depends>
|
6694 |
<label>Extra kosten rekenen</label>
|
6695 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
6696 |
<frontend_type>select</frontend_type>
|
6697 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
6698 |
<sort_order>200</sort_order>
|
6706 |
<active>1</active>
|
6707 |
</depends>
|
6708 |
<label>Extra kosten</label>
|
6709 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
6710 |
<frontend_type>text</frontend_type>
|
6711 |
<sort_order>201</sort_order>
|
6712 |
<show_in_default>1</show_in_default>
|
6800 |
<show_in_store>1</show_in_store>
|
6801 |
<config_path>payment/pay_payment_visamastercard/sort_order</config_path>
|
6802 |
</sort_order>
|
6803 |
+
<min_order_total translate="label comment">
|
6804 |
<depends>
|
6805 |
<active>1</active>
|
6806 |
</depends>
|
6807 |
<label>Minimum bedrag</label>
|
6808 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
6809 |
<frontend_type>text</frontend_type>
|
6810 |
<sort_order>5</sort_order>
|
6811 |
<show_in_default>1</show_in_default>
|
6813 |
<show_in_store>1</show_in_store>
|
6814 |
<config_path>payment/pay_payment_visamastercard/min_order_total</config_path>
|
6815 |
</min_order_total>
|
6816 |
+
<max_order_total translate="label comment">
|
6817 |
<depends>
|
6818 |
<active>1</active>
|
6819 |
</depends>
|
6820 |
<label>Maximum bedrag</label>
|
6821 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
6822 |
<frontend_type>text</frontend_type>
|
6823 |
<sort_order>6</sort_order>
|
6824 |
<show_in_default>1</show_in_default>
|
6860 |
<active>1</active>
|
6861 |
</depends>
|
6862 |
<label>Verzendmethoden blokkeren</label>
|
6863 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
6864 |
<frontend_type>select</frontend_type>
|
6865 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
6866 |
<sort_order>9</sort_order>
|
6874 |
<active>1</active>
|
6875 |
<limit_shipping>1</limit_shipping>
|
6876 |
</depends>
|
6877 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
6878 |
<label>Geblokkeerde verzendmethoden</label>
|
6879 |
<frontend_type>multiselect</frontend_type>
|
6880 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
6917 |
<active>1</active>
|
6918 |
</depends>
|
6919 |
<label>Extra kosten rekenen</label>
|
6920 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
6921 |
<frontend_type>select</frontend_type>
|
6922 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
6923 |
<sort_order>200</sort_order>
|
6931 |
<active>1</active>
|
6932 |
</depends>
|
6933 |
<label>Extra kosten</label>
|
6934 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
6935 |
<frontend_type>text</frontend_type>
|
6936 |
<sort_order>201</sort_order>
|
6937 |
<show_in_default>1</show_in_default>
|
7025 |
<show_in_store>1</show_in_store>
|
7026 |
<config_path>payment/pay_payment_vvvgiftcard/sort_order</config_path>
|
7027 |
</sort_order>
|
7028 |
+
<min_order_total translate="label comment">
|
7029 |
<depends>
|
7030 |
<active>1</active>
|
7031 |
</depends>
|
7032 |
<label>Minimum bedrag</label>
|
7033 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
7034 |
<frontend_type>text</frontend_type>
|
7035 |
<sort_order>5</sort_order>
|
7036 |
<show_in_default>1</show_in_default>
|
7038 |
<show_in_store>1</show_in_store>
|
7039 |
<config_path>payment/pay_payment_vvvgiftcard/min_order_total</config_path>
|
7040 |
</min_order_total>
|
7041 |
+
<max_order_total translate="label comment">
|
7042 |
<depends>
|
7043 |
<active>1</active>
|
7044 |
</depends>
|
7045 |
<label>Maximum bedrag</label>
|
7046 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
7047 |
<frontend_type>text</frontend_type>
|
7048 |
<sort_order>6</sort_order>
|
7049 |
<show_in_default>1</show_in_default>
|
7085 |
<active>1</active>
|
7086 |
</depends>
|
7087 |
<label>Verzendmethoden blokkeren</label>
|
7088 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
7089 |
<frontend_type>select</frontend_type>
|
7090 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
7091 |
<sort_order>9</sort_order>
|
7099 |
<active>1</active>
|
7100 |
<limit_shipping>1</limit_shipping>
|
7101 |
</depends>
|
7102 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
7103 |
<label>Geblokkeerde verzendmethoden</label>
|
7104 |
<frontend_type>multiselect</frontend_type>
|
7105 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
7142 |
<active>1</active>
|
7143 |
</depends>
|
7144 |
<label>Extra kosten rekenen</label>
|
7145 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
7146 |
<frontend_type>select</frontend_type>
|
7147 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
7148 |
<sort_order>200</sort_order>
|
7156 |
<active>1</active>
|
7157 |
</depends>
|
7158 |
<label>Extra kosten</label>
|
7159 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
7160 |
<frontend_type>text</frontend_type>
|
7161 |
<sort_order>201</sort_order>
|
7162 |
<show_in_default>1</show_in_default>
|
7250 |
<show_in_store>1</show_in_store>
|
7251 |
<config_path>payment/pay_payment_webshopgiftcard/sort_order</config_path>
|
7252 |
</sort_order>
|
7253 |
+
<min_order_total translate="label comment">
|
7254 |
<depends>
|
7255 |
<active>1</active>
|
7256 |
</depends>
|
7257 |
<label>Minimum bedrag</label>
|
7258 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
7259 |
<frontend_type>text</frontend_type>
|
7260 |
<sort_order>5</sort_order>
|
7261 |
<show_in_default>1</show_in_default>
|
7263 |
<show_in_store>1</show_in_store>
|
7264 |
<config_path>payment/pay_payment_webshopgiftcard/min_order_total</config_path>
|
7265 |
</min_order_total>
|
7266 |
+
<max_order_total translate="label comment">
|
7267 |
<depends>
|
7268 |
<active>1</active>
|
7269 |
</depends>
|
7270 |
<label>Maximum bedrag</label>
|
7271 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
7272 |
<frontend_type>text</frontend_type>
|
7273 |
<sort_order>6</sort_order>
|
7274 |
<show_in_default>1</show_in_default>
|
7310 |
<active>1</active>
|
7311 |
</depends>
|
7312 |
<label>Verzendmethoden blokkeren</label>
|
7313 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
7314 |
<frontend_type>select</frontend_type>
|
7315 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
7316 |
<sort_order>9</sort_order>
|
7324 |
<active>1</active>
|
7325 |
<limit_shipping>1</limit_shipping>
|
7326 |
</depends>
|
7327 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
7328 |
<label>Geblokkeerde verzendmethoden</label>
|
7329 |
<frontend_type>multiselect</frontend_type>
|
7330 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
7367 |
<active>1</active>
|
7368 |
</depends>
|
7369 |
<label>Extra kosten rekenen</label>
|
7370 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
7371 |
<frontend_type>select</frontend_type>
|
7372 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
7373 |
<sort_order>200</sort_order>
|
7381 |
<active>1</active>
|
7382 |
</depends>
|
7383 |
<label>Extra kosten</label>
|
7384 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
7385 |
<frontend_type>text</frontend_type>
|
7386 |
<sort_order>201</sort_order>
|
7387 |
<show_in_default>1</show_in_default>
|
7475 |
<show_in_store>1</show_in_store>
|
7476 |
<config_path>payment/pay_payment_wijncadeau/sort_order</config_path>
|
7477 |
</sort_order>
|
7478 |
+
<min_order_total translate="label comment">
|
7479 |
<depends>
|
7480 |
<active>1</active>
|
7481 |
</depends>
|
7482 |
<label>Minimum bedrag</label>
|
7483 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
7484 |
<frontend_type>text</frontend_type>
|
7485 |
<sort_order>5</sort_order>
|
7486 |
<show_in_default>1</show_in_default>
|
7488 |
<show_in_store>1</show_in_store>
|
7489 |
<config_path>payment/pay_payment_wijncadeau/min_order_total</config_path>
|
7490 |
</min_order_total>
|
7491 |
+
<max_order_total translate="label comment">
|
7492 |
<depends>
|
7493 |
<active>1</active>
|
7494 |
</depends>
|
7495 |
<label>Maximum bedrag</label>
|
7496 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
7497 |
<frontend_type>text</frontend_type>
|
7498 |
<sort_order>6</sort_order>
|
7499 |
<show_in_default>1</show_in_default>
|
7535 |
<active>1</active>
|
7536 |
</depends>
|
7537 |
<label>Verzendmethoden blokkeren</label>
|
7538 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
7539 |
<frontend_type>select</frontend_type>
|
7540 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
7541 |
<sort_order>9</sort_order>
|
7549 |
<active>1</active>
|
7550 |
<limit_shipping>1</limit_shipping>
|
7551 |
</depends>
|
7552 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
7553 |
<label>Geblokkeerde verzendmethoden</label>
|
7554 |
<frontend_type>multiselect</frontend_type>
|
7555 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
7592 |
<active>1</active>
|
7593 |
</depends>
|
7594 |
<label>Extra kosten rekenen</label>
|
7595 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
7596 |
<frontend_type>select</frontend_type>
|
7597 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
7598 |
<sort_order>200</sort_order>
|
7606 |
<active>1</active>
|
7607 |
</depends>
|
7608 |
<label>Extra kosten</label>
|
7609 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
7610 |
<frontend_type>text</frontend_type>
|
7611 |
<sort_order>201</sort_order>
|
7612 |
<show_in_default>1</show_in_default>
|
7700 |
<show_in_store>1</show_in_store>
|
7701 |
<config_path>payment/pay_payment_yehhpay/sort_order</config_path>
|
7702 |
</sort_order>
|
7703 |
+
<min_order_total translate="label comment">
|
7704 |
<depends>
|
7705 |
<active>1</active>
|
7706 |
</depends>
|
7707 |
<label>Minimum bedrag</label>
|
7708 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
7709 |
<frontend_type>text</frontend_type>
|
7710 |
<sort_order>5</sort_order>
|
7711 |
<show_in_default>1</show_in_default>
|
7713 |
<show_in_store>1</show_in_store>
|
7714 |
<config_path>payment/pay_payment_yehhpay/min_order_total</config_path>
|
7715 |
</min_order_total>
|
7716 |
+
<max_order_total translate="label comment">
|
7717 |
<depends>
|
7718 |
<active>1</active>
|
7719 |
</depends>
|
7720 |
<label>Maximum bedrag</label>
|
7721 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
7722 |
<frontend_type>text</frontend_type>
|
7723 |
<sort_order>6</sort_order>
|
7724 |
<show_in_default>1</show_in_default>
|
7760 |
<active>1</active>
|
7761 |
</depends>
|
7762 |
<label>Verzendmethoden blokkeren</label>
|
7763 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
7764 |
<frontend_type>select</frontend_type>
|
7765 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
7766 |
<sort_order>9</sort_order>
|
7774 |
<active>1</active>
|
7775 |
<limit_shipping>1</limit_shipping>
|
7776 |
</depends>
|
7777 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
7778 |
<label>Geblokkeerde verzendmethoden</label>
|
7779 |
<frontend_type>multiselect</frontend_type>
|
7780 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
7817 |
<active>1</active>
|
7818 |
</depends>
|
7819 |
<label>Extra kosten rekenen</label>
|
7820 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
7821 |
<frontend_type>select</frontend_type>
|
7822 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
7823 |
<sort_order>200</sort_order>
|
7831 |
<active>1</active>
|
7832 |
</depends>
|
7833 |
<label>Extra kosten</label>
|
7834 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
7835 |
<frontend_type>text</frontend_type>
|
7836 |
<sort_order>201</sort_order>
|
7837 |
<show_in_default>1</show_in_default>
|
7925 |
<show_in_store>1</show_in_store>
|
7926 |
<config_path>payment/pay_payment_yourgift/sort_order</config_path>
|
7927 |
</sort_order>
|
7928 |
+
<min_order_total translate="label comment">
|
7929 |
<depends>
|
7930 |
<active>1</active>
|
7931 |
</depends>
|
7932 |
<label>Minimum bedrag</label>
|
7933 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
7934 |
<frontend_type>text</frontend_type>
|
7935 |
<sort_order>5</sort_order>
|
7936 |
<show_in_default>1</show_in_default>
|
7938 |
<show_in_store>1</show_in_store>
|
7939 |
<config_path>payment/pay_payment_yourgift/min_order_total</config_path>
|
7940 |
</min_order_total>
|
7941 |
+
<max_order_total translate="label comment">
|
7942 |
<depends>
|
7943 |
<active>1</active>
|
7944 |
</depends>
|
7945 |
<label>Maximum bedrag</label>
|
7946 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
|
|
7947 |
<frontend_type>text</frontend_type>
|
7948 |
<sort_order>6</sort_order>
|
7949 |
<show_in_default>1</show_in_default>
|
7985 |
<active>1</active>
|
7986 |
</depends>
|
7987 |
<label>Verzendmethoden blokkeren</label>
|
7988 |
+
<comment>Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden</comment>
|
|
|
|
|
|
|
7989 |
<frontend_type>select</frontend_type>
|
7990 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
7991 |
<sort_order>9</sort_order>
|
7999 |
<active>1</active>
|
8000 |
<limit_shipping>1</limit_shipping>
|
8001 |
</depends>
|
8002 |
+
<comment>Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is</comment>
|
|
|
|
|
8003 |
<label>Geblokkeerde verzendmethoden</label>
|
8004 |
<frontend_type>multiselect</frontend_type>
|
8005 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
8042 |
<active>1</active>
|
8043 |
</depends>
|
8044 |
<label>Extra kosten rekenen</label>
|
8045 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag</comment>
|
|
|
|
|
|
|
|
|
8046 |
<frontend_type>select</frontend_type>
|
8047 |
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
8048 |
<sort_order>200</sort_order>
|
8056 |
<active>1</active>
|
8057 |
</depends>
|
8058 |
<label>Extra kosten</label>
|
8059 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in</comment>
|
|
|
|
|
|
|
8060 |
<frontend_type>text</frontend_type>
|
8061 |
<sort_order>201</sort_order>
|
8062 |
<show_in_default>1</show_in_default>
|
app/design/adminhtml/base/default/template/pay/payment/form/billink.phtml
CHANGED
@@ -1,68 +1,11 @@
|
|
1 |
<?php
|
2 |
$_code = $this->getMethodCode();
|
3 |
|
4 |
-
$dob = $this->getDob();
|
5 |
-
list($dobYear,$dobMonth,$dobDay) = explode('-',$dob);
|
6 |
-
|
7 |
-
$enablePersonal = Mage::getStoreConfig('payment/pay_payment_billink/ask_data_personal',
|
8 |
-
Mage::app()->getStore());
|
9 |
-
$enableBusiness = Mage::getStoreConfig('payment/pay_payment_billink/ask_data_business',
|
10 |
-
Mage::app()->getStore());
|
11 |
-
|
12 |
?>
|
13 |
|
14 |
|
15 |
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none;">
|
16 |
-
|
17 |
-
|
18 |
-
if ($enablePersonal == 1 && $enableBusiness == 1) {
|
19 |
-
?>
|
20 |
-
Type bestelling
|
21 |
-
<li>
|
22 |
-
</li>
|
23 |
-
<li>
|
24 |
-
<input onchange="document.getElementById('paynl-data-personal').style.display='';document.getElementById('paynl-data-business').style.display='none';" type="radio" name="payment[type_order]" id="type_order_p" value="p" /> <label for="type_order_p">Persoonlijk</label><br />
|
25 |
-
<input onchange="document.getElementById('paynl-data-personal').style.display='none';document.getElementById('paynl-data-business').style.display='';" type="radio" name="payment[type_order]" id="type_order_b" value="b" /> <label for="type_order_b">Zakelijk</label>
|
26 |
-
</li>
|
27 |
-
<?php
|
28 |
-
}
|
29 |
-
if ($enablePersonal == 1) {
|
30 |
-
?>
|
31 |
-
<div <?php echo $enableBusiness == 1?'style="display:none;"':''; ?> id="paynl-data-personal">
|
32 |
-
<li><?php echo $this->__('Date of Birth'); ?></li>
|
33 |
-
<li>
|
34 |
-
<div class="input-box customer-dob">
|
35 |
-
<div class="dob-day">
|
36 |
-
<input type="text" id="day" name="payment[birthday_day]" value="<?= $dobDay ?>" title="Day" class="input-text">
|
37 |
-
<label for="day">DD</label>
|
38 |
-
</div><div class="dob-month">
|
39 |
-
<input type="text" id="month" name="payment[birthday_month]" value="<?= $dobMonth ?>" title="Month" class="input-text">
|
40 |
-
<label for="month">MM</label>
|
41 |
-
</div><div class="dob-year">
|
42 |
-
<input type="text" id="year" name="payment[birthday_year]" value="<?= $dobYear ?>" title="Year" class="input-text" autocomplete="off">
|
43 |
-
<label for="year">YYYY</label>
|
44 |
-
</div>
|
45 |
-
</li>
|
46 |
-
<br />
|
47 |
-
</div>
|
48 |
-
<?php } ?>
|
49 |
-
<?php if ($enableBusiness == 1) { ?>
|
50 |
-
<div <?php echo $enablePersonal == 1?'style="display:none;"':''; ?> id="paynl-data-business">
|
51 |
-
<li>
|
52 |
-
KVK nummer
|
53 |
-
</li>
|
54 |
-
<li>
|
55 |
-
<div class="input-box">
|
56 |
-
<input type="text" name="payment[kvknummer]" />
|
57 |
-
</div>
|
58 |
-
</li>
|
59 |
-
</div>
|
60 |
-
<?php } ?>
|
61 |
-
<li class="input-box">
|
62 |
-
<input id="billink_agree" type="checkbox" value="1" name="payment[billink_agree]" /> <label for="billink_agree">Ik ga akkoord met de</label> <a target="new" href="http://billink.nl/voorwaarden/gebruikersvoorwaarden.pdf">betalingsvoorvaarden</a>
|
63 |
</li>
|
64 |
-
|
65 |
</ul>
|
66 |
-
<div>
|
67 |
-
<?php echo $this->getMethod()->getConfigData('message'); ?>
|
68 |
-
</div>
|
1 |
<?php
|
2 |
$_code = $this->getMethodCode();
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
?>
|
5 |
|
6 |
|
7 |
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none;">
|
8 |
+
<li>
|
9 |
+
<input id="billink_agree" type="hidden" value="1" name="payment[billink_agree]" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
</li>
|
|
|
11 |
</ul>
|
|
|
|
|
|
app/design/adminhtml/base/default/template/pay/payment/form/focum.phtml
CHANGED
@@ -1,39 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/** @var Pay_Payment_Model_Paymentmethod $this */
|
3 |
-
$_code = $this->getMethodCode();
|
4 |
-
$dob = $this->getDob();
|
5 |
-
|
6 |
-
list($dobYear,$dobMonth,$dobDay) = explode('-',$dob);
|
7 |
-
|
8 |
-
?>
|
9 |
-
|
10 |
-
|
11 |
-
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none;">
|
12 |
-
<li>Geboortedatum</li>
|
13 |
-
<li>
|
14 |
-
<div class="input-box customer-dob">
|
15 |
-
<div class="dob-day">
|
16 |
-
<input type="text" id="day" name="payment[birthday_day]" value="<?php echo $dobDay; ?>" title="Day"
|
17 |
-
class="input-text">
|
18 |
-
<label for="day">DD</label>
|
19 |
-
</div>
|
20 |
-
<div class="dob-month">
|
21 |
-
<input type="text" id="month" name="payment[birthday_month]" value="<?php echo $dobMonth; ?>" title="Month"
|
22 |
-
class="input-text">
|
23 |
-
<label for="month">MM</label>
|
24 |
-
</div>
|
25 |
-
<div class="dob-year">
|
26 |
-
<input type="text" id="year" name="payment[birthday_year]" value="<?php echo $dobYear; ?>" title="Year"
|
27 |
-
class="input-text" autocomplete="off">
|
28 |
-
<label for="year">YYYY</label>
|
29 |
-
</div>
|
30 |
-
</li>
|
31 |
-
<li>IBAN</li>
|
32 |
-
<li>
|
33 |
-
<input type="text" id="iban" name="payment[iban]" value="<?php echo $this->getIban(); ?>" title="iban" class="input-text" placeholder="iban">
|
34 |
-
</li>
|
35 |
-
|
36 |
-
</ul>
|
37 |
-
<div>
|
38 |
-
<?php echo $this->getMethod()->getConfigData('message'); ?>
|
39 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/adminhtml/base/default/template/pay/payment/form/ideal.phtml
CHANGED
@@ -1,17 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
$_code=$this->getMethodCode();
|
3 |
-
|
4 |
-
$banks = $this->getBanks();
|
5 |
-
?>
|
6 |
-
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none;">
|
7 |
-
<li><?php echo Mage::getStoreConfig('payment/'.$_code.'/text_bankselect', Mage::app()->getStore()); ?></li>
|
8 |
-
<?php
|
9 |
-
foreach($banks as $bank){
|
10 |
-
echo "<li><input id='".$_code."_".$bank->getOptionSubId()."' type='radio' name='payment[option_sub]' value='".$bank->getOptionSubId()."' class='radio' />"
|
11 |
-
. "<label style='float:none;' for='".$_code."_".$bank->getOptionSubId()."'> <img title='".$bank->getName()."' src='".$bank->getImage()."' /></label></li>";
|
12 |
-
}
|
13 |
-
?>
|
14 |
-
</ul>
|
15 |
-
<div>
|
16 |
-
<?php echo $this->getMethod()->getConfigData('message');?>
|
17 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/adminhtml/base/default/template/pay/payment/form/idealSelect.phtml
CHANGED
@@ -1,20 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
$_code=$this->getMethodCode();
|
3 |
-
|
4 |
-
$banks = $this->getBanks();
|
5 |
-
?>
|
6 |
-
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none;">
|
7 |
-
<li><?php echo Mage::getStoreConfig('payment/'.$_code.'/text_bankselect', Mage::app()->getStore()); ?></li>
|
8 |
-
<select name='payment[option_sub]' >
|
9 |
-
<option value=''><?php echo Mage::getStoreConfig('payment/'.$_code.'/text_bankselect', Mage::app()->getStore()); ?></option>
|
10 |
-
<?php
|
11 |
-
foreach($banks as $bank){
|
12 |
-
echo "<option value='".$bank->getOptionSubId()."'>".$bank->getName()."</option>";
|
13 |
-
}?>
|
14 |
-
|
15 |
-
</select>
|
16 |
-
|
17 |
-
</ul>
|
18 |
-
<div>
|
19 |
-
<?php echo $this->getMethod()->getConfigData('message');?>
|
20 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/adminhtml/base/default/template/pay/payment/form/klarna.phtml
CHANGED
@@ -1,37 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
$_code = $this->getMethodCode();
|
3 |
-
|
4 |
-
$dob = $this->getDob();
|
5 |
-
/** @var Mage_Sales_Model_Quote $quote */
|
6 |
-
$quote = $this->getQuote();
|
7 |
-
|
8 |
-
list($dobYear, $dobMonth, $dobDay) = explode('-', $dob);
|
9 |
-
|
10 |
-
?>
|
11 |
-
|
12 |
-
|
13 |
-
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none;">
|
14 |
-
<li><?php echo $this->__('Date of Birth'); ?></li>
|
15 |
-
<li>
|
16 |
-
<div class="input-box customer-dob">
|
17 |
-
<div class="dob-day">
|
18 |
-
<input type="text" id="day" name="payment[birthday_day]" value="<?php echo $dobDay; ?>" title="Day"
|
19 |
-
class="input-text">
|
20 |
-
<label for="day">DD</label>
|
21 |
-
</div>
|
22 |
-
<div class="dob-month">
|
23 |
-
<input type="text" id="month" name="payment[birthday_month]" value="<?php echo $dobMonth; ?>"
|
24 |
-
title="Month"
|
25 |
-
class="input-text">
|
26 |
-
<label for="month">MM</label>
|
27 |
-
</div>
|
28 |
-
<div class="dob-year">
|
29 |
-
<input type="text" id="year" name="payment[birthday_year]" value="<?php echo $dobYear; ?>" title="Year"
|
30 |
-
class="input-text" autocomplete="off">
|
31 |
-
<label for="year">YYYY</label>
|
32 |
-
</div>
|
33 |
-
</li>
|
34 |
-
</ul>
|
35 |
-
<div>
|
36 |
-
<?php echo $this->getMethod()->getConfigData('message'); ?>
|
37 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/adminhtml/base/default/template/pay/payment/form/yehhpay.phtml
CHANGED
@@ -1,37 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
$_code = $this->getMethodCode();
|
3 |
-
|
4 |
-
$dob = $this->getDob();
|
5 |
-
/** @var Mage_Sales_Model_Quote $quote */
|
6 |
-
$quote = $this->getQuote();
|
7 |
-
|
8 |
-
list($dobYear, $dobMonth, $dobDay) = explode('-', $dob);
|
9 |
-
|
10 |
-
?>
|
11 |
-
|
12 |
-
|
13 |
-
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none;">
|
14 |
-
<li><?php echo $this->__('Date of Birth'); ?></li>
|
15 |
-
<li>
|
16 |
-
<div class="input-box customer-dob">
|
17 |
-
<div class="dob-day">
|
18 |
-
<input type="text" id="day" name="payment[birthday_day]" value="<?php echo $dobDay; ?>" title="Day"
|
19 |
-
class="input-text">
|
20 |
-
<label for="day">DD</label>
|
21 |
-
</div>
|
22 |
-
<div class="dob-month">
|
23 |
-
<input type="text" id="month" name="payment[birthday_month]" value="<?php echo $dobMonth; ?>"
|
24 |
-
title="Month"
|
25 |
-
class="input-text">
|
26 |
-
<label for="month">MM</label>
|
27 |
-
</div>
|
28 |
-
<div class="dob-year">
|
29 |
-
<input type="text" id="year" name="payment[birthday_year]" value="<?php echo $dobYear; ?>" title="Year"
|
30 |
-
class="input-text" autocomplete="off">
|
31 |
-
<label for="year">YYYY</label>
|
32 |
-
</div>
|
33 |
-
</li>
|
34 |
-
</ul>
|
35 |
-
<div>
|
36 |
-
<?php echo $this->getMethod()->getConfigData('message'); ?>
|
37 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/pay/payment/form/billink.phtml
CHANGED
@@ -59,7 +59,7 @@ $enableBusiness = Mage::getStoreConfig('payment/pay_payment_billink/ask_data_bus
|
|
59 |
</div>
|
60 |
<?php } ?>
|
61 |
<li class="input-box">
|
62 |
-
<input id="billink_agree" type="checkbox" value="1" name="payment[billink_agree]" /> <label for="billink_agree">Ik ga akkoord met de</label> <a target="new" href="http://billink.nl/voorwaarden/gebruikersvoorwaarden.pdf">
|
63 |
</li>
|
64 |
|
65 |
</ul>
|
59 |
</div>
|
60 |
<?php } ?>
|
61 |
<li class="input-box">
|
62 |
+
<input id="billink_agree" type="checkbox" value="1" name="payment[billink_agree]" /> <label for="billink_agree">Ik ga akkoord met de</label> <a target="new" href="http://billink.nl/voorwaarden/gebruikersvoorwaarden.pdf">betalingsvoorwaarden</a>
|
63 |
</li>
|
64 |
|
65 |
</ul>
|
app/locale/en_US/Pay_Payment.csv
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"Order uncanceled","Order uncanceled"
|
2 |
+
"Discount","Discount"
|
3 |
+
"Shipping","Shipping"
|
4 |
+
"Er is een storing bij de door u gekozen betaalmethode of bank. Kiest u alstublieft een andere betaalmethode of probeer het later nogmaals","Something went wrong trying to start the payment. Please choose another payment method or try again later"
|
5 |
+
"Vast bedrag","Fixed amount"
|
6 |
+
"Percentage van totaalbedrag","Percentage of the total"
|
7 |
+
"Om met billink te betalen, moet je akkoord gaan met de voorwaarden","To pay with billink you have to accept the terms and conditions"
|
8 |
+
"Betaling geannuleerd","Payment canceled"
|
9 |
+
"Algemene instellingen","General settings"
|
10 |
+
"Pay.nl plugin versie","Pay.nl plugin version"
|
11 |
+
"Uw API token, deze kunt u vinden op <a href='https://admin.pay.nl/company/tokens'>admin.pay.nl/company/tokens</a>","Your API token, you can find this on: <a href='https://admin.pay.nl/company/tokens'>admin.pay.nl/company/tokens</a>"
|
12 |
+
"Uw service id, deze kunt u vinden op <a href='https://admin.pay.nl/programs/programs'>admin.pay.nl/programs/programs</a>","Your serviceId, you can find this on: <a href='https://admin.pay.nl/programs/programs'>admin.pay.nl/programs/programs</a>"
|
13 |
+
"Schakel in om alle betalingen in testmode te starten. Je kunt de betaling vervolgens bevestigen met je apitoken","Enable this to start all transactions in testmode, You can confirm a transaction by filling in your api token on the payment screen"
|
14 |
+
"Automatisch factureren","Automatic invoicing"
|
15 |
+
"Betaalde orders automatisch factureren, LET OP! Als dit op NEE staat kun je orders ook niet refunden","Automaticly invoice paid orders, CAUTION! If you disable this you are not able to refund orders"
|
16 |
+
"Emailen bij factureren","Send invoice email"
|
17 |
+
"Een email sturen met de factuur","Notify the customer when the invoice is made"
|
18 |
+
"Statusupdates sturen","Send status updates"
|
19 |
+
"Updates sturen wanner de status van de order wijzigt","Send a status update when the status of the order is updated"
|
20 |
+
"Klantgegeven en orderdata naar pay versturen, verplicht indien u gebruik maakt van een achteraf betaalmethode, of wanneer u gebruik wilt maken van Second Chance","Send customer data to pay.nl, required if you are using pay later paymentmethods, or if you want to use Second Chance"
|
21 |
+
"Winkelwagen vullen bij cancel","Refill cart on cancel"
|
22 |
+
"Geef aan of u wilt dat de winkelwagen weer wordt gevuld met de producten die waren besteld als de gebruiker op het betaalscherm op annuleren heeft geklikt","Will refill the cart with the products from the order when the customer cancels the transaction"
|
23 |
+
"Success pagina","Success page"
|
24 |
+
"De pagina waar de gebruiker naartoe gestuurd moet worden bij een geslaagde betaling","The page where the user is redirected to after a succesfull payment"
|
25 |
+
"Pending pagina","Pending page"
|
26 |
+
"De pagina waar de gebruiker naartoe gestuurd moet worden wanneer de betaalstatus nog pending is (bijv. bij paypal komt de statusupdate later)","the page where the user is redirected to when the payment is still pending. Some payment methods don’t process immediately so usually you show the success page here."
|
27 |
+
"Mislukt pagina","Failure page"
|
28 |
+
"De pagina waar de gebruiker naartoe gestuurd moet worden bij een mislukte/geannuleerde betaling","The page where the user is redirected to after a failed payment"
|
29 |
+
"Gebruikers taal","User language"
|
30 |
+
"De taalcode die naar pay.nl moet worden gestuurd, dit is van invloed op de taal van het betaalscherm en de eventuele email die naar de gebruiker wordt gestuurd door pay (bijvoorbeeld bij bankoverschrijving)","The language code to add to the transaction. The payment screen will be shown in this language, and the emails we send to the customer as well."
|
31 |
+
"Icoontjes weergeven","Show icons"
|
32 |
+
"Icoontjes bij de betaalmethoden weergeven","Show the payment method icons in the checkout"
|
33 |
+
"Betaalkosten weergeven","Show payment charge"
|
34 |
+
"Kosten voor de betaalmethode weergeven in de checkout","Show the charge of the payment method in the checkout"
|
35 |
+
"Selecteer hoe groot de icoontjes van de betaalmethoden moeten zijn","Select the size of the payment method icons"
|
36 |
+
"Text betalingskosten","Payment charge label"
|
37 |
+
"De text die wordt weergegeven bij de betalingskosten","The text that is shown for the payment charge"
|
38 |
+
"Gateway","Gateway"
|
39 |
+
"Gebruik de standard gateway, op <a href='http://status-pay.nl'>status-pay.nl</a> kunt u de status van onze techniek volgen","Use the standard gateway, on <a href='http://status-pay.nl'>status-pay.nl</a> you can view the status of our services"
|
40 |
+
"Failover gateway","Failover gateway"
|
41 |
+
"Vul hier de locatie van de failover gateway in die door pay.nl is verstrekt","If applicable, fill in the failover gateway here if pay.nl supplied you with one"
|
42 |
+
"Refunden inschakelen","Enable refunds"
|
43 |
+
"Schakel dit uit indien u het rechstreeks refunden wilt uitschakelen","Disable this if you never want the plugin to be able to refund transactions"
|
44 |
+
"Alle betaalmethoden weergegeven in admin","Display all payment methods in the admin"
|
45 |
+
"Schakel dit in om alle betaalmethoden selecteerbaar te maken in de admin, er wordt geen betaling gestart","Enable this to show all our payment methods when creating an admin order, no transactions are started."
|
46 |
+
"Beschikbare betaalmethoden","Available payment methods"
|
47 |
+
"Beschikbaar","Available"
|
48 |
+
"Hierboven ziet u de betaalmethoden die voor uw account bij pay.nl beschikbaar zijn","Payment methods above are available in your account"
|
49 |
+
"Betaallink (alleen admin orders)","Paylink (Only admin orders)"
|
50 |
+
"Wilt u deze betaalmethode gebruiken","Do you want to use this payment method"
|
51 |
+
"Actief","Enabled"
|
52 |
+
"Titel van de betaalmethode","Label of the payment method"
|
53 |
+
"Nieuwe order status","New order status"
|
54 |
+
"De status die een order moet krijgen bij het toevoegen","The status the order gets on creation"
|
55 |
+
"Gelukt order status","Paid order status"
|
56 |
+
"De status die een order moet krijgen na succesvolle betaling","The status the order gets after a successful payment"
|
57 |
+
"Extra kosten rekenen","Charge payment fee"
|
58 |
+
"Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het totaalbedrag of een vast bedrag","If you want to charge a fee for this payment method, you can select if you want to charge a fixed amount or a percentage here"
|
59 |
+
"Extra kosten","Payment charge"
|
60 |
+
"Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen, als u geen extra kosten wilt rekenen vult u niets in","How much is the payment fee, use a point for decimals, if you don’t want to charge a fee leave this empty"
|
61 |
+
"Btw voor extra kosten","VAT for payment fee"
|
62 |
+
"Bevestigingsmail sturen","Send confirmation email"
|
63 |
+
"Wanneer wilt u dat de bevestigingsmail wordt verstuurd","When do you want the confirmation email to be sent"
|
64 |
+
"Emailen bij factureren","Email when invoicing"
|
65 |
+
"Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan","Send an email when invoicing, CAUTION: Will only work if invoicing is enabled under general settings"
|
66 |
+
"Betaalmethode sorteer volgorde","Payment method sort order"
|
67 |
+
"Minimum bedrag","Minimum order amount"
|
68 |
+
"Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden","The minimum order amount for which this payment method is valid"
|
69 |
+
"Maximum bedrag","Maximum order amount"
|
70 |
+
"Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden","The maximum order amount for which this payment method is valid"
|
71 |
+
"Beschikbaarheid per land","Availability per country"
|
72 |
+
"Toegestane landen","Allowed countries"
|
73 |
+
"Selecteer de landen waarvoor deze betaalmethode beschikbaar is","Select the countries where this payment method is available"
|
74 |
+
"Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden","Enable this if you want to block this payment method for certain payment methods"
|
75 |
+
"Geblokkeerde verzendmethoden","Blocked shipping methods"
|
76 |
+
"Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is","Select the shipping methods where tis payment method is NOT allowed"
|
77 |
+
"Verzendmethoden blokkeren","Block shipping methods"
|
78 |
+
"Persoonlijk inschakelen","Use for private customers"
|
79 |
+
"Zakelijk inschakelen","Use for business customers"
|
80 |
+
"Geboortedatum vragen, zodat persoonlijke bestellingen rechtstreeks worden doorgestuurd zonder tussenscherm","Ask birthdate, so private orders contain all required information to process"
|
81 |
+
"Bedrijfsgegven vragen, zodat zakelijke bestellingen rechtstreeks worden doorgestuurd zonder tussenscherm","Ask company details, so business orders conain all required information to process"
|
package.xml
CHANGED
@@ -1,23 +1,20 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Pay_NL</name>
|
4 |
-
<version>3.8.
|
5 |
<stability>stable</stability>
|
6 |
<license>Pay</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Betaalmethoden van pay.nl</summary>
|
10 |
<description>Magento plugin voor betaalmethoden van pay.nl</description>
|
11 |
-
<notes>
|
12 |
-
|
13 |
-
Added
|
14 |
-
Added version number to config
|
15 |
-
Added additional information to the payment object
|
16 |
-
All pay later methods need invoice and shipping address to be equal.</notes>
|
17 |
<authors><author><name>Andy Pieters</name><user>andy</user><email>andy@pay.nl</email></author></authors>
|
18 |
-
<date>2017-
|
19 |
-
<time>
|
20 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Pay_Payment.xml" hash="035161a836b38119a3deee9a53aa0493"/></dir></target><target name="magecommunity"><dir name="Pay"><dir name="Payment"><dir name="Block"><dir name="Adminhtml"><file name="Paymentmethods.php" hash="388fd5b8c91b469989956a44d3747981"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="17f7aa9dd229b05b8150ad8580d26ea2"/></dir><dir name="Invoice"><file name="Totals.php" hash="4fda933239ba6c5efe0abf855a578abe"/></dir><file name="Totals.php" hash="76764ff8e32876bf937c276acd2fcf17"/></dir><file name="Totals.php" hash="53f1e18fa57da728bb7ae8391099322a"/></dir><file name="Version.php" hash="c894dbb295f86ea139ab0395bf4b7432"/></dir><dir name="Form"><file name="Abstract.php" hash="3a88ab9907aa9729c9224a136e4ef17c"/><file name="Afterpay.php" hash="60e7120d92a35479229dc8686965170f"/><file name="Afterpayem.php" hash="81d7859343d26234ae897cf236acb3c9"/><file name="Amex.php" hash="9c4945bb3577d56002dc7cd24ce00fd3"/><file name="Billink.php" hash="c700934ea3e0438828093602e3ac9455"/><file name="Bitcoin.php" hash="f3a40f1d2691aed2f9e7f3477b5deb1c"/><file name="Capayable.php" hash="1fb8d87532881f98ba65c46215910cdd"/><file name="CapayableGespreid.php" hash="082ca172c67f29185b21e935e32c9c1e"/><file name="Cartebleue.php" hash="db7da62ea79ae9e8a15998b91618c7cb"/><file name="Fashioncheque.php" hash="7c1a9727da5d3fccd0a07abb7424f296"/><file name="Fashiongiftcard.php" hash="433c0c649e6657515d3c6969b905d676"/><file name="Focum.php" hash="174b8123191d98dd2328de887c9450df"/><file name="Gezondheidsbon.php" hash="33fcf9147f239a604bd4fba78ea2cba4"/><file name="Giropay.php" hash="b2f52e1b1e3340950238bde715f8f963"/><file name="Givacard.php" hash="d2dc92a3b66236a302a54049a08840e0"/><file name="Ideal.php" hash="fef986eaba046584083e36f3609a0013"/><file name="Incasso.php" hash="aebe891d50b69970bd46f59d23814edb"/><file name="Instore.php" hash="f175a59da6a95ce976a2b516cd12ed82"/><file name="Klarna.php" hash="5af95f201b4318cf8d35441a735ba513"/><file name="Maestro.php" hash="82b16a17cd78e1ad6f46fe751da7c8e4"/><file name="Mistercash.php" hash="ed955716ad3c8ad4bc00f374cd0cfd8c"/><file name="Mybank.php" hash="057c8079eebde684e9227ab2d7e14405"/><file name="Overboeking.php" hash="f4be14559a4a8c3e2daec114f45bcdd2"/><file name="Paylink.php" hash="88aa76f66dd6de2c1edbaa8fa2f82848"/><file name="Paypal.php" hash="f9579c1c34eb4436e53f761c2dee258a"/><file name="Paysafecard.php" hash="6df3b810346618d9161a8e9cac559deb"/><file name="Podiumkadokaart.php" hash="eeac3bafc861cffb016b9a2b2e3826a9"/><file name="Postepay.php" hash="7aa30da423bf38cfdf4a4deb6b628d1d"/><file name="Sofortbanking.php" hash="6900b858d9081ba94c1eb2d543672891"/><file name="Telefoon.php" hash="54c8520b21e1c999b52c54e93b542df8"/><file name="Visamastercard.php" hash="ce3a7868f9b8860acaaf176fc153896f"/><file name="Vvvgiftcard.php" hash="4830f8b4d221316ecdcb28b419799d23"/><file name="Webshopgiftcard.php" hash="3061340972cc57c3baf5a372a1fd7b61"/><file name="Wijncadeau.php" hash="72b1003d47bf7d03c8c14f3a04919e17"/><file name="Yehhpay.php" hash="1dfaa01621b4a366a6a83c92471c4dfd"/><file name="Yourgift.php" hash="4a2fafa29ca7d860e99529dd7f2cbff4"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="ed22b3a323eafbea1e211ce7b8babf5d"/></dir><dir name="Invoice"><file name="Totals.php" hash="f609b1022bf81824e8863548bb97ca70"/></dir><file name="Totals.php" hash="cdb66b39cea22a6ed2aef9454c90c4b7"/></dir></dir></dir><file name="Exception.php" hash="a200bf2c08b9b9ee4d126feb40abbd19"/><dir name="Helper"><file name="Data.php" hash="0a6d14810761e933763f7df7367e1e57"/><file name="Order.php" hash="979a58869cdb424419d37ad983c158d0"/><file name="Total.php" hash="0a7d2b69cd75323c38d69de9073db4c0"/></dir><dir name="Model"><dir name="Backend"><file name="Trim.php" hash="a232e48f459a6556c393f4da7a0d4139"/></dir><dir name="Mysql4"><dir name="Option"><file name="Collection.php" hash="54034bcf55cc7586e3d9cea66a267ed0"/></dir><file name="Option.php" hash="70563149e562bb27cee0f8041e170fce"/><dir name="Optionsub"><file name="Collection.php" hash="90f32544532471e2fb2dcd5a54b66be8"/></dir><file name="Optionsub.php" hash="20838820f4dc50ca04c8faf79597aea0"/><dir name="Transaction"><file name="Collection.php" hash="289e4368ab9d03e36bec938f9b3c9666"/></dir><file name="Transaction.php" hash="cb2787ab540acf82e94daef0ba07235e"/></dir><file name="Observer.php" hash="12fe99ed9392d34d11f8dd3c5c142914"/><file name="Option.php" hash="2a42d9bb5040b1f2964c146149cb1afd"/><file name="Optionsub.php" hash="acc178145aec8aa3f813055188cec3b5"/><dir name="Paymentmethod"><file name="Afterpay.php" hash="e49bbb97b953f951db400f0fc0aecaf7"/><file name="Afterpayem.php" hash="27801be2ff4a131707aeeed0479c61ee"/><file name="Amex.php" hash="7b4157754d63950c3896a516db92e8f2"/><file name="Billink.php" hash="baebae501f20b45d265e3700cb9ff7e2"/><file name="Bitcoin.php" hash="496ec9c7912b8b284168e93640528ed6"/><file name="Capayable.php" hash="1a3abeb4e890e099eb9a311b62a89ff6"/><file name="CapayableGespreid.php" hash="cf13bf9b313b1e73afc66ca9953291cf"/><file name="Cartebleue.php" hash="9c7582f774e76a5932a58a8b9ec9e51a"/><file name="Fashioncheque.php" hash="68355c9aaaf281b47d805dd09a29a2e4"/><file name="Fashiongiftcard.php" hash="ffd7187ca2d0305b32b4f72719e7531b"/><file name="Focum.php" hash="a8116fdb47c802604c6411b6b7d1d1bf"/><file name="Gezondheidsbon.php" hash="9eb4a0560499cfa77bfeb0caf2721880"/><file name="Giropay.php" hash="0c1a03865705abf36a515f4ce853fe79"/><file name="Givacard.php" hash="674b31ad7ec22621b57093da2944dec0"/><file name="Ideal.php" hash="ce91a44aae3943e0f17fbd2fed5bf3c9"/><file name="Incasso.php" hash="201b14ae2b7ca0c3ca57c10c7f63539f"/><file name="Instore.php" hash="3f8e5ceaafbfd926e4f17416873d7160"/><file name="Klarna.php" hash="2bb6bb95dffa9c845fc9584bf7076c5d"/><file name="Maestro.php" hash="eaa24f85ca579779f8f48d0b55dbf41f"/><file name="Mistercash.php" hash="f731220c7c1b1bef18632d2463d9a1a7"/><file name="Mybank.php" hash="15343fcf04a43da6209a2d68e530ed8d"/><file name="Overboeking.php" hash="9d2829863036d3990a1e1e650fa651b3"/><file name="Paylink.php" hash="9817ea9b14aa5be1e236758e354ce554"/><file name="Paypal.php" hash="cab6b68d26e84407fa33089df7ac54c8"/><file name="Paysafecard.php" hash="932534b552ea0668aa7923c931dd546a"/><file name="Podiumkadokaart.php" hash="98e0fda57978ac23f8ccac603a62c55d"/><file name="Postepay.php" hash="b98826f7a81a1631227de202ed769e1d"/><file name="Sofortbanking.php" hash="989478f44af7f829d5566734bfae96c3"/><file name="Telefoon.php" hash="8744b545ef8c5f55cc6c3d209c27e8af"/><file name="Visamastercard.php" hash="db8cf0d660bd13a52ed79822350bbcc5"/><file name="Vvvgiftcard.php" hash="a726dbdf43590afec40b898797c6e90c"/><file name="Webshopgiftcard.php" hash="746e512f5421e465010afe85a3db88fc"/><file name="Wijncadeau.php" hash="f5de786cd19fc9dc9ce82e15a2c78c2d"/><file name="Yehhpay.php" hash="de6a9e98f92fc4af140b9525cde46b40"/><file name="Yourgift.php" hash="dd5f2c77dd2a2c473d9153fb243cf454"/></dir><file name="Paymentmethod.php" hash="2ec86eab70c8e9baef66cb442608d681"/><dir name="Paypal"><file name="Cart.php" hash="4e2c74c4f744ddc613023ebeea924a25"/></dir><dir name="Resource"><file name="Setup.php" hash="4bf6f4eb88b06047e021f55077898312"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Paymentcharge.php" hash="00177802127ff3c9d8d58d54f7b2e4d7"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Paymentcharge.php" hash="9cfd81f13a15fee779d77b3cf63cf825"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Paymentcharge.php" hash="908268174ed3923773b4a522e180da97"/></dir></dir></dir></dir><dir name="Source"><file name="Gateway.php" hash="78d710bc4415e9872f270cd15b30551d"/><file name="Iconsize.php" hash="6e3d674afb63ddcc8f30a968b8a9dd71"/><file name="Language.php" hash="53db4f77dcf223a1afd260c565150bfe"/><dir name="Paymentmethod"><file name="Active.php" hash="ee0210654744b696b79a95f1c4747be1"/><dir name="Afterpay"><file name="Active.php" hash="631b79947d92cf932c80eca13f53afe9"/></dir><dir name="Afterpayem"><file name="Active.php" hash="1d049374372537c86e2c593e452889d1"/></dir><dir name="Amex"><file name="Active.php" hash="bc1e611d56d0372959a4b66f172cd1e0"/></dir><dir name="Billink"><file name="Active.php" hash="18d119c4720809e1cd82a51e95dd8a77"/></dir><dir name="Bitcoin"><file name="Active.php" hash="fc89631b3cda4a656d9b7f3973849eae"/></dir><dir name="Capayable"><file name="Active.php" hash="65d3e8a72527f75942e6054192965aa7"/></dir><dir name="CapayableGespreid"><file name="Active.php" hash="a471a6a2c7a3a59780c89a67ed8a6924"/></dir><dir name="Cartebleue"><file name="Active.php" hash="bcf8c51ecfbc8d44c9f49a39dc764bd4"/></dir><dir name="Fashioncheque"><file name="Active.php" hash="c5fa9deac7ffd651b049ffb72133163f"/></dir><dir name="Fashiongiftcard"><file name="Active.php" hash="372d97ba5fb4f462d407cb781509534d"/></dir><dir name="Focum"><file name="Active.php" hash="418942b5cf3a48d515cf3589b00637e6"/></dir><dir name="Gezondheidsbon"><file name="Active.php" hash="f24be4a3c557a717634e9d874c442d02"/></dir><dir name="Giropay"><file name="Active.php" hash="1552d5fc9fbb84a2d2f3871a55ac4ec6"/></dir><dir name="Givacard"><file name="Active.php" hash="c69157dff1c3dc4572d693c63140969b"/></dir><dir name="Ideal"><file name="Active.php" hash="85d0fcdfa9d3258d6ff5bceae5b0042f"/><file name="Selecttype.php" hash="37e19c073cf39469efe1ce9d7548a4b7"/></dir><dir name="Incasso"><file name="Active.php" hash="d99d1c2538d021f126243b738564fc4a"/></dir><dir name="Instore"><file name="Active.php" hash="3a6bc8939693c22823e0a9c9c67ef22a"/></dir><dir name="Klarna"><file name="Active.php" hash="c16af8dbed563f8eb0c0794428955283"/></dir><dir name="Maestro"><file name="Active.php" hash="c33b890119ecfcbc4f67044ac8750f42"/></dir><dir name="Mistercash"><file name="Active.php" hash="24633712262b195c058abb08b7468ee6"/></dir><dir name="Mybank"><file name="Active.php" hash="d29339a25c6a1bd4c02e0609ad3668cf"/></dir><dir name="Overboeking"><file name="Active.php" hash="10c1163ece5af584568e7cc8a2aa6975"/></dir><dir name="Paypal"><file name="Active.php" hash="626755f8781e02fdc5693b4f21a43be3"/></dir><dir name="Paysafecard"><file name="Active.php" hash="498f7ca442b0b640a40917b9e891664c"/></dir><dir name="Podiumkadokaart"><file name="Active.php" hash="2836dfcb49fb6e267c169ea0f1a8e011"/></dir><dir name="Postepay"><file name="Active.php" hash="40101c5b929e5c652b7c73d38bd55b00"/></dir><dir name="Sofortbanking"><file name="Active.php" hash="6090cc3aa35ba5655e1c3766c22d73a8"/></dir><dir name="Telefoon"><file name="Active.php" hash="e48b97faa7bf1744787e3ac60c0f178c"/></dir><dir name="Visamastercard"><file name="Active.php" hash="89130148898e2cf60e97630820ab8958"/></dir><dir name="Vvvgiftcard"><file name="Active.php" hash="ed0258c05c2e16ea189dfbd221a45b51"/></dir><dir name="Webshopgiftcard"><file name="Active.php" hash="4340b8530118937df32caa2a53294b5b"/></dir><dir name="Wijncadeau"><file name="Active.php" hash="b0b9a73e470a188731c6121b642c3710"/></dir><dir name="Yehhpay"><file name="Active.php" hash="bea1e10dcd469224e5f356864a691de2"/></dir><dir name="Yourgift"><file name="Active.php" hash="2e277ce8b3407f037468c17b818f4144"/></dir></dir><file name="Sendmail.php" hash="626c01900a480ecd790bf56324e4590c"/><file name="Showfee.php" hash="1203dc1beb95867f232e0945a1728146"/><dir name="Status"><file name="PendingPayment.php" hash="9358466304af44f3a22f77fec7630be1"/><file name="Processing.php" hash="aea6f58cfb750a93f03ae4b435c59766"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Chargetype.php" hash="82c781472b46ae466f2ec6d6b0251df3"/></dir></dir></dir><dir name="Transaction"><file name="LockException.php" hash="57054928500c8bac587bb93f631e14fc"/></dir><file name="Transaction.php" hash="8bb6b623b503640d605cde5b27af50e8"/></dir><file name="composer.json" hash="6c8823e38701d6ad4db0d02873530de2"/><file name="composer.lock" hash="ead8c2328b584294d1efa171b8c23e88"/><dir name="controllers"><file name="CheckoutController.php" hash="e49b7563e4c080ea8db8e307f50d5780"/><file name="OrderController.php" hash="e2da5c7341641a0db70c744f3c1d16a3"/></dir><dir name="etc"><file name="config.xml" hash="1f8058f02c43fe2e09d0bb939ce6702d"/><file name="system.xml" hash="1b7bcbf6e2aaf6b7b76555741e730b29"/></dir><dir name="sql"><dir name="pay_payment_setup"><file name="install-3.7.1.php" hash="827660dd9690002a99d49a5ab0420f0f"/><file name="upgrade-3.0.0-3.1.0.php" hash="4b76b4f06ca7d3ffcec5e55a72773340"/><file name="upgrade-3.1.2.2-3.1.2.4.php" hash="aa75d3330b6d6db8d41a33404c6ca923"/><file name="upgrade-3.1.2.7-3.1.2.8.php" hash="22882b3a6a6977d1cb2b29cecb5a792f"/><file name="upgrade-3.2.1-3.2.2.php" hash="c30b9d725fc24bc00ce1548a7cb23137"/><file name="upgrade-3.2.13-3.2.14.php" hash="4fa59649ffc6a7cc6af3050e5f2a9700"/><file name="upgrade-3.6.5-3.6.6.php" hash="9c181eca48b537f84910292982b99c02"/><file name="upgrade-3.6.6-3.7.0.php" hash="6dc3deaa1086c87ef9d994ac6f7f7ea3"/><file name="upgrade-3.7.0-3.7.1.php" hash="8ee7093a83e9a4d2e1c2788ab31a99cd"/></dir></dir><dir name="vendor"><file name="autoload.php" hash="83d1056ba028254c33e7b71a4fe2e756"/><dir name="composer"><file name="ClassLoader.php" hash="bf6c4758ae060fd8f3e3a88e6c24ac3c"/><file name="LICENSE" hash="efa04e84182a9053f7563cf94064966f"/><file name="autoload_classmap.php" hash="8645d3a4e3ad87e7cf4d88a46717aab4"/><file name="autoload_namespaces.php" hash="35e12c7d76c4a81633bcf547c0e229a9"/><file name="autoload_psr4.php" hash="8fb5e4874e376f6218f954feb91d329f"/><file name="autoload_real.php" hash="29aed176b804fbe46a2756c54e7d2547"/><file name="autoload_static.php" hash="fed89d87b7ac73ef219dafa263bd3be9"/><file name="installed.json" hash="ca1dc83cdfa8c4baf54a40f7251357e8"/></dir><dir name="paynl"><dir name="sdk"><file name="README.md" hash="b0bffdca80e42d6cb52e820a4427b2f1"/><file name="composer.json" hash="8d66100746c7a72daae2eabbafa624b3"/><dir name="samples"><file name="config.sample.php" hash="4fab7308ade8623b5335732a9904e9bd"/><dir name="directDebit"><file name="add.php" hash="4034615d2c1c9b4dd3990749fe2fcb1d"/><file name="get.php" hash="5e5f3bf39602bd7f9a24a6bafdc4d85e"/><dir name="mandate"><file name="add.php" hash="7bc185514dd6b3727b058a8ee8f410bd"/><file name="addTransaction.php" hash="f8fa8c889c4878c4f31a586b00e78c9e"/><file name="get.php" hash="418ee427a180237a7a259cedd349e74c"/></dir><dir name="recurring"><file name="add.php" hash="7292977cd9de5da0e35569e5a3dc3a13"/><file name="get.php" hash="b96da3f0716a43625b1cc918edf90f7f"/></dir></dir><file name="exchange.php" hash="ece154591da8abd7f167635adbb84a3d"/><dir name="instore"><file name="confirmPayment.php" hash="0dc20bbab68f5ad8014d1627417c74b2"/><file name="getAllTerminals.php" hash="248a1c34de92cb4b26928e12eac7a24d"/><file name="getReceipt.php" hash="22f9736437a47f88d2c9ac8ad991c311"/><file name="payment.php" hash="e2895873daef84ef859a9251f62e7910"/><file name="status.php" hash="76172816339a3342beacbd90a46644b3"/></dir><file name="return.php" hash="7aa22326d6a8bd68b633e202fd85a487"/><dir name="service"><file name="getPaylinkUrl.php" hash="95962291c6feab31089be6d324f79283"/></dir><dir name="transaction"><file name="addRecurring.php" hash="e3af5f167730d312d1bbc9e3260328b1"/><file name="capture.php" hash="16d94830ef9737004c1704d31025e64a"/><file name="paymentMethods.php" hash="bb61b10cc5fd28db8708bb3c337aa7a8"/><file name="refund.php" hash="3ff5fe3329078bae5b70957317b077fc"/><file name="start.php" hash="ea3e09a7014f31f098bbd9147bec0eb0"/><file name="void.php" hash="13ae46719190684c9749069f70a38bcd"/></dir><dir name="validate"><file name="isPayServerIp.php" hash="19058a723db11ddeed3c52a3ba917ce6"/></dir></dir><dir name="src"><dir name="Api"><file name="Api.php" hash="f85c4cf757986c8dd1f858646fdb0438"/><dir name="Currency"><file name="Currency.php" hash="89ae7fd4e4095e374f33ba66f7d7ca32"/><file name="GetAll.php" hash="2fdc83ffbb9671d88dc583890118b6ef"/></dir><dir name="DirectDebit"><file name="DebitAdd.php" hash="7199518dc836d34144ad72711d435bbe"/><file name="DebitGet.php" hash="04115c7e84d216396a5f2f1b844a6e0f"/><file name="Delete.php" hash="851f6abc00869821aeceaebf78ce2f80"/><file name="DirectDebit.php" hash="b11c24151503c2402f6c696b2dab90af"/><file name="MandateAdd.php" hash="e92716cd8eeddab5ac0e28666a5ddd61"/><file name="MandateDebit.php" hash="ae09eb661936b125a3bca5bba39ca375"/><file name="MandateGet.php" hash="5e53cf099612a0b82a89f3516ec55d17"/><file name="RecurringAdd.php" hash="167a30314a8713bbfaa6906ae72aad57"/><file name="RecurringGet.php" hash="db7d5d73370b0428f86667e1f6b92101"/><file name="Update.php" hash="6ee552228f2fd98990eb453204b8506a"/></dir><dir name="Instore"><file name="ConfirmPayment.php" hash="f8dad4880859a66e605209155459df01"/><file name="GetAllTerminals.php" hash="17f824a8519736ac04f63829f2d83edb"/><file name="GetTransactionTicket.php" hash="57e956e4bfef63a853b03759d13f8174"/><file name="Instore.php" hash="ca3ae4de77ff6b73f106487e027b3037"/><file name="Payment.php" hash="da4ee88b3b6992f7a4b438d4c2991330"/><file name="Status.php" hash="0507f8028097860e3145dee82f364297"/></dir><dir name="Refund"><file name="Add.php" hash="3dc8bf8b3c7be9f28982188276fcd74c"/><file name="Refund.php" hash="7d237e5128a9c1063ba70e705cca3c37"/></dir><dir name="Service"><file name="GetPayLinkUrl.php" hash="a290b8533f30b871b46f3a0295c41dad"/><file name="Service.php" hash="1e664edea598d318466b050144ba6880"/></dir><dir name="Transaction"><file name="AddRecurring.php" hash="d283987b15767a7469c6c4479effba37"/><file name="Approve.php" hash="d1709966f1f042b41d1bc44926f27dee"/><file name="Capture.php" hash="604738b3fe9b4451d5802de1c07fc9ba"/><file name="Decline.php" hash="0a6c37c859560af8bef2ec37edc64450"/><file name="GetService.php" hash="0bca117078f4ff5e705e0577fb70c586"/><file name="Info.php" hash="7a9f8568b606c096984c0a7da7916e11"/><file name="Refund.php" hash="d4e01fbcb8abba8df170498c0dd56168"/><file name="Start.php" hash="8cd62ceeaedd845378c9d2c714aca19c"/><file name="Transaction.php" hash="d80ebf3623abd560e8ecd4ae8c92639a"/><file name="Void.php" hash="e76c3dc2432e51db9c7d785ee4f0dbd5"/></dir><dir name="Validate"><file name="IsPayServerIp.php" hash="c403fb225d08b6b011edf866c9d43156"/><file name="Validate.php" hash="d3feb1fa0edb37bbee86ef935d149f38"/></dir><dir name="Voucher"><file name="Activate.php" hash="7932b7899e9770821e712b59e952e3b5"/><file name="Balance.php" hash="5e4cf8999d7e353d98006c8b068ca069"/><file name="Charge.php" hash="525d1e8491418c49e705d08f907aabdc"/><file name="Voucher.php" hash="ba71c6cd712fb89c6682a70b03f550f3"/></dir></dir><file name="Config.php" hash="e73385a4fc039062d12d406435a9716b"/><dir name="Curl"><file name="Dummy.php" hash="1745478bcae3d5081f9b12cc81f1e0ca"/></dir><file name="Currency.php" hash="49f1340a25d7a9b1cfdfb3073104e92c"/><dir name="DirectDebit"><file name="Mandate.php" hash="6b778ce4c44d2d2d4db66f6dcea08e29"/><file name="Recurring.php" hash="821065f96b13bda3d0f835638a745ee0"/></dir><file name="DirectDebit.php" hash="329bd85db112da942644a766b79802f0"/><dir name="Error"><file name="Api.php" hash="bbe509d6742ba5ac54e67db2865b9d59"/><file name="Error.php" hash="63a453baf90355604d24ddf015df7a34"/><file name="NotFound.php" hash="115ec3c5650244dd84c9e71ada3945ed"/><dir name="Required"><file name="ApiToken.php" hash="0485882225b6e0679e0f6c974b1b7aeb"/><file name="ServiceId.php" hash="8e17bb932fa9b03c265512143c57dd5d"/></dir><file name="Required.php" hash="37f246dd05e95cb5a5793ec80b618f32"/></dir><file name="Helper.php" hash="5b327f622fcc7b6dcc601761283956d2"/><file name="Instore.php" hash="a114c542769c3ead1521ee52bfab58e7"/><file name="Paymentmethods.php" hash="bbce6a45fb49fbe4d3e242b85d35b9cb"/><file name="Refund.php" hash="ab8011579f035c5529f71e1af32ee816"/><dir name="Result"><dir name="DirectDebit"><file name="Add.php" hash="710be2f5e0c263226de6ddcc12b5160f"/><file name="Get.php" hash="044463d71af40ef9f8022bf9aa54394c"/><dir name="Mandate"><file name="Add.php" hash="28c1cd015980a69a0827509222b13922"/><file name="AddTransaction.php" hash="60d92d48c11921d03f036aa6b3b3425e"/><file name="Get.php" hash="e27eda30346c16512d74d2682c8542b0"/></dir><dir name="Recurring"><file name="Add.php" hash="5a317db77bccf59ec7ec3b5604ec53ba"/><file name="Get.php" hash="ed4c97826dd6af0144e415d93535d61d"/></dir></dir><dir name="Instore"><file name="ConfirmPayment.php" hash="c40673aa1b0986581f20c64c03be9e5e"/><file name="Payment.php" hash="4cebf421c4fc05ec86d3adfef5ec8261"/><file name="Receipt.php" hash="93363b372e01a7125335d574d8634760"/><file name="Status.php" hash="9a53d172946cd5760d058370d52ba2c7"/><file name="Terminals.php" hash="865b4b8afd074f70c4e2201bc11f4771"/></dir><dir name="Refund"><file name="Add.php" hash="d055da637564eef29e804a1faef1dbf8"/></dir><file name="Result.php" hash="4175022c91a50bdbd91ffe438b043d2b"/><dir name="Transaction"><file name="AddRecurring.php" hash="9f167dac05c4fa5635e1196476727c39"/><file name="Refund.php" hash="3e22f2aa8f531a6eb07fde33047ed82e"/><file name="Start.php" hash="7200ebdb50cf149ceea8c013c82c6eab"/><file name="Transaction.php" hash="351737022ccf57de09e75d25fb7eedfd"/></dir><dir name="Voucher"><file name="Voucher.php" hash="d3d991fac30467cce37b0de53a615ae1"/></dir></dir><file name="Service.php" hash="bcfb8d540a089363ddd8db69d09c8b60"/><file name="Transaction.php" hash="ee61551c63c97ad26a8b4fbb3d7e325d"/><file name="Validate.php" hash="8469564f78184177934295ce28b96a54"/><file name="Voucher.php" hash="d6e202d522ffd37692aad50989f001ec"/></dir><dir name="tests"><file name="ConfigTest.php" hash="b7f00c625a9df9718d97b3bf6b688c99"/><file name="CurrencyTest.php" hash="e9cfe5bb2bc4371321fb408fc53f83d8"/><file name="HelperTest.php" hash="61f43eaa726ad662ab47f9a718438983"/><file name="PaymentmethodsTest.php" hash="eec5b50c78f43edac925cfb9f89b33cd"/><file name="RefundTest.php" hash="8a93fe0d1eb2ffe13c14214d4cd0109a"/><file name="TransactionTest.php" hash="85318b09514abc0432dcda91c647187f"/><file name="ValidateTest.php" hash="b5090dd8ee903face24f21a9bdce2c95"/><dir name="dummyData"><dir name="Refund"><file name="refund.json" hash="f9e4da66248a64f964723b4ed6c7ffdf"/><file name="refundError.json" hash="c71c384b2cfae94c429ccfb8d28fd4e1"/></dir><dir name="Transaction"><dir name="Result"><file name="approve.json" hash="cca7667c9092cae77189660118f45aaa"/><file name="decline.json" hash="cca7667c9092cae77189660118f45aaa"/><file name="refund.json" hash="f9e4da66248a64f964723b4ed6c7ffdf"/><file name="refundError.json" hash="c71c384b2cfae94c429ccfb8d28fd4e1"/><file name="transactionPaid.json" hash="938a9e79081292a6ebaf2163175d64ec"/><file name="transactionVerify.json" hash="a04928cef5af76fa2d3cd23662517d89"/></dir><file name="startOk.json" hash="0fea5cb9fa6a59dba6226942053648fb"/></dir><dir name="Validate"><file name="isPayServerIpNo.json" hash="476b4edbf5412cdfb318c74fc21a11d8"/><file name="isPayServerIpYes.json" hash="6ce66f3fb6a06d6b77059803d4fef7c0"/></dir><file name="currencies.json" hash="103b88f54e43ff2585d42a70b6370c67"/><file name="getService.json" hash="345a55bdadb305146b121b7996f4b9c0"/></dir></dir><file name=".gitignore" hash="54b761861a00672137da5cf9fe00e2de"/><file name=".travis.yml" hash="ccf7c0d24624132428b4b9539b78ecf3"/></dir></dir><dir name="php-curl-class"><dir name="php-curl-class"><file name="LICENSE" hash="7246f848faa4e9c9fc0ea91122d6e680"/><file name="README.md" hash="f2eeff9b53b4824b6fd88b2be85e4dcc"/><file name="composer.json" hash="c27df8073014d0fea654e916009f8466"/><dir name="docs"><file name="Makefile" hash="1b19a74bb48c433ab52d7c381b78dc7e"/><file name="README.md" hash="9e9a36f20f8c03c734345beaa2edb0a5"/><dir name="source"><file name="conf.py" hash="98412cfa8535eb2749a53b6d88371635"/><file name="faq.rst" hash="fc97af6348e454000aca799cab6d0053"/><file name="index.rst" hash="d8e3e63cc6a63f60721bc1a1c3f5001c"/><file name="overview.rst" hash="1e62e027121ef9aaa19bdd317d44ede2"/></dir><file name=".gitignore" hash="2529e845806d223afb1ff7dcdeab55d4"/></dir><dir name="examples"><file name="README.md" hash="944a15e05bd22c875d6698a6389399c8"/><file name="coinbase_account_balance.php" hash="06c04fad60f4fa6670f674165003e9af"/><file name="coinbase_spot_rate.php" hash="27bb3b0f5387e019ff906fe3d13bf2c4"/><file name="deviant_art_rss.php" hash="fa0151454eb0de60483bfbf2649b8f8a"/><file name="download_file.php" hash="c1cced0f90217042812e29db6ac0c10d"/><file name="download_file_with_callback.php" hash="3ea9b3feebbc3bd83f77ed52a18de05d"/><file name="flickr.class.php" hash="43179dade7dd33508981ee478002a2f5"/><file name="flickr_photo_search.php" hash="26d02cb1ccdfb7a7a3ec39b6c59d4971"/><file name="flickr_upload_photo.php" hash="0d11e5ba8f41398fec8e6cc977b55c82"/><file name="get.php" hash="c47177bc4f87f84b1502f35ba0e6d1e6"/><file name="get_base_url_1.php" hash="9ed7f693187b90ce9ee1aa4b420ffe52"/><file name="get_base_url_2.php" hash="8b499939e897066c0885928ff475b44b"/><file name="github_create_gist.php" hash="3192e4063a43dce6bf3901d782c4ac40"/><file name="gmail_send_email.php" hash="5e4411eb80b16d4d42f2b94053f32c30"/><file name="google_maps_geocode_address.php" hash="f150e2ec72013094a774092b2696d670"/><file name="google_plus_profile.php" hash="ab6e6cf7b33945fda76fe7c2ed66c540"/><file name="gratipay_send_tip.php" hash="05ea71d33448196288445feb14d431d6"/><file name="instagram_popular_media.php" hash="f7266d36e6fa96ac7594654a6918abf5"/><file name="instagram_search_photos.php" hash="f8d44579efe04a7ed739e45a5af26bdd"/><file name="mailchimp_subscribe_email_address.php" hash="1bd4d2508a06096a33088943c539d643"/><file name="multi_curl_before_send.php" hash="98f002a915261b6375e2a8cbf033c624"/><file name="multi_curl_delete.php" hash="2384ea09bff8b031565e63e75e313040"/><file name="multi_curl_download.php" hash="8701601b7192d1671ed834020684480d"/><file name="multi_curl_download_with_callback.php" hash="f68cffed4c903407320396188604f422"/><file name="multi_curl_get.php" hash="f4b8b67ca9d8370a48ca791b9cd37328"/><file name="multi_curl_get_callbacks.php" hash="b8af5ee91e9c24a2cf1f1440a244b3ce"/><file name="multi_curl_patch.php" hash="9237e7c26a7f0cd45034bf55e602c256"/><file name="multi_curl_post.php" hash="1f7a00588adde05f39e1f93d3840d7ed"/><file name="multi_curl_put.php" hash="5ba9ddeae279a4089f7f7eaad942aa95"/><file name="post.php" hash="5414eda7a246263ddeb5920ee7c45bc3"/><file name="post_json.php" hash="0a5fdb77bc668ba5d841eca3fb2ab75c"/><file name="post_redirect_get.php" hash="042d70bc4d0bf463b89c602b20776bec"/><file name="progress.php" hash="279aa9284556d014fc78e96c1b75cd50"/><file name="progress_advanced.php" hash="c3d91329a1fc927bab54c10bed176408"/><file name="proxy.php" hash="e3acfff828e3949c2e984fe860fa479f"/><file name="put.php" hash="7d75554c8c4b2195bd2598c77c952838"/><file name="reddit_top_pics.php" hash="7fda200709ea7ec03df2c8a53a485892"/><file name="set_cookie.php" hash="2600096ebec5c6583156c9280955a7e2"/><file name="set_url_1.php" hash="fabbe1c29525b92888a0936485691d29"/><file name="set_url_2.php" hash="3c71c517455f994a06cb08d2e94ce0c8"/><file name="twitter_post_tweet.php" hash="a252660e9bffd0641381a0ad0813fa78"/><file name="twitter_trending_topics.php" hash="23053d5dfd766c98182378f3a1249e5d"/><file name="upload_file.php" hash="05050db0aa963192e9d85171b77ae341"/><file name="youtube_list_playlist_videos.php" hash="6c5ae3f3cdf6dcb5c5fe360624d47bef"/><file name="youtube_video_count.php" hash="f9d7598ab61717f719b99d9b076b2ca4"/></dir><dir name="scripts"><file name="bump_major_version.php" hash="f930cf07539423734d5f7378fa5646de"/><file name="bump_minor_version.php" hash="03754135acff395b4ecca040471b509e"/><file name="bump_patch_version.php" hash="df1d6bdffd08a3972878fa9096ca8982"/><file name="update_readme_methods.sh" hash="6a84cc9cb7e74303a854104201333e0e"/><file name="v4_migration.php" hash="1204efd398ee5562283229f9e12250c3"/></dir><dir name="src"><dir name="Curl"><file name="CaseInsensitiveArray.php" hash="517e786b03deb69d055072059a6f6589"/><file name="Curl.php" hash="f80a854bc7e74bd2a9960dd95483fadd"/><file name="MultiCurl.php" hash="9030703db3afaf9ff3851454dca961b3"/></dir></dir><dir name="tests"><dir name="PHPCurlClass"><file name="Helper.php" hash="a90668ebc6045420e86582fd30c3c11c"/><file name="PHPCurlClassTest.php" hash="b1c186f447b184fdebd5b44b280ea820"/><file name="PHPMultiCurlClassTest.php" hash="80cbe86949f4c0a2fa9002c1135bbada"/><file name="server.php" hash="69ed2817f2a3d5fc91ccfc2b0a35d5fa"/></dir><file name="before_script.sh" hash="9662ccee85ad2a2d6756bc9042f1a972"/><file name="check_syntax.sh" hash="bcec868d19007801e7a6d97a8a352d30"/><file name="phpunit.xml" hash="02538f4dc944563d09cb7c8503304f6c"/><file name="run.sh" hash="b480ddd83c3c09ec768a25ed8ca53e02"/><file name="script.sh" hash="fc29b81395c851a876531d73a2591b55"/></dir><dir name=".github"><file name="CONTRIBUTING.md" hash="8ddd43058158bea44998b574a271fe64"/><file name="ISSUE_TEMPLATE.md" hash="2249b43c827634a6b3616cfabd9f51f2"/></dir><file name=".gitignore" hash="62f86c4700c6fd118d837d9b9cb369ae"/><file name=".travis.yml" hash="3da971d2cee55f305f06c243db0179fb"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="pay"><dir name="payment"><dir name="form"><file name="billink.phtml" hash="db7de1982d49caf0d161423951525af2"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="focum.phtml" hash="d5e55377466c3fcc5b45a4104fbc020d"/><file name="ideal.phtml" hash="6cfa69a8773dfc091e055b531bbf31dc"/><file name="idealSelect.phtml" hash="13936d975af0083512378f5936a5896d"/><file name="instore.phtml" hash="5299cf1294e69a744c6a87405859c7fd"/><file name="klarna.phtml" hash="b154ba769fd50ece09109f8780ba3b5b"/><file name="yehhpay.phtml" hash="b154ba769fd50ece09109f8780ba3b5b"/></dir><file name="mark.phtml" hash="ab61d728f0d237a34f78300554d8ba0f"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="pay"><dir name="payment"><dir name="form"><file name="billink.phtml" hash="db7de1982d49caf0d161423951525af2"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="focum.phtml" hash="d5e55377466c3fcc5b45a4104fbc020d"/><file name="ideal.phtml" hash="6cfa69a8773dfc091e055b531bbf31dc"/><file name="idealSelect.phtml" hash="13936d975af0083512378f5936a5896d"/><file name="instore.phtml" hash="5299cf1294e69a744c6a87405859c7fd"/><file name="klarna.phtml" hash="b154ba769fd50ece09109f8780ba3b5b"/><file name="paylink.phtml" hash="1f030c00390300cac93e347872c560cf"/><file name="yehhpay.phtml" hash="b154ba769fd50ece09109f8780ba3b5b"/></dir><file name="mark.phtml" hash="ab61d728f0d237a34f78300554d8ba0f"/></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="pay_payment"><file name="logo.png" hash="b45a2ccf5e85a713b786d85c1059afee"/></dir></target></contents>
|
21 |
<compatible/>
|
22 |
<dependencies><required><php><min>5.1.0</min><max>7.2.99</max></php><extension><name>curl</name><min/><max/></extension></required></dependencies>
|
23 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Pay_NL</name>
|
4 |
+
<version>3.8.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Pay</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Betaalmethoden van pay.nl</summary>
|
10 |
<description>Magento plugin voor betaalmethoden van pay.nl</description>
|
11 |
+
<notes>Admin forms no longer show settings that dont do anything
|
12 |
+
updated instore to work with magepos split payments
|
13 |
+
Added english translation for all admin settings</notes>
|
|
|
|
|
|
|
14 |
<authors><author><name>Andy Pieters</name><user>andy</user><email>andy@pay.nl</email></author></authors>
|
15 |
+
<date>2017-08-04</date>
|
16 |
+
<time>09:30:45</time>
|
17 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Pay_Payment.xml" hash="035161a836b38119a3deee9a53aa0493"/></dir></target><target name="magecommunity"><dir name="Pay"><dir name="Payment"><dir name="Block"><dir name="Adminhtml"><file name="Paymentmethods.php" hash="388fd5b8c91b469989956a44d3747981"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="17f7aa9dd229b05b8150ad8580d26ea2"/></dir><dir name="Invoice"><file name="Totals.php" hash="4fda933239ba6c5efe0abf855a578abe"/></dir><file name="Totals.php" hash="76764ff8e32876bf937c276acd2fcf17"/></dir><file name="Totals.php" hash="53f1e18fa57da728bb7ae8391099322a"/></dir><file name="Version.php" hash="c894dbb295f86ea139ab0395bf4b7432"/></dir><dir name="Form"><file name="Abstract.php" hash="3a88ab9907aa9729c9224a136e4ef17c"/><file name="Afterpay.php" hash="60e7120d92a35479229dc8686965170f"/><file name="Afterpayem.php" hash="81d7859343d26234ae897cf236acb3c9"/><file name="Amex.php" hash="9c4945bb3577d56002dc7cd24ce00fd3"/><file name="Billink.php" hash="c700934ea3e0438828093602e3ac9455"/><file name="Bitcoin.php" hash="f3a40f1d2691aed2f9e7f3477b5deb1c"/><file name="Capayable.php" hash="1fb8d87532881f98ba65c46215910cdd"/><file name="CapayableGespreid.php" hash="082ca172c67f29185b21e935e32c9c1e"/><file name="Cartebleue.php" hash="db7da62ea79ae9e8a15998b91618c7cb"/><file name="Fashioncheque.php" hash="7c1a9727da5d3fccd0a07abb7424f296"/><file name="Fashiongiftcard.php" hash="433c0c649e6657515d3c6969b905d676"/><file name="Focum.php" hash="174b8123191d98dd2328de887c9450df"/><file name="Gezondheidsbon.php" hash="33fcf9147f239a604bd4fba78ea2cba4"/><file name="Giropay.php" hash="b2f52e1b1e3340950238bde715f8f963"/><file name="Givacard.php" hash="d2dc92a3b66236a302a54049a08840e0"/><file name="Ideal.php" hash="fef986eaba046584083e36f3609a0013"/><file name="Incasso.php" hash="aebe891d50b69970bd46f59d23814edb"/><file name="Instore.php" hash="f175a59da6a95ce976a2b516cd12ed82"/><file name="Klarna.php" hash="5af95f201b4318cf8d35441a735ba513"/><file name="Maestro.php" hash="82b16a17cd78e1ad6f46fe751da7c8e4"/><file name="Mistercash.php" hash="ed955716ad3c8ad4bc00f374cd0cfd8c"/><file name="Mybank.php" hash="057c8079eebde684e9227ab2d7e14405"/><file name="Overboeking.php" hash="f4be14559a4a8c3e2daec114f45bcdd2"/><file name="Paylink.php" hash="88aa76f66dd6de2c1edbaa8fa2f82848"/><file name="Paypal.php" hash="f9579c1c34eb4436e53f761c2dee258a"/><file name="Paysafecard.php" hash="6df3b810346618d9161a8e9cac559deb"/><file name="Podiumkadokaart.php" hash="eeac3bafc861cffb016b9a2b2e3826a9"/><file name="Postepay.php" hash="7aa30da423bf38cfdf4a4deb6b628d1d"/><file name="Sofortbanking.php" hash="6900b858d9081ba94c1eb2d543672891"/><file name="Telefoon.php" hash="54c8520b21e1c999b52c54e93b542df8"/><file name="Visamastercard.php" hash="ce3a7868f9b8860acaaf176fc153896f"/><file name="Vvvgiftcard.php" hash="4830f8b4d221316ecdcb28b419799d23"/><file name="Webshopgiftcard.php" hash="3061340972cc57c3baf5a372a1fd7b61"/><file name="Wijncadeau.php" hash="72b1003d47bf7d03c8c14f3a04919e17"/><file name="Yehhpay.php" hash="1dfaa01621b4a366a6a83c92471c4dfd"/><file name="Yourgift.php" hash="4a2fafa29ca7d860e99529dd7f2cbff4"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="ed22b3a323eafbea1e211ce7b8babf5d"/></dir><dir name="Invoice"><file name="Totals.php" hash="f609b1022bf81824e8863548bb97ca70"/></dir><file name="Totals.php" hash="cdb66b39cea22a6ed2aef9454c90c4b7"/></dir></dir></dir><file name="Exception.php" hash="a200bf2c08b9b9ee4d126feb40abbd19"/><dir name="Helper"><file name="Data.php" hash="0a6d14810761e933763f7df7367e1e57"/><file name="Order.php" hash="979a58869cdb424419d37ad983c158d0"/><file name="Total.php" hash="0a7d2b69cd75323c38d69de9073db4c0"/></dir><dir name="Model"><dir name="Backend"><file name="Trim.php" hash="a232e48f459a6556c393f4da7a0d4139"/></dir><dir name="Mysql4"><dir name="Option"><file name="Collection.php" hash="54034bcf55cc7586e3d9cea66a267ed0"/></dir><file name="Option.php" hash="70563149e562bb27cee0f8041e170fce"/><dir name="Optionsub"><file name="Collection.php" hash="90f32544532471e2fb2dcd5a54b66be8"/></dir><file name="Optionsub.php" hash="20838820f4dc50ca04c8faf79597aea0"/><dir name="Transaction"><file name="Collection.php" hash="289e4368ab9d03e36bec938f9b3c9666"/></dir><file name="Transaction.php" hash="cb2787ab540acf82e94daef0ba07235e"/></dir><file name="Observer.php" hash="12fe99ed9392d34d11f8dd3c5c142914"/><file name="Option.php" hash="2a42d9bb5040b1f2964c146149cb1afd"/><file name="Optionsub.php" hash="acc178145aec8aa3f813055188cec3b5"/><dir name="Paymentmethod"><file name="Afterpay.php" hash="e49bbb97b953f951db400f0fc0aecaf7"/><file name="Afterpayem.php" hash="27801be2ff4a131707aeeed0479c61ee"/><file name="Amex.php" hash="7b4157754d63950c3896a516db92e8f2"/><file name="Billink.php" hash="baebae501f20b45d265e3700cb9ff7e2"/><file name="Bitcoin.php" hash="496ec9c7912b8b284168e93640528ed6"/><file name="Capayable.php" hash="1a3abeb4e890e099eb9a311b62a89ff6"/><file name="CapayableGespreid.php" hash="cf13bf9b313b1e73afc66ca9953291cf"/><file name="Cartebleue.php" hash="9c7582f774e76a5932a58a8b9ec9e51a"/><file name="Fashioncheque.php" hash="68355c9aaaf281b47d805dd09a29a2e4"/><file name="Fashiongiftcard.php" hash="ffd7187ca2d0305b32b4f72719e7531b"/><file name="Focum.php" hash="a8116fdb47c802604c6411b6b7d1d1bf"/><file name="Gezondheidsbon.php" hash="9eb4a0560499cfa77bfeb0caf2721880"/><file name="Giropay.php" hash="0c1a03865705abf36a515f4ce853fe79"/><file name="Givacard.php" hash="674b31ad7ec22621b57093da2944dec0"/><file name="Ideal.php" hash="ce91a44aae3943e0f17fbd2fed5bf3c9"/><file name="Incasso.php" hash="201b14ae2b7ca0c3ca57c10c7f63539f"/><file name="Instore.php" hash="406294d37ff3a4c4abddba3391f88e5e"/><file name="Klarna.php" hash="2bb6bb95dffa9c845fc9584bf7076c5d"/><file name="Maestro.php" hash="eaa24f85ca579779f8f48d0b55dbf41f"/><file name="Mistercash.php" hash="f731220c7c1b1bef18632d2463d9a1a7"/><file name="Mybank.php" hash="15343fcf04a43da6209a2d68e530ed8d"/><file name="Overboeking.php" hash="9d2829863036d3990a1e1e650fa651b3"/><file name="Paylink.php" hash="2122533b1d437dff5a3ca71e0b3e78b4"/><file name="Paypal.php" hash="cab6b68d26e84407fa33089df7ac54c8"/><file name="Paysafecard.php" hash="932534b552ea0668aa7923c931dd546a"/><file name="Podiumkadokaart.php" hash="98e0fda57978ac23f8ccac603a62c55d"/><file name="Postepay.php" hash="b98826f7a81a1631227de202ed769e1d"/><file name="Sofortbanking.php" hash="989478f44af7f829d5566734bfae96c3"/><file name="Telefoon.php" hash="8744b545ef8c5f55cc6c3d209c27e8af"/><file name="Visamastercard.php" hash="db8cf0d660bd13a52ed79822350bbcc5"/><file name="Vvvgiftcard.php" hash="a726dbdf43590afec40b898797c6e90c"/><file name="Webshopgiftcard.php" hash="746e512f5421e465010afe85a3db88fc"/><file name="Wijncadeau.php" hash="f5de786cd19fc9dc9ce82e15a2c78c2d"/><file name="Yehhpay.php" hash="de6a9e98f92fc4af140b9525cde46b40"/><file name="Yourgift.php" hash="dd5f2c77dd2a2c473d9153fb243cf454"/></dir><file name="Paymentmethod.php" hash="b9afd7d40dfc81ba565282008b8f7b30"/><dir name="Paypal"><file name="Cart.php" hash="4e2c74c4f744ddc613023ebeea924a25"/></dir><dir name="Resource"><file name="Setup.php" hash="4bf6f4eb88b06047e021f55077898312"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Paymentcharge.php" hash="00177802127ff3c9d8d58d54f7b2e4d7"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Paymentcharge.php" hash="9cfd81f13a15fee779d77b3cf63cf825"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Paymentcharge.php" hash="908268174ed3923773b4a522e180da97"/></dir></dir></dir></dir><dir name="Source"><file name="Gateway.php" hash="78d710bc4415e9872f270cd15b30551d"/><file name="Iconsize.php" hash="6e3d674afb63ddcc8f30a968b8a9dd71"/><file name="Language.php" hash="53db4f77dcf223a1afd260c565150bfe"/><dir name="Paymentmethod"><file name="Active.php" hash="ee0210654744b696b79a95f1c4747be1"/><dir name="Afterpay"><file name="Active.php" hash="631b79947d92cf932c80eca13f53afe9"/></dir><dir name="Afterpayem"><file name="Active.php" hash="1d049374372537c86e2c593e452889d1"/></dir><dir name="Amex"><file name="Active.php" hash="bc1e611d56d0372959a4b66f172cd1e0"/></dir><dir name="Billink"><file name="Active.php" hash="18d119c4720809e1cd82a51e95dd8a77"/></dir><dir name="Bitcoin"><file name="Active.php" hash="fc89631b3cda4a656d9b7f3973849eae"/></dir><dir name="Capayable"><file name="Active.php" hash="65d3e8a72527f75942e6054192965aa7"/></dir><dir name="CapayableGespreid"><file name="Active.php" hash="a471a6a2c7a3a59780c89a67ed8a6924"/></dir><dir name="Cartebleue"><file name="Active.php" hash="bcf8c51ecfbc8d44c9f49a39dc764bd4"/></dir><dir name="Fashioncheque"><file name="Active.php" hash="c5fa9deac7ffd651b049ffb72133163f"/></dir><dir name="Fashiongiftcard"><file name="Active.php" hash="372d97ba5fb4f462d407cb781509534d"/></dir><dir name="Focum"><file name="Active.php" hash="418942b5cf3a48d515cf3589b00637e6"/></dir><dir name="Gezondheidsbon"><file name="Active.php" hash="f24be4a3c557a717634e9d874c442d02"/></dir><dir name="Giropay"><file name="Active.php" hash="1552d5fc9fbb84a2d2f3871a55ac4ec6"/></dir><dir name="Givacard"><file name="Active.php" hash="c69157dff1c3dc4572d693c63140969b"/></dir><dir name="Ideal"><file name="Active.php" hash="85d0fcdfa9d3258d6ff5bceae5b0042f"/><file name="Selecttype.php" hash="37e19c073cf39469efe1ce9d7548a4b7"/></dir><dir name="Incasso"><file name="Active.php" hash="d99d1c2538d021f126243b738564fc4a"/></dir><dir name="Instore"><file name="Active.php" hash="3a6bc8939693c22823e0a9c9c67ef22a"/></dir><dir name="Klarna"><file name="Active.php" hash="c16af8dbed563f8eb0c0794428955283"/></dir><dir name="Maestro"><file name="Active.php" hash="c33b890119ecfcbc4f67044ac8750f42"/></dir><dir name="Mistercash"><file name="Active.php" hash="24633712262b195c058abb08b7468ee6"/></dir><dir name="Mybank"><file name="Active.php" hash="d29339a25c6a1bd4c02e0609ad3668cf"/></dir><dir name="Overboeking"><file name="Active.php" hash="10c1163ece5af584568e7cc8a2aa6975"/></dir><dir name="Paypal"><file name="Active.php" hash="626755f8781e02fdc5693b4f21a43be3"/></dir><dir name="Paysafecard"><file name="Active.php" hash="498f7ca442b0b640a40917b9e891664c"/></dir><dir name="Podiumkadokaart"><file name="Active.php" hash="2836dfcb49fb6e267c169ea0f1a8e011"/></dir><dir name="Postepay"><file name="Active.php" hash="40101c5b929e5c652b7c73d38bd55b00"/></dir><dir name="Sofortbanking"><file name="Active.php" hash="6090cc3aa35ba5655e1c3766c22d73a8"/></dir><dir name="Telefoon"><file name="Active.php" hash="e48b97faa7bf1744787e3ac60c0f178c"/></dir><dir name="Visamastercard"><file name="Active.php" hash="89130148898e2cf60e97630820ab8958"/></dir><dir name="Vvvgiftcard"><file name="Active.php" hash="ed0258c05c2e16ea189dfbd221a45b51"/></dir><dir name="Webshopgiftcard"><file name="Active.php" hash="4340b8530118937df32caa2a53294b5b"/></dir><dir name="Wijncadeau"><file name="Active.php" hash="b0b9a73e470a188731c6121b642c3710"/></dir><dir name="Yehhpay"><file name="Active.php" hash="bea1e10dcd469224e5f356864a691de2"/></dir><dir name="Yourgift"><file name="Active.php" hash="2e277ce8b3407f037468c17b818f4144"/></dir></dir><file name="Sendmail.php" hash="626c01900a480ecd790bf56324e4590c"/><file name="Showfee.php" hash="1203dc1beb95867f232e0945a1728146"/><dir name="Status"><file name="PendingPayment.php" hash="9358466304af44f3a22f77fec7630be1"/><file name="Processing.php" hash="aea6f58cfb750a93f03ae4b435c59766"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Chargetype.php" hash="82c781472b46ae466f2ec6d6b0251df3"/></dir></dir></dir><dir name="Transaction"><file name="LockException.php" hash="57054928500c8bac587bb93f631e14fc"/></dir><file name="Transaction.php" hash="8bb6b623b503640d605cde5b27af50e8"/></dir><file name="composer.json" hash="6c8823e38701d6ad4db0d02873530de2"/><file name="composer.lock" hash="ead8c2328b584294d1efa171b8c23e88"/><dir name="controllers"><file name="CheckoutController.php" hash="e49b7563e4c080ea8db8e307f50d5780"/><file name="OrderController.php" hash="e2da5c7341641a0db70c744f3c1d16a3"/></dir><dir name="etc"><file name="config.xml" hash="e2e1a3d9fec08922864c9d48b7ec58fa"/><file name="system.xml" hash="c8ff2024ddc9a68b3b35ad5904d188fa"/></dir><dir name="sql"><dir name="pay_payment_setup"><file name="install-3.7.1.php" hash="827660dd9690002a99d49a5ab0420f0f"/><file name="upgrade-3.0.0-3.1.0.php" hash="4b76b4f06ca7d3ffcec5e55a72773340"/><file name="upgrade-3.1.2.2-3.1.2.4.php" hash="aa75d3330b6d6db8d41a33404c6ca923"/><file name="upgrade-3.1.2.7-3.1.2.8.php" hash="22882b3a6a6977d1cb2b29cecb5a792f"/><file name="upgrade-3.2.1-3.2.2.php" hash="c30b9d725fc24bc00ce1548a7cb23137"/><file name="upgrade-3.2.13-3.2.14.php" hash="4fa59649ffc6a7cc6af3050e5f2a9700"/><file name="upgrade-3.6.5-3.6.6.php" hash="9c181eca48b537f84910292982b99c02"/><file name="upgrade-3.6.6-3.7.0.php" hash="6dc3deaa1086c87ef9d994ac6f7f7ea3"/><file name="upgrade-3.7.0-3.7.1.php" hash="8ee7093a83e9a4d2e1c2788ab31a99cd"/></dir></dir><dir name="vendor"><file name="autoload.php" hash="83d1056ba028254c33e7b71a4fe2e756"/><dir name="composer"><file name="ClassLoader.php" hash="bf6c4758ae060fd8f3e3a88e6c24ac3c"/><file name="LICENSE" hash="efa04e84182a9053f7563cf94064966f"/><file name="autoload_classmap.php" hash="8645d3a4e3ad87e7cf4d88a46717aab4"/><file name="autoload_namespaces.php" hash="35e12c7d76c4a81633bcf547c0e229a9"/><file name="autoload_psr4.php" hash="8fb5e4874e376f6218f954feb91d329f"/><file name="autoload_real.php" hash="29aed176b804fbe46a2756c54e7d2547"/><file name="autoload_static.php" hash="fed89d87b7ac73ef219dafa263bd3be9"/><file name="installed.json" hash="ca1dc83cdfa8c4baf54a40f7251357e8"/></dir><dir name="paynl"><dir name="sdk"><file name="README.md" hash="b0bffdca80e42d6cb52e820a4427b2f1"/><file name="composer.json" hash="8d66100746c7a72daae2eabbafa624b3"/><dir name="samples"><file name="config.sample.php" hash="4fab7308ade8623b5335732a9904e9bd"/><dir name="directDebit"><file name="add.php" hash="4034615d2c1c9b4dd3990749fe2fcb1d"/><file name="get.php" hash="5e5f3bf39602bd7f9a24a6bafdc4d85e"/><dir name="mandate"><file name="add.php" hash="7bc185514dd6b3727b058a8ee8f410bd"/><file name="addTransaction.php" hash="f8fa8c889c4878c4f31a586b00e78c9e"/><file name="get.php" hash="418ee427a180237a7a259cedd349e74c"/></dir><dir name="recurring"><file name="add.php" hash="7292977cd9de5da0e35569e5a3dc3a13"/><file name="get.php" hash="b96da3f0716a43625b1cc918edf90f7f"/></dir></dir><file name="exchange.php" hash="ece154591da8abd7f167635adbb84a3d"/><dir name="instore"><file name="confirmPayment.php" hash="0dc20bbab68f5ad8014d1627417c74b2"/><file name="getAllTerminals.php" hash="248a1c34de92cb4b26928e12eac7a24d"/><file name="getReceipt.php" hash="22f9736437a47f88d2c9ac8ad991c311"/><file name="payment.php" hash="e2895873daef84ef859a9251f62e7910"/><file name="status.php" hash="76172816339a3342beacbd90a46644b3"/></dir><file name="return.php" hash="7aa22326d6a8bd68b633e202fd85a487"/><dir name="service"><file name="getPaylinkUrl.php" hash="95962291c6feab31089be6d324f79283"/></dir><dir name="transaction"><file name="addRecurring.php" hash="e3af5f167730d312d1bbc9e3260328b1"/><file name="capture.php" hash="16d94830ef9737004c1704d31025e64a"/><file name="paymentMethods.php" hash="bb61b10cc5fd28db8708bb3c337aa7a8"/><file name="refund.php" hash="3ff5fe3329078bae5b70957317b077fc"/><file name="start.php" hash="ea3e09a7014f31f098bbd9147bec0eb0"/><file name="void.php" hash="13ae46719190684c9749069f70a38bcd"/></dir><dir name="validate"><file name="isPayServerIp.php" hash="19058a723db11ddeed3c52a3ba917ce6"/></dir></dir><dir name="src"><dir name="Api"><file name="Api.php" hash="f85c4cf757986c8dd1f858646fdb0438"/><dir name="Currency"><file name="Currency.php" hash="89ae7fd4e4095e374f33ba66f7d7ca32"/><file name="GetAll.php" hash="2fdc83ffbb9671d88dc583890118b6ef"/></dir><dir name="DirectDebit"><file name="DebitAdd.php" hash="7199518dc836d34144ad72711d435bbe"/><file name="DebitGet.php" hash="04115c7e84d216396a5f2f1b844a6e0f"/><file name="Delete.php" hash="851f6abc00869821aeceaebf78ce2f80"/><file name="DirectDebit.php" hash="b11c24151503c2402f6c696b2dab90af"/><file name="MandateAdd.php" hash="e92716cd8eeddab5ac0e28666a5ddd61"/><file name="MandateDebit.php" hash="ae09eb661936b125a3bca5bba39ca375"/><file name="MandateGet.php" hash="5e53cf099612a0b82a89f3516ec55d17"/><file name="RecurringAdd.php" hash="167a30314a8713bbfaa6906ae72aad57"/><file name="RecurringGet.php" hash="db7d5d73370b0428f86667e1f6b92101"/><file name="Update.php" hash="6ee552228f2fd98990eb453204b8506a"/></dir><dir name="Instore"><file name="ConfirmPayment.php" hash="f8dad4880859a66e605209155459df01"/><file name="GetAllTerminals.php" hash="17f824a8519736ac04f63829f2d83edb"/><file name="GetTransactionTicket.php" hash="57e956e4bfef63a853b03759d13f8174"/><file name="Instore.php" hash="ca3ae4de77ff6b73f106487e027b3037"/><file name="Payment.php" hash="da4ee88b3b6992f7a4b438d4c2991330"/><file name="Status.php" hash="0507f8028097860e3145dee82f364297"/></dir><dir name="Refund"><file name="Add.php" hash="3dc8bf8b3c7be9f28982188276fcd74c"/><file name="Refund.php" hash="7d237e5128a9c1063ba70e705cca3c37"/></dir><dir name="Service"><file name="GetPayLinkUrl.php" hash="a290b8533f30b871b46f3a0295c41dad"/><file name="Service.php" hash="1e664edea598d318466b050144ba6880"/></dir><dir name="Transaction"><file name="AddRecurring.php" hash="d283987b15767a7469c6c4479effba37"/><file name="Approve.php" hash="d1709966f1f042b41d1bc44926f27dee"/><file name="Capture.php" hash="604738b3fe9b4451d5802de1c07fc9ba"/><file name="Decline.php" hash="0a6c37c859560af8bef2ec37edc64450"/><file name="GetService.php" hash="0bca117078f4ff5e705e0577fb70c586"/><file name="Info.php" hash="7a9f8568b606c096984c0a7da7916e11"/><file name="Refund.php" hash="d4e01fbcb8abba8df170498c0dd56168"/><file name="Start.php" hash="8cd62ceeaedd845378c9d2c714aca19c"/><file name="Transaction.php" hash="d80ebf3623abd560e8ecd4ae8c92639a"/><file name="Void.php" hash="e76c3dc2432e51db9c7d785ee4f0dbd5"/></dir><dir name="Validate"><file name="IsPayServerIp.php" hash="c403fb225d08b6b011edf866c9d43156"/><file name="Validate.php" hash="d3feb1fa0edb37bbee86ef935d149f38"/></dir><dir name="Voucher"><file name="Activate.php" hash="7932b7899e9770821e712b59e952e3b5"/><file name="Balance.php" hash="5e4cf8999d7e353d98006c8b068ca069"/><file name="Charge.php" hash="525d1e8491418c49e705d08f907aabdc"/><file name="Voucher.php" hash="ba71c6cd712fb89c6682a70b03f550f3"/></dir></dir><file name="Config.php" hash="e73385a4fc039062d12d406435a9716b"/><dir name="Curl"><file name="Dummy.php" hash="1745478bcae3d5081f9b12cc81f1e0ca"/></dir><file name="Currency.php" hash="49f1340a25d7a9b1cfdfb3073104e92c"/><dir name="DirectDebit"><file name="Mandate.php" hash="6b778ce4c44d2d2d4db66f6dcea08e29"/><file name="Recurring.php" hash="821065f96b13bda3d0f835638a745ee0"/></dir><file name="DirectDebit.php" hash="329bd85db112da942644a766b79802f0"/><dir name="Error"><file name="Api.php" hash="bbe509d6742ba5ac54e67db2865b9d59"/><file name="Error.php" hash="63a453baf90355604d24ddf015df7a34"/><file name="NotFound.php" hash="115ec3c5650244dd84c9e71ada3945ed"/><dir name="Required"><file name="ApiToken.php" hash="0485882225b6e0679e0f6c974b1b7aeb"/><file name="ServiceId.php" hash="8e17bb932fa9b03c265512143c57dd5d"/></dir><file name="Required.php" hash="37f246dd05e95cb5a5793ec80b618f32"/></dir><file name="Helper.php" hash="5b327f622fcc7b6dcc601761283956d2"/><file name="Instore.php" hash="a114c542769c3ead1521ee52bfab58e7"/><file name="Paymentmethods.php" hash="bbce6a45fb49fbe4d3e242b85d35b9cb"/><file name="Refund.php" hash="ab8011579f035c5529f71e1af32ee816"/><dir name="Result"><dir name="DirectDebit"><file name="Add.php" hash="710be2f5e0c263226de6ddcc12b5160f"/><file name="Get.php" hash="044463d71af40ef9f8022bf9aa54394c"/><dir name="Mandate"><file name="Add.php" hash="28c1cd015980a69a0827509222b13922"/><file name="AddTransaction.php" hash="60d92d48c11921d03f036aa6b3b3425e"/><file name="Get.php" hash="e27eda30346c16512d74d2682c8542b0"/></dir><dir name="Recurring"><file name="Add.php" hash="5a317db77bccf59ec7ec3b5604ec53ba"/><file name="Get.php" hash="ed4c97826dd6af0144e415d93535d61d"/></dir></dir><dir name="Instore"><file name="ConfirmPayment.php" hash="c40673aa1b0986581f20c64c03be9e5e"/><file name="Payment.php" hash="4cebf421c4fc05ec86d3adfef5ec8261"/><file name="Receipt.php" hash="93363b372e01a7125335d574d8634760"/><file name="Status.php" hash="9a53d172946cd5760d058370d52ba2c7"/><file name="Terminals.php" hash="865b4b8afd074f70c4e2201bc11f4771"/></dir><dir name="Refund"><file name="Add.php" hash="d055da637564eef29e804a1faef1dbf8"/></dir><file name="Result.php" hash="4175022c91a50bdbd91ffe438b043d2b"/><dir name="Transaction"><file name="AddRecurring.php" hash="9f167dac05c4fa5635e1196476727c39"/><file name="Refund.php" hash="3e22f2aa8f531a6eb07fde33047ed82e"/><file name="Start.php" hash="7200ebdb50cf149ceea8c013c82c6eab"/><file name="Transaction.php" hash="351737022ccf57de09e75d25fb7eedfd"/></dir><dir name="Voucher"><file name="Voucher.php" hash="d3d991fac30467cce37b0de53a615ae1"/></dir></dir><file name="Service.php" hash="bcfb8d540a089363ddd8db69d09c8b60"/><file name="Transaction.php" hash="ee61551c63c97ad26a8b4fbb3d7e325d"/><file name="Validate.php" hash="8469564f78184177934295ce28b96a54"/><file name="Voucher.php" hash="d6e202d522ffd37692aad50989f001ec"/></dir><dir name="tests"><file name="ConfigTest.php" hash="b7f00c625a9df9718d97b3bf6b688c99"/><file name="CurrencyTest.php" hash="e9cfe5bb2bc4371321fb408fc53f83d8"/><file name="HelperTest.php" hash="61f43eaa726ad662ab47f9a718438983"/><file name="PaymentmethodsTest.php" hash="eec5b50c78f43edac925cfb9f89b33cd"/><file name="RefundTest.php" hash="8a93fe0d1eb2ffe13c14214d4cd0109a"/><file name="TransactionTest.php" hash="85318b09514abc0432dcda91c647187f"/><file name="ValidateTest.php" hash="b5090dd8ee903face24f21a9bdce2c95"/><dir name="dummyData"><dir name="Refund"><file name="refund.json" hash="f9e4da66248a64f964723b4ed6c7ffdf"/><file name="refundError.json" hash="c71c384b2cfae94c429ccfb8d28fd4e1"/></dir><dir name="Transaction"><dir name="Result"><file name="approve.json" hash="cca7667c9092cae77189660118f45aaa"/><file name="decline.json" hash="cca7667c9092cae77189660118f45aaa"/><file name="refund.json" hash="f9e4da66248a64f964723b4ed6c7ffdf"/><file name="refundError.json" hash="c71c384b2cfae94c429ccfb8d28fd4e1"/><file name="transactionPaid.json" hash="938a9e79081292a6ebaf2163175d64ec"/><file name="transactionVerify.json" hash="a04928cef5af76fa2d3cd23662517d89"/></dir><file name="startOk.json" hash="0fea5cb9fa6a59dba6226942053648fb"/></dir><dir name="Validate"><file name="isPayServerIpNo.json" hash="476b4edbf5412cdfb318c74fc21a11d8"/><file name="isPayServerIpYes.json" hash="6ce66f3fb6a06d6b77059803d4fef7c0"/></dir><file name="currencies.json" hash="103b88f54e43ff2585d42a70b6370c67"/><file name="getService.json" hash="345a55bdadb305146b121b7996f4b9c0"/></dir></dir><file name=".gitignore" hash="54b761861a00672137da5cf9fe00e2de"/><file name=".travis.yml" hash="ccf7c0d24624132428b4b9539b78ecf3"/></dir></dir><dir name="php-curl-class"><dir name="php-curl-class"><file name="LICENSE" hash="7246f848faa4e9c9fc0ea91122d6e680"/><file name="README.md" hash="f2eeff9b53b4824b6fd88b2be85e4dcc"/><file name="composer.json" hash="c27df8073014d0fea654e916009f8466"/><dir name="docs"><file name="Makefile" hash="1b19a74bb48c433ab52d7c381b78dc7e"/><file name="README.md" hash="9e9a36f20f8c03c734345beaa2edb0a5"/><dir name="source"><file name="conf.py" hash="98412cfa8535eb2749a53b6d88371635"/><file name="faq.rst" hash="fc97af6348e454000aca799cab6d0053"/><file name="index.rst" hash="d8e3e63cc6a63f60721bc1a1c3f5001c"/><file name="overview.rst" hash="1e62e027121ef9aaa19bdd317d44ede2"/></dir><file name=".gitignore" hash="2529e845806d223afb1ff7dcdeab55d4"/></dir><dir name="examples"><file name="README.md" hash="944a15e05bd22c875d6698a6389399c8"/><file name="coinbase_account_balance.php" hash="06c04fad60f4fa6670f674165003e9af"/><file name="coinbase_spot_rate.php" hash="27bb3b0f5387e019ff906fe3d13bf2c4"/><file name="deviant_art_rss.php" hash="fa0151454eb0de60483bfbf2649b8f8a"/><file name="download_file.php" hash="c1cced0f90217042812e29db6ac0c10d"/><file name="download_file_with_callback.php" hash="3ea9b3feebbc3bd83f77ed52a18de05d"/><file name="flickr.class.php" hash="43179dade7dd33508981ee478002a2f5"/><file name="flickr_photo_search.php" hash="26d02cb1ccdfb7a7a3ec39b6c59d4971"/><file name="flickr_upload_photo.php" hash="0d11e5ba8f41398fec8e6cc977b55c82"/><file name="get.php" hash="c47177bc4f87f84b1502f35ba0e6d1e6"/><file name="get_base_url_1.php" hash="9ed7f693187b90ce9ee1aa4b420ffe52"/><file name="get_base_url_2.php" hash="8b499939e897066c0885928ff475b44b"/><file name="github_create_gist.php" hash="3192e4063a43dce6bf3901d782c4ac40"/><file name="gmail_send_email.php" hash="5e4411eb80b16d4d42f2b94053f32c30"/><file name="google_maps_geocode_address.php" hash="f150e2ec72013094a774092b2696d670"/><file name="google_plus_profile.php" hash="ab6e6cf7b33945fda76fe7c2ed66c540"/><file name="gratipay_send_tip.php" hash="05ea71d33448196288445feb14d431d6"/><file name="instagram_popular_media.php" hash="f7266d36e6fa96ac7594654a6918abf5"/><file name="instagram_search_photos.php" hash="f8d44579efe04a7ed739e45a5af26bdd"/><file name="mailchimp_subscribe_email_address.php" hash="1bd4d2508a06096a33088943c539d643"/><file name="multi_curl_before_send.php" hash="98f002a915261b6375e2a8cbf033c624"/><file name="multi_curl_delete.php" hash="2384ea09bff8b031565e63e75e313040"/><file name="multi_curl_download.php" hash="8701601b7192d1671ed834020684480d"/><file name="multi_curl_download_with_callback.php" hash="f68cffed4c903407320396188604f422"/><file name="multi_curl_get.php" hash="f4b8b67ca9d8370a48ca791b9cd37328"/><file name="multi_curl_get_callbacks.php" hash="b8af5ee91e9c24a2cf1f1440a244b3ce"/><file name="multi_curl_patch.php" hash="9237e7c26a7f0cd45034bf55e602c256"/><file name="multi_curl_post.php" hash="1f7a00588adde05f39e1f93d3840d7ed"/><file name="multi_curl_put.php" hash="5ba9ddeae279a4089f7f7eaad942aa95"/><file name="post.php" hash="5414eda7a246263ddeb5920ee7c45bc3"/><file name="post_json.php" hash="0a5fdb77bc668ba5d841eca3fb2ab75c"/><file name="post_redirect_get.php" hash="042d70bc4d0bf463b89c602b20776bec"/><file name="progress.php" hash="279aa9284556d014fc78e96c1b75cd50"/><file name="progress_advanced.php" hash="c3d91329a1fc927bab54c10bed176408"/><file name="proxy.php" hash="e3acfff828e3949c2e984fe860fa479f"/><file name="put.php" hash="7d75554c8c4b2195bd2598c77c952838"/><file name="reddit_top_pics.php" hash="7fda200709ea7ec03df2c8a53a485892"/><file name="set_cookie.php" hash="2600096ebec5c6583156c9280955a7e2"/><file name="set_url_1.php" hash="fabbe1c29525b92888a0936485691d29"/><file name="set_url_2.php" hash="3c71c517455f994a06cb08d2e94ce0c8"/><file name="twitter_post_tweet.php" hash="a252660e9bffd0641381a0ad0813fa78"/><file name="twitter_trending_topics.php" hash="23053d5dfd766c98182378f3a1249e5d"/><file name="upload_file.php" hash="05050db0aa963192e9d85171b77ae341"/><file name="youtube_list_playlist_videos.php" hash="6c5ae3f3cdf6dcb5c5fe360624d47bef"/><file name="youtube_video_count.php" hash="f9d7598ab61717f719b99d9b076b2ca4"/></dir><dir name="scripts"><file name="bump_major_version.php" hash="f930cf07539423734d5f7378fa5646de"/><file name="bump_minor_version.php" hash="03754135acff395b4ecca040471b509e"/><file name="bump_patch_version.php" hash="df1d6bdffd08a3972878fa9096ca8982"/><file name="update_readme_methods.sh" hash="6a84cc9cb7e74303a854104201333e0e"/><file name="v4_migration.php" hash="1204efd398ee5562283229f9e12250c3"/></dir><dir name="src"><dir name="Curl"><file name="CaseInsensitiveArray.php" hash="517e786b03deb69d055072059a6f6589"/><file name="Curl.php" hash="f80a854bc7e74bd2a9960dd95483fadd"/><file name="MultiCurl.php" hash="9030703db3afaf9ff3851454dca961b3"/></dir></dir><dir name="tests"><dir name="PHPCurlClass"><file name="Helper.php" hash="a90668ebc6045420e86582fd30c3c11c"/><file name="PHPCurlClassTest.php" hash="b1c186f447b184fdebd5b44b280ea820"/><file name="PHPMultiCurlClassTest.php" hash="80cbe86949f4c0a2fa9002c1135bbada"/><file name="server.php" hash="69ed2817f2a3d5fc91ccfc2b0a35d5fa"/></dir><file name="before_script.sh" hash="9662ccee85ad2a2d6756bc9042f1a972"/><file name="check_syntax.sh" hash="bcec868d19007801e7a6d97a8a352d30"/><file name="phpunit.xml" hash="02538f4dc944563d09cb7c8503304f6c"/><file name="run.sh" hash="b480ddd83c3c09ec768a25ed8ca53e02"/><file name="script.sh" hash="fc29b81395c851a876531d73a2591b55"/></dir><dir name=".github"><file name="CONTRIBUTING.md" hash="8ddd43058158bea44998b574a271fe64"/><file name="ISSUE_TEMPLATE.md" hash="2249b43c827634a6b3616cfabd9f51f2"/></dir><file name=".gitignore" hash="62f86c4700c6fd118d837d9b9cb369ae"/><file name=".travis.yml" hash="3da971d2cee55f305f06c243db0179fb"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="pay"><dir name="payment"><dir name="form"><file name="billink.phtml" hash="bbc082a2bbc4df102aaeba41d1648d85"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="focum.phtml" hash="d5e55377466c3fcc5b45a4104fbc020d"/><file name="ideal.phtml" hash="6cfa69a8773dfc091e055b531bbf31dc"/><file name="idealSelect.phtml" hash="13936d975af0083512378f5936a5896d"/><file name="instore.phtml" hash="5299cf1294e69a744c6a87405859c7fd"/><file name="klarna.phtml" hash="b154ba769fd50ece09109f8780ba3b5b"/><file name="yehhpay.phtml" hash="b154ba769fd50ece09109f8780ba3b5b"/></dir><file name="mark.phtml" hash="ab61d728f0d237a34f78300554d8ba0f"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="pay"><dir name="payment"><dir name="form"><file name="billink.phtml" hash="cdeb073e06c4c7f92c2d580473b366c4"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="focum.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="ideal.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="idealSelect.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="instore.phtml" hash="5299cf1294e69a744c6a87405859c7fd"/><file name="klarna.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="paylink.phtml" hash="1f030c00390300cac93e347872c560cf"/><file name="yehhpay.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><file name="mark.phtml" hash="ab61d728f0d237a34f78300554d8ba0f"/></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="pay_payment"><file name="logo.png" hash="b45a2ccf5e85a713b786d85c1059afee"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Pay_Payment.csv" hash="302641f9c31af2891de989007421091d"/></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.1.0</min><max>7.2.99</max></php><extension><name>curl</name><min/><max/></extension></required></dependencies>
|
20 |
</package>
|