Merge pull request #2146 from cuneytsenturk/master

Added Revenue/Payment show page [#mdbaet]
This commit is contained in:
Cüneyt Şentürk
2021-06-27 13:06:52 +03:00
committed by GitHub
53 changed files with 3732 additions and 152 deletions

View File

@ -89,19 +89,37 @@ return [
// Transactions
'income' => [
'group' => 'sales',
'route' => [
'prefix' => 'revenues', // core use with group + prefix, module ex. estimates
'parameter' => 'revenue', // sales/invoices/{parameter}/edit
//'create' => 'invoices.create', // if you change route, you can write full path
],
'permission' => [
'prefix' => 'revenues',
//'create' => 'create-sales-revenues',
],
'translation' => [
'prefix' => 'revenues', // this translation file name.
'related_document_amount' => 'invoices.invoice_amount',
],
'contact_type' => 'customer',
],
'expense' => [
'group' => 'purchases',
'route' => [
'prefix' => 'payments', // core use with group + prefix, module ex. estimates
'parameter' => 'payment', // sales/invoices/{parameter}/edit
//'create' => 'invoices.create', // if you change route, you can write full path
],
'permission' => [
'prefix' => 'payments',
//'create' => 'create-purchases-payments',
],
'translation' => [
'prefix' => 'payments', // this translation file name.
'related_document_amount' => 'bills.bill_amount',
],
'contact_type' => 'vendor',
],