From e96e239001f0ce9561502006a1b5edd9b43cf1b2 Mon Sep 17 00:00:00 2001 From: Glenn Hermans Date: Tue, 27 Jul 2021 00:20:54 +0200 Subject: [PATCH] fixed 5033 --- packages/Webkul/Payment/src/Config/system.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/packages/Webkul/Payment/src/Config/system.php b/packages/Webkul/Payment/src/Config/system.php index 8b7eb3918..40e29b2e7 100755 --- a/packages/Webkul/Payment/src/Config/system.php +++ b/packages/Webkul/Payment/src/Config/system.php @@ -53,7 +53,7 @@ return [ ], [ 'title' => 'admin::app.sales.invoices.status-paid', 'value' => 'paid' - ], + ] ], 'info' => 'admin::app.admin.system.generate-invoice-applicable', 'channel_based' => true, @@ -137,10 +137,10 @@ return [ 'type' => 'select', 'options' => [ [ - 'title' => 'Pending', + 'title' => 'admin::app.sales.invoices.status-pending', 'value' => 'pending' ], [ - 'title' => 'Paid', + 'title' => 'admin::app.sales.invoices.status-paid', 'value' => 'paid' ] ], @@ -151,10 +151,13 @@ return [ 'type' => 'select', 'options' => [ [ - 'title' => 'Pending', + 'title' => 'admin::app.sales.orders.order-status-pending', 'value' => 'pending' ], [ - 'title' => 'Processing', + 'title' => 'admin::app.sales.orders.order-status-pending-payment', + 'value' => 'pending_payment' + ], [ + 'title' => 'admin::app.sales.orders.order-status-processing', 'value' => 'processing' ] ],