Add admin invoice reminders limit

This commit is contained in:
David Callizaya 2021-10-28 17:03:27 -04:00
parent e4a7c72c36
commit 4a0145a825
2 changed files with 15 additions and 0 deletions

View File

@ -1491,6 +1491,8 @@ return [
'invoice-slip-design' => 'Invoice Slip Design',
'logo' => 'Logo',
'default' => 'Default',
'invoice-reminders' => 'Invoice Reminders',
'maximum-limit-of-reminders' => 'Maximum limit of reminders',
'sandbox' => 'Sandbox',
'all-channels' => 'All Channels',
'all-locales' => 'All Locales',

View File

@ -133,5 +133,18 @@ return [
'channel_based' => true,
],
]
], [
'key' => 'sales.invoice_setttings.invoice_reminders',
'name' => 'admin::app.admin.system.invoice-reminders',
'sort' => 2,
'fields' => [
[
'name' => 'reminders_limit',
'title' => 'admin::app.admin.system.maximum-limit-of-reminders',
'type' => 'text',
'validation' => 'numeric',
'channel_based' => true,
],
]
],
];