diff --git a/Controller/Checkout/Exchange.php b/Controller/Checkout/Exchange.php index afebc522..1904ed2e 100644 --- a/Controller/Checkout/Exchange.php +++ b/Controller/Checkout/Exchange.php @@ -7,7 +7,9 @@ use Magento\Framework\Exception\LocalizedException; use Magento\Sales\Model\Order; +use Magento\Sales\Model\Order\Payment\Interceptor; use Magento\Sales\Model\OrderRepository; +use Paynl\Result\Transaction\Transaction; /** * Description of Index @@ -94,7 +96,6 @@ public function __construct( public function execute() { - $skipFraudDetection = $this->config->isSkipFraudDetection(); \Paynl\Config::setApiToken($this->config->getApiToken()); $params = $this->getRequest()->getParams(); @@ -131,92 +132,35 @@ public function execute() return $this->result->setContents('TRUE| Total due <= 0, so iam not touching the status of the order'); } - if ($transaction->isPaid()) { - $message = "PAID"; - if ($order->isCanceled()) { - try { - $this->uncancel($order); - } catch (LocalizedException $e) { - return $this->result->setContents('FALSE| Cannot un-cancel order: ' . $e->getMessage()); - } - $message .= " order was uncanceled"; - } - /** @var \Magento\Sales\Model\Order\Payment\Interceptor $payment */ - $payment = $order->getPayment(); - $payment->setTransactionId( - $transaction->getId() - ); - - $payment->setPreparedMessage('Pay.nl - '); - $payment->setIsTransactionClosed( - 0 - ); - $paidAmount = $transaction->getPaidCurrencyAmount(); - - if (!$this->paynlConfig->isAlwaysBaseCurrency()) { - if ($order->getBaseCurrencyCode() != $order->getOrderCurrencyCode()) { - // we can only register the payment in the base currency - $paidAmount = $order->getBaseGrandTotal(); - } - } - - $payment->registerCaptureNotification( - $paidAmount, $skipFraudDetection - ); - - // Force order state/status to processing - $order->setState(Order::STATE_PROCESSING); - - $statusProcessing = $this->config->getPaidStatus($order->getPayment()->getMethod()); - $order->setStatus(!empty($statusProcessing) ? $statusProcessing : Order::STATE_PROCESSING); - - $this->orderRepository->save($order); - - // notify customer - $invoice = $payment->getCreatedInvoice(); - if ($invoice && !$order->getEmailSent()) { - $this->orderSender->send($order); - $order->addStatusHistoryComment( - __('New order email sent') - )->setIsCustomerNotified( - true - )->save(); - } - if ($invoice && !$invoice->getEmailSent()) { - $this->invoiceSender->send($invoice); - - $order->addStatusHistoryComment( - __('You notified customer about invoice #%1.', - $invoice->getIncrementId()) - )->setIsCustomerNotified( - true - )->save(); - - } - - return $this->result->setContents("TRUE| " . $message); + if ($transaction->isPaid() || $transaction->isAuthorized()) { + return $this->processPaidOrder($transaction, $order); } elseif ($transaction->isCanceled()) { - if ($this->config->isNeverCancel()) { - return $this->result->setContents("TRUE| Not Canceled because never cancel is enabled"); - } - if ($order->getState() == 'holded') { - $order->unhold(); - } + return $this->cancelOrder($order); + } - $order->cancel(); - $order->addStatusHistoryComment(__('Pay.nl canceled the order')); - $this->orderRepository->save($order); + } - return $this->result->setContents("TRUE| CANCELED"); + private function cancelOrder(Order $order) + { + if ($this->config->isNeverCancel()) { + return $this->result->setContents("TRUE| Not Canceled because never cancel is enabled"); + } + if ($order->getState() == 'holded') { + $order->unhold(); } + $order->cancel(); + $order->addStatusHistoryComment(__('Pay.nl canceled the order')); + $this->orderRepository->save($order); + + return $this->result->setContents("TRUE| CANCELED"); } - private function uncancel(\Magento\Sales\Model\Order $order) + private function uncancelOrder(Order $order) { if ($order->isCanceled()) { - $state = \Magento\Sales\Model\Order::STATE_PENDING_PAYMENT; + $state = Order::STATE_PENDING_PAYMENT; $productStockQty = []; foreach ($order->getAllVisibleItems() as $item) { $productStockQty[$item->getProductId()] = $item->getQtyCanceled(); @@ -260,4 +204,96 @@ private function uncancel(\Magento\Sales\Model\Order $order) return $order; } + + /** + * @param Transaction $transaction + * @param Order $order + * @return \Magento\Framework\Controller\Result\Raw + */ + private function processPaidOrder(Transaction $transaction, Order $order) + { + if ($transaction->isPaid()) { + $message = "PAID"; + } else { + $message = "AUTHORIZED"; + } + + if ($order->isCanceled()) { + try { + $this->uncancelOrder($order); + } catch (LocalizedException $e) { + return $this->result->setContents('FALSE| Cannot un-cancel order: ' . $e->getMessage()); + } + $message .= " order was uncanceled"; + } + /** @var Interceptor $payment */ + $payment = $order->getPayment(); + $payment->setTransactionId( + $transaction->getId() + ); + + $payment->setPreparedMessage('Pay.nl - '); + $payment->setIsTransactionClosed( + 0 + ); + + $paidAmount = $transaction->getPaidCurrencyAmount(); + + if (!$this->paynlConfig->isAlwaysBaseCurrency()) { + if ($order->getBaseCurrencyCode() != $order->getOrderCurrencyCode()) { + // we can only register the payment in the base currency + $paidAmount = $order->getBaseGrandTotal(); + } + } + + if ($transaction->isAuthorized()) { + $paidAmount = $transaction->getCurrencyAmount(); + $payment->registerAuthorizationNotification($paidAmount); + } else { + $payment->registerCaptureNotification( + $paidAmount, $this->config->isSkipFraudDetection() + ); + } + + // Force order state/status to processing + $order->setState(Order::STATE_PROCESSING); + + $statusPaid = $this->config->getPaidStatus($order->getPayment()->getMethod()); + $statusAuthorized= $this->config->getAuthorizedStatus($order->getPayment()->getMethod()); + $statusPaid = !empty($statusPaid) ? $statusPaid : Order::STATE_PROCESSING; + $statusAuthorized = !empty($statusAuthorized) ? $statusAuthorized : Order::STATE_PROCESSING; + + if($transaction->isAuthorized()){ + $order->setStatus($statusAuthorized); + } else { + $order->setStatus($statusPaid); + } + + $this->orderRepository->save($order); + + // notify customer + if ($order && !$order->getEmailSent()) { + $this->orderSender->send($order); + $order->addStatusHistoryComment( + __('New order email sent') + )->setIsCustomerNotified( + true + )->save(); + } + + $invoice = $payment->getCreatedInvoice(); + if ($invoice && !$invoice->getEmailSent()) { + $this->invoiceSender->send($invoice); + + $order->addStatusHistoryComment( + __('You notified customer about invoice #%1.', + $invoice->getIncrementId()) + )->setIsCustomerNotified( + true + )->save(); + + } + + return $this->result->setContents("TRUE| " . $message); + } } \ No newline at end of file diff --git a/Controller/Checkout/Finish.php b/Controller/Checkout/Finish.php index 0c2601c9..dbe3d8dd 100644 --- a/Controller/Checkout/Finish.php +++ b/Controller/Checkout/Finish.php @@ -6,20 +6,24 @@ namespace Paynl\Payment\Controller\Checkout; use Magento\Checkout\Model\Session; +use Magento\Framework\App\Action\Action; +use Magento\Framework\App\Action\Context; use Magento\Quote\Model\QuoteRepository; use Magento\Sales\Model\Order; use Magento\Sales\Model\OrderRepository; +use Paynl\Payment\Model\Config; +use Psr\Log\LoggerInterface; /** * Description of Redirect * * @author Andy Pieters */ -class Finish extends \Magento\Framework\App\Action\Action +class Finish extends Action { /** * - * @var \Paynl\Payment\Model\Config + * @var Config */ private $config; @@ -29,7 +33,7 @@ class Finish extends \Magento\Framework\App\Action\Action private $checkoutSession; /** - * @var \Psr\Log\LoggerInterface + * @var LoggerInterface */ private $logger; @@ -45,17 +49,17 @@ class Finish extends \Magento\Framework\App\Action\Action /** * Index constructor. - * @param \Magento\Framework\App\Action\Context $context - * @param \Paynl\Payment\Model\Config $config + * @param Context $context + * @param Config $config * @param Session $checkoutSession - * @param \Psr\Log\LoggerInterface $logger + * @param LoggerInterface $logger * @param OrderRepository $orderRepository */ public function __construct( - \Magento\Framework\App\Action\Context $context, - \Paynl\Payment\Model\Config $config, + Context $context, + Config $config, Session $checkoutSession, - \Psr\Log\LoggerInterface $logger, + LoggerInterface $logger, OrderRepository $orderRepository, QuoteRepository $quoteRepository ) @@ -107,7 +111,7 @@ public function execute() $pinStatus = $status->getTransactionState(); } - if ($transaction->isPaid() || ($transaction->isPending() && $pinStatus == null)) { + if ($transaction->isPaid() || $transaction->isAuthorized() || ($transaction->isPending() && $pinStatus == null)) { $successUrl = $this->config->getSuccessPage($payment->getMethod()); $resultRedirect->setPath($successUrl, ['_query' => ['utm_nooverride' => '1']]); diff --git a/Model/Config.php b/Model/Config.php index 0e026858..3f5cd90c 100644 --- a/Model/Config.php +++ b/Model/Config.php @@ -69,6 +69,9 @@ public function getPaymentOptionId($methodCode) public function getPendingStatus($methodCode){ return $this->store->getConfig('payment/' . $methodCode . '/order_status'); } + public function getAuthorizedStatus($methodCode){ + return $this->store->getConfig('payment/' . $methodCode . '/order_status_authorized'); + } public function getPaidStatus($methodCode){ return $this->store->getConfig('payment/' . $methodCode . '/order_status_processing'); diff --git a/Model/Paymentmethod/PaymentMethod.php b/Model/Paymentmethod/PaymentMethod.php index b6b9d2ff..3796b9f7 100644 --- a/Model/Paymentmethod/PaymentMethod.php +++ b/Model/Paymentmethod/PaymentMethod.php @@ -5,9 +5,21 @@ namespace Paynl\Payment\Model\Paymentmethod; +use Magento\Framework\Api\AttributeValueFactory; +use Magento\Framework\Api\ExtensionAttributesFactory; +use Magento\Framework\App\Config\ScopeConfigInterface; +use Magento\Framework\Data\Collection\AbstractDb; +use Magento\Framework\Model\Context; +use Magento\Framework\Model\ResourceModel\AbstractResource; +use Magento\Framework\Registry; +use Magento\Payment\Helper\Data; +use Magento\Payment\Model\InfoInterface; use Magento\Payment\Model\Method\AbstractMethod; +use Magento\Payment\Model\Method\Logger; use Magento\Sales\Model\Order; +use Magento\Sales\Model\OrderRepository; use Paynl\Payment\Model\Config; +use Paynl\Transaction; /** * Description of AbstractPaymentMethod @@ -24,13 +36,18 @@ abstract class PaymentMethod extends AbstractMethod protected $_canRefund = true; protected $_canRefundInvoicePartial = true; - /** - * @var Config - */ + protected $_canCapture = true; + + protected $_canVoid = true; + + + /** + * @var Config + */ protected $paynlConfig; /** - * @var \Magento\Sales\Model\OrderRepository + * @var OrderRepository */ protected $orderRepository; /** @@ -39,44 +56,46 @@ abstract class PaymentMethod extends AbstractMethod protected $orderConfig; public function __construct( - \Magento\Framework\Model\Context $context, - \Magento\Framework\Registry $registry, - \Magento\Framework\Api\ExtensionAttributesFactory $extensionFactory, - \Magento\Framework\Api\AttributeValueFactory $customAttributeFactory, - \Magento\Payment\Helper\Data $paymentData, - \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, - \Magento\Payment\Model\Method\Logger $logger, + Context $context, + Registry $registry, + ExtensionAttributesFactory $extensionFactory, + AttributeValueFactory $customAttributeFactory, + Data $paymentData, + ScopeConfigInterface $scopeConfig, + Logger $logger, \Magento\Sales\Model\Order\Config $orderConfig, - \Magento\Sales\Model\OrderRepository $orderRepository, - Config $paynlConfig, - \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, - \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [] - ) { - parent::__construct( - $context, $registry, $extensionFactory, $customAttributeFactory, - $paymentData, $scopeConfig, $logger, $resource, $resourceCollection, $data ); - - $this->paynlConfig = $paynlConfig; - $this->orderRepository = $orderRepository; - $this->orderConfig = $orderConfig; + OrderRepository $orderRepository, + Config $paynlConfig, + AbstractResource $resource = null, + AbstractDb $resourceCollection = null, + array $data = [] + ) + { + parent::__construct( + $context, $registry, $extensionFactory, $customAttributeFactory, + $paymentData, $scopeConfig, $logger, $resource, $resourceCollection, $data); + + $this->paynlConfig = $paynlConfig; + $this->orderRepository = $orderRepository; + $this->orderConfig = $orderConfig; } - protected function getState($status){ + protected function getState($status) + { $validStates = [ Order::STATE_NEW, Order::STATE_PENDING_PAYMENT, Order::STATE_HOLDED ]; - foreach($validStates as $state){ + foreach ($validStates as $state) { $statusses = $this->orderConfig->getStateStatuses($state, false); - if(in_array($status, $statusses)) return $state; + if (in_array($status, $statusses)) return $state; } return false; } - /** + /** * Get payment instructions text from config * * @return string @@ -85,9 +104,12 @@ public function getInstructions() { return trim($this->getConfigData('instructions')); } - public function getBanks(){ + + public function getBanks() + { return []; } + public function initialize($paymentAction, $stateObject) { $status = $this->getConfigData('order_status'); @@ -96,62 +118,87 @@ public function initialize($paymentAction, $stateObject) $stateObject->setStatus($status); $stateObject->setIsNotified(false); - $sendEmail = $this->_scopeConfig->getValue('payment/' . $this->_code . '/send_new_order_email', 'store'); + $sendEmail = $this->_scopeConfig->getValue('payment/' . $this->_code . '/send_new_order_email', 'store'); $payment = $this->getInfoInstance(); /** @var Order $order */ - $order = $payment->getOrder(); + $order = $payment->getOrder(); - if($sendEmail == 'after_payment') { - //prevent sending the order confirmation - $order->setCanSendNewEmailFlag( false ); - } + if ($sendEmail == 'after_payment') { + //prevent sending the order confirmation + $order->setCanSendNewEmailFlag(false); + } $this->orderRepository->save($order); - return parent::initialize($paymentAction, $stateObject); + return parent::initialize($paymentAction, $stateObject); + } + + public function refund(InfoInterface $payment, $amount) + { + $this->paynlConfig->configureSDK(); + + $transactionId = $payment->getParentTransactionId(); + + Transaction::refund($transactionId, $amount); + + return $this; } - public function refund(\Magento\Payment\Model\InfoInterface $payment, $amount) + public function capture(InfoInterface $payment, $amount) { $this->paynlConfig->configureSDK(); $transactionId = $payment->getParentTransactionId(); - \Paynl\Transaction::refund($transactionId, $amount); + Transaction::capture($transactionId); - return true; + return $this; } - public function startTransaction(Order $order){ + + public function void(InfoInterface $payment) + { + $this->paynlConfig->configureSDK(); + + $transactionId = $payment->getParentTransactionId(); + + Transaction::void($transactionId); + + return $this; + } + + public function startTransaction(Order $order) + { $transaction = $this->doStartTransaction($order); $this->paynlConfig->setStore($order->getStore()); $holded = $this->_scopeConfig->getValue('payment/' . $this->_code . '/holded', 'store'); - if($holded){ + if ($holded) { $order->hold(); } $this->orderRepository->save($order); return $transaction->getRedirectUrl(); } + protected function doStartTransaction(Order $order) { $this->paynlConfig->setStore($order->getStore()); - $this->paynlConfig->configureSDK(); + $this->paynlConfig->configureSDK(); $additionalData = $order->getPayment()->getAdditionalInformation(); $bankId = null; $expireDate = null; - if(isset($additionalData['bank_id']) && is_numeric($additionalData['bank_id'])){ + if (isset($additionalData['bank_id']) && is_numeric($additionalData['bank_id'])) { $bankId = $additionalData['bank_id']; } - if(isset($additionalData['valid_days']) && is_numeric($additionalData['valid_days'])){ - $expireDate = new \DateTime('+'.$additionalData['valid_days'].' days'); + if (isset($additionalData['valid_days']) && is_numeric($additionalData['valid_days'])) { + $expireDate = new \DateTime('+' . $additionalData['valid_days'] . ' days'); } - if($this->paynlConfig->isAlwaysBaseCurrency()){ + if ($this->paynlConfig->isAlwaysBaseCurrency()) { $total = $order->getBaseGrandTotal(); $currency = $order->getBaseCurrencyCode(); - } else{ + } else { $total = $order->getGrandTotal(); $currency = $order->getOrderCurrencyCode(); } @@ -162,12 +209,11 @@ protected function doStartTransaction(Order $order) $quoteId = $order->getQuoteId(); - - $store = $order->getStore(); - $baseUrl = $store->getBaseUrl(); - // i want to use the url builder here, but that doenst work from admin, even if the store is supplied - $returnUrl = $baseUrl.'paynl/checkout/finish/'; - $exchangeUrl = $baseUrl.'paynl/checkout/exchange/'; + $store = $order->getStore(); + $baseUrl = $store->getBaseUrl(); + // i want to use the url builder here, but that doenst work from admin, even if the store is supplied + $returnUrl = $baseUrl . 'paynl/checkout/finish/'; + $exchangeUrl = $baseUrl . 'paynl/checkout/exchange/'; $paymentOptionId = $this->getPaymentOptionId(); @@ -179,8 +225,7 @@ protected function doStartTransaction(Order $order) $strBillingFirstName = substr($arrBillingAddress['firstname'], 0, 1); // Use full first name for Klarna - if($paymentOptionId == $this->paynlConfig->getPaymentOptionId('paynl_payment_klarna')) - { + if ($paymentOptionId == $this->paynlConfig->getPaymentOptionId('paynl_payment_klarna')) { $strBillingFirstName = $arrBillingAddress['firstname']; } @@ -213,8 +258,7 @@ protected function doStartTransaction(Order $order) $strShippingFirstName = substr($arrShippingAddress['firstname'], 0, 1); // Use full first name for Klarna - if($paymentOptionId == $this->paynlConfig->getPaymentOptionId('paynl_payment_klarna')) - { + if ($paymentOptionId == $this->paynlConfig->getPaymentOptionId('paynl_payment_klarna')) { $strShippingFirstName = $arrShippingAddress['firstname']; } @@ -244,13 +288,13 @@ protected function doStartTransaction(Order $order) 'exchangeUrl' => $exchangeUrl, 'currency' => $currency, ); - if(isset($shippingAddress)){ + if (isset($shippingAddress)) { $data['address'] = $shippingAddress; } - if(isset($invoiceAddress)) { + if (isset($invoiceAddress)) { $data['invoiceAddress'] = $invoiceAddress; } - if(isset($enduser)){ + if (isset($enduser)) { $data['enduser'] = $enduser; } $arrProducts = array(); @@ -261,7 +305,7 @@ protected function doStartTransaction(Order $order) $taxAmount = $arrItem['price_incl_tax'] - $arrItem['price']; $price = $arrItem['price_incl_tax']; - if($this->paynlConfig->isAlwaysBaseCurrency()){ + if ($this->paynlConfig->isAlwaysBaseCurrency()) { $taxAmount = $arrItem['base_price_incl_tax'] - $arrItem['base_price']; $price = $arrItem['base_price_incl_tax']; } @@ -280,14 +324,14 @@ protected function doStartTransaction(Order $order) $shippingCost = $order->getShippingInclTax(); $shippingTax = $order->getShippingTaxAmount(); - if($this->paynlConfig->isAlwaysBaseCurrency()){ + if ($this->paynlConfig->isAlwaysBaseCurrency()) { $shippingCost = $order->getBaseShippingInclTax(); $shippingTax = $order->getBaseShippingTaxAmount(); } $shippingDescription = $order->getShippingDescription(); - if($shippingCost != 0) { + if ($shippingCost != 0) { $arrProducts[] = array( 'id' => 'shipping', 'name' => $shippingDescription, @@ -301,12 +345,12 @@ protected function doStartTransaction(Order $order) $discount = $order->getDiscountAmount(); $discountTax = $order->getDiscountTaxCompensationAmount() * -1; - if($this->paynlConfig->isAlwaysBaseCurrency()){ + if ($this->paynlConfig->isAlwaysBaseCurrency()) { $discount = $order->getBaseDiscountAmount(); $discountTax = $order->getBaseDiscountTaxCompensationAmount() * -1; } - if($this->paynlConfig->isSendDiscountTax() == 0){ + if ($this->paynlConfig->isSendDiscountTax() == 0) { $discountTax = 0; } @@ -329,8 +373,8 @@ protected function doStartTransaction(Order $order) } $ipAddress = $order->getRemoteIp(); //The ip address field in magento is too short, if the ip is invalid, get the ip myself - if(!filter_var($ipAddress, FILTER_VALIDATE_IP)){ - $ipAddress = \Paynl\Helper::getIp(); + if (!filter_var($ipAddress, FILTER_VALIDATE_IP)) { + $ipAddress = \Paynl\Helper::getIp(); } $data['ipaddress'] = $ipAddress; @@ -341,9 +385,9 @@ protected function doStartTransaction(Order $order) public function getPaymentOptionId() { - $paymentOptionId = $this->getConfigData('payment_option_id'); + $paymentOptionId = $this->getConfigData('payment_option_id'); - if(empty($paymentOptionId)) $paymentOptionId = $this->getDefaultPaymentOptionId(); + if (empty($paymentOptionId)) $paymentOptionId = $this->getDefaultPaymentOptionId(); return $paymentOptionId; } diff --git a/etc/adminhtml/paymentmethods/afterpay.xml b/etc/adminhtml/paymentmethods/afterpay.xml index 9e6a8629..bc792e2f 100644 --- a/etc/adminhtml/paymentmethods/afterpay.xml +++ b/etc/adminhtml/paymentmethods/afterpay.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_afterpay/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_afterpay/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/alipay.xml b/etc/adminhtml/paymentmethods/alipay.xml index a0b1780c..51c8b458 100644 --- a/etc/adminhtml/paymentmethods/alipay.xml +++ b/etc/adminhtml/paymentmethods/alipay.xml @@ -1,5 +1,4 @@ - @@ -27,6 +26,15 @@ payment/paynl_payment_alipay/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_alipay/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/amex.xml b/etc/adminhtml/paymentmethods/amex.xml index bb8519cc..c548f833 100644 --- a/etc/adminhtml/paymentmethods/amex.xml +++ b/etc/adminhtml/paymentmethods/amex.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_amex/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_amex/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/billink.xml b/etc/adminhtml/paymentmethods/billink.xml index 50ab5504..5ef415cc 100644 --- a/etc/adminhtml/paymentmethods/billink.xml +++ b/etc/adminhtml/paymentmethods/billink.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_billink/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_billink/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/capayable.xml b/etc/adminhtml/paymentmethods/capayable.xml index 52c9f52d..6142eb38 100644 --- a/etc/adminhtml/paymentmethods/capayable.xml +++ b/etc/adminhtml/paymentmethods/capayable.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_capayable/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_capayable/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/capayable_gespreid.xml b/etc/adminhtml/paymentmethods/capayable_gespreid.xml index 864feb3b..fd3d7d00 100644 --- a/etc/adminhtml/paymentmethods/capayable_gespreid.xml +++ b/etc/adminhtml/paymentmethods/capayable_gespreid.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_capayable_gespreid/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_capayable_gespreid/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/cartasi.xml b/etc/adminhtml/paymentmethods/cartasi.xml index 91f4b191..aa3af024 100644 --- a/etc/adminhtml/paymentmethods/cartasi.xml +++ b/etc/adminhtml/paymentmethods/cartasi.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_cartasi/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_cartasi/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/cartebleue.xml b/etc/adminhtml/paymentmethods/cartebleue.xml index 9f0eb211..9dba77f8 100644 --- a/etc/adminhtml/paymentmethods/cartebleue.xml +++ b/etc/adminhtml/paymentmethods/cartebleue.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_cartebleue/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_cartebleue/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/cashly.xml b/etc/adminhtml/paymentmethods/cashly.xml index 1a4ef8f0..c54b7f55 100644 --- a/etc/adminhtml/paymentmethods/cashly.xml +++ b/etc/adminhtml/paymentmethods/cashly.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_cashly/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_cashly/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/clickandbuy.xml b/etc/adminhtml/paymentmethods/clickandbuy.xml index 41871323..970eb8a9 100644 --- a/etc/adminhtml/paymentmethods/clickandbuy.xml +++ b/etc/adminhtml/paymentmethods/clickandbuy.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_clickandbuy/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_clickandbuy/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/dankort.xml b/etc/adminhtml/paymentmethods/dankort.xml index e610eca4..8ff29c22 100644 --- a/etc/adminhtml/paymentmethods/dankort.xml +++ b/etc/adminhtml/paymentmethods/dankort.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_dankort/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_dankort/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/eps.xml b/etc/adminhtml/paymentmethods/eps.xml index 382155c1..018ae61e 100644 --- a/etc/adminhtml/paymentmethods/eps.xml +++ b/etc/adminhtml/paymentmethods/eps.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_eps/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_eps/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/fashioncheque.xml b/etc/adminhtml/paymentmethods/fashioncheque.xml index f80ddf8d..6dbd4cd8 100644 --- a/etc/adminhtml/paymentmethods/fashioncheque.xml +++ b/etc/adminhtml/paymentmethods/fashioncheque.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_fashioncheque/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_fashioncheque/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/fashiongiftcard.xml b/etc/adminhtml/paymentmethods/fashiongiftcard.xml index 5363f105..5e0a68b5 100644 --- a/etc/adminhtml/paymentmethods/fashiongiftcard.xml +++ b/etc/adminhtml/paymentmethods/fashiongiftcard.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_fashiongiftcard/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_fashiongiftcard/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/focum.xml b/etc/adminhtml/paymentmethods/focum.xml index 13272b30..a0a147bf 100644 --- a/etc/adminhtml/paymentmethods/focum.xml +++ b/etc/adminhtml/paymentmethods/focum.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_focum/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_focum/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/gezondheidsbon.xml b/etc/adminhtml/paymentmethods/gezondheidsbon.xml index 8b878ebf..42cd8b43 100644 --- a/etc/adminhtml/paymentmethods/gezondheidsbon.xml +++ b/etc/adminhtml/paymentmethods/gezondheidsbon.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_gezondheidsbon/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_gezondheidsbon/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/giropay.xml b/etc/adminhtml/paymentmethods/giropay.xml index 9be49842..3421c140 100644 --- a/etc/adminhtml/paymentmethods/giropay.xml +++ b/etc/adminhtml/paymentmethods/giropay.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_giropay/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_giropay/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/givacard.xml b/etc/adminhtml/paymentmethods/givacard.xml index cfbf2d94..9f25a320 100644 --- a/etc/adminhtml/paymentmethods/givacard.xml +++ b/etc/adminhtml/paymentmethods/givacard.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_givacard/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_givacard/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/ideal.xml b/etc/adminhtml/paymentmethods/ideal.xml index bfe0dc2c..5caa0883 100644 --- a/etc/adminhtml/paymentmethods/ideal.xml +++ b/etc/adminhtml/paymentmethods/ideal.xml @@ -31,6 +31,15 @@ payment/paynl_payment_ideal/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_ideal/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/instore.xml b/etc/adminhtml/paymentmethods/instore.xml index 4beda083..0c74dcd7 100644 --- a/etc/adminhtml/paymentmethods/instore.xml +++ b/etc/adminhtml/paymentmethods/instore.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_instore/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_instore/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/klarna.xml b/etc/adminhtml/paymentmethods/klarna.xml index 46ed9849..a95a13f1 100644 --- a/etc/adminhtml/paymentmethods/klarna.xml +++ b/etc/adminhtml/paymentmethods/klarna.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_klarna/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_klarna/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/maestro.xml b/etc/adminhtml/paymentmethods/maestro.xml index 2680b0a3..2015c490 100644 --- a/etc/adminhtml/paymentmethods/maestro.xml +++ b/etc/adminhtml/paymentmethods/maestro.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_maestro/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_maestro/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/mistercash.xml b/etc/adminhtml/paymentmethods/mistercash.xml index d9223e44..bb36ebff 100644 --- a/etc/adminhtml/paymentmethods/mistercash.xml +++ b/etc/adminhtml/paymentmethods/mistercash.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_mistercash/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_mistercash/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/mybank.xml b/etc/adminhtml/paymentmethods/mybank.xml index 40aa6fb0..fba05430 100644 --- a/etc/adminhtml/paymentmethods/mybank.xml +++ b/etc/adminhtml/paymentmethods/mybank.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_mybank/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_mybank/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/overboeking.xml b/etc/adminhtml/paymentmethods/overboeking.xml index b2ed3cd9..8dc71871 100644 --- a/etc/adminhtml/paymentmethods/overboeking.xml +++ b/etc/adminhtml/paymentmethods/overboeking.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_overboeking/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_overboeking/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/paylink.xml b/etc/adminhtml/paymentmethods/paylink.xml index 1da7d078..8342923f 100644 --- a/etc/adminhtml/paymentmethods/paylink.xml +++ b/etc/adminhtml/paymentmethods/paylink.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_paylink/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_paylink/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/paypal.xml b/etc/adminhtml/paymentmethods/paypal.xml index 3c1492e2..9be24b9f 100644 --- a/etc/adminhtml/paymentmethods/paypal.xml +++ b/etc/adminhtml/paymentmethods/paypal.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_paypal/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_paypal/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/paysafecard.xml b/etc/adminhtml/paymentmethods/paysafecard.xml index ba65d656..a2fe0a3e 100644 --- a/etc/adminhtml/paymentmethods/paysafecard.xml +++ b/etc/adminhtml/paymentmethods/paysafecard.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_paysafecard/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_paysafecard/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/podiumcadeaukaart.xml b/etc/adminhtml/paymentmethods/podiumcadeaukaart.xml index 6356f8bc..fb5e67a9 100644 --- a/etc/adminhtml/paymentmethods/podiumcadeaukaart.xml +++ b/etc/adminhtml/paymentmethods/podiumcadeaukaart.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_podiumcadeaukaart/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_podiumcadeaukaart/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/postepay.xml b/etc/adminhtml/paymentmethods/postepay.xml index 49bd9a6f..7f3125b2 100644 --- a/etc/adminhtml/paymentmethods/postepay.xml +++ b/etc/adminhtml/paymentmethods/postepay.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_postepay/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_postepay/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/sofortbanking.xml b/etc/adminhtml/paymentmethods/sofortbanking.xml index 4cf38707..062dc292 100644 --- a/etc/adminhtml/paymentmethods/sofortbanking.xml +++ b/etc/adminhtml/paymentmethods/sofortbanking.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_sofortbanking/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_sofortbanking/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/spraypay.xml b/etc/adminhtml/paymentmethods/spraypay.xml index 60acd58a..1e0e21fe 100644 --- a/etc/adminhtml/paymentmethods/spraypay.xml +++ b/etc/adminhtml/paymentmethods/spraypay.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_spraypay/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_spraypay/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/telefonischbetalen.xml b/etc/adminhtml/paymentmethods/telefonischbetalen.xml index 584ba0ad..2f9b2b2e 100644 --- a/etc/adminhtml/paymentmethods/telefonischbetalen.xml +++ b/etc/adminhtml/paymentmethods/telefonischbetalen.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_telefonischbetalen/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_telefonischbetalen/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/visamastercard.xml b/etc/adminhtml/paymentmethods/visamastercard.xml index 247e0861..5b43d2cb 100644 --- a/etc/adminhtml/paymentmethods/visamastercard.xml +++ b/etc/adminhtml/paymentmethods/visamastercard.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_visamastercard/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_visamastercard/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/vvvgiftcard.xml b/etc/adminhtml/paymentmethods/vvvgiftcard.xml index 33db214a..c6309b30 100644 --- a/etc/adminhtml/paymentmethods/vvvgiftcard.xml +++ b/etc/adminhtml/paymentmethods/vvvgiftcard.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_vvvgiftcard/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_vvvgiftcard/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/webshopgiftcard.xml b/etc/adminhtml/paymentmethods/webshopgiftcard.xml index cb7c3dba..4ed1dd43 100644 --- a/etc/adminhtml/paymentmethods/webshopgiftcard.xml +++ b/etc/adminhtml/paymentmethods/webshopgiftcard.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_webshopgiftcard/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_webshopgiftcard/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/wechatpay.xml b/etc/adminhtml/paymentmethods/wechatpay.xml index d85a2658..f18e7d0f 100644 --- a/etc/adminhtml/paymentmethods/wechatpay.xml +++ b/etc/adminhtml/paymentmethods/wechatpay.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_wechatpay/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_wechatpay/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/wijncadeau.xml b/etc/adminhtml/paymentmethods/wijncadeau.xml index 3f162fc0..2441b878 100644 --- a/etc/adminhtml/paymentmethods/wijncadeau.xml +++ b/etc/adminhtml/paymentmethods/wijncadeau.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_wijncadeau/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_wijncadeau/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/yehhpay.xml b/etc/adminhtml/paymentmethods/yehhpay.xml index 70fbe97d..63fd5ae2 100644 --- a/etc/adminhtml/paymentmethods/yehhpay.xml +++ b/etc/adminhtml/paymentmethods/yehhpay.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_yehhpay/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_yehhpay/order_status_authorized + diff --git a/etc/adminhtml/paymentmethods/yourgift.xml b/etc/adminhtml/paymentmethods/yourgift.xml index 51cfe01e..90e62e42 100644 --- a/etc/adminhtml/paymentmethods/yourgift.xml +++ b/etc/adminhtml/paymentmethods/yourgift.xml @@ -1,9 +1,4 @@ - @@ -31,6 +26,15 @@ payment/paynl_payment_yourgift/order_status + + + Paynl\Payment\Model\Config\Source\Order\Status\Processing + + 1 + + payment/paynl_payment_yourgift/order_status_authorized + diff --git a/etc/config.xml b/etc/config.xml index d0ed8a01..6ae1018d 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -17,8 +17,8 @@ Pay.nl betaallink 961 pending + processing processing - order Paynl\Payment\Model\Paymentmethod\Paylink paynl_payment @@ -30,8 +30,8 @@ Afterpay 739 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Afterpay paynl_payment @@ -42,8 +42,8 @@ Alipay 2080 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Alipay paynl_payment @@ -54,8 +54,8 @@ American Express 1705 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Amex paynl_payment @@ -66,8 +66,8 @@ Billink 1672 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Billink paynl_payment @@ -78,8 +78,8 @@ Capayable Achteraf Betalen 1744 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Capayable paynl_payment @@ -90,8 +90,8 @@ In3 gespreid betalen 1813 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\CapayableGespreid paynl_payment @@ -102,8 +102,8 @@ CartaSi 1945 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Cartasi paynl_payment @@ -114,8 +114,8 @@ Cartebleue 710 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Cartebleue paynl_payment @@ -126,8 +126,8 @@ Cashly 1981 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Cashly paynl_payment @@ -138,8 +138,8 @@ Clickandbuy 139 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Clickandbuy paynl_payment @@ -150,8 +150,8 @@ Dankort 1939 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Dankort paynl_payment @@ -162,8 +162,8 @@ EPS Überweisung 2062 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Eps paynl_payment @@ -174,8 +174,8 @@ Fashioncheque 815 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Fashioncheque paynl_payment @@ -186,8 +186,8 @@ Fashiongiftcard 1699 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Fashiongiftcard paynl_payment @@ -198,8 +198,8 @@ Focum 1702 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Focum paynl_payment @@ -210,8 +210,8 @@ Gezondheidsbon 812 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Gezondheidsbon paynl_payment @@ -222,8 +222,8 @@ Giropay 694 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Giropay paynl_payment @@ -234,8 +234,8 @@ Givacard 1657 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Givacard paynl_payment @@ -246,6 +246,7 @@ iDEAL 10 pending_payment + processing processing Veilig betalen via uw eigen bank order @@ -257,6 +258,7 @@ Pinnen 1729 pending_payment + processing processing Betaal in de winkel met uw pinpas order @@ -269,8 +271,8 @@ Klarna 1717 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Klarna paynl_payment @@ -281,8 +283,8 @@ Maestro 712 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Maestro paynl_payment @@ -293,8 +295,8 @@ Bancontact / Mister Cash 436 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Mistercash paynl_payment @@ -305,8 +307,8 @@ Mybank 1588 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Mybank paynl_payment @@ -317,8 +319,8 @@ Overboeking 136 pending + processing processing - order Paynl\Payment\Model\Paymentmethod\Overboeking paynl_payment @@ -330,8 +332,8 @@ Paypal 138 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Paypal paynl_payment @@ -342,8 +344,8 @@ Paysafecard 553 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Paysafecard paynl_payment @@ -354,8 +356,8 @@ Podiumcadeaukaart 816 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Podiumcadeaukaart paynl_payment @@ -366,8 +368,8 @@ Postepay 707 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Postepay paynl_payment @@ -378,9 +380,9 @@ Sofortbanking 559 pending_payment + processing processing 1 - order Paynl\Payment\Model\Paymentmethod\Sofortbanking paynl_payment @@ -391,8 +393,8 @@ SprayPay 1987 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Spraypay paynl_payment @@ -403,8 +405,8 @@ Telefonisch Betalen (PFP) 1600 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Telefonischbetalen paynl_payment @@ -415,8 +417,8 @@ Visa / Mastercard 706 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Visamastercard paynl_payment @@ -427,8 +429,8 @@ VVV Giftcard 1714 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Vvvgiftcard paynl_payment @@ -439,8 +441,8 @@ Webshopgiftcard 811 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Webshopgiftcard paynl_payment @@ -451,8 +453,8 @@ Wechat Pay 1978 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Wechatpay paynl_payment @@ -463,8 +465,8 @@ Wijncadeau 1666 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Wijncadeau paynl_payment @@ -475,8 +477,8 @@ Yehhpay 1877 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Yehhpay paynl_payment @@ -487,8 +489,8 @@ Yourgift.nl 1645 pending_payment + processing processing - order Paynl\Payment\Model\Paymentmethod\Yourgift paynl_payment