Merge pull request #5034 from bagisto-europe/5033

fixed #5033
This commit is contained in:
Jitendra Singh 2021-07-27 13:51:24 +05:30 committed by GitHub
commit a0dcbd6d27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 5 deletions

View File

@ -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'
]
],