Portal Invoice search and filter issue solved..

This commit is contained in:
Cüneyt Şentürk
2021-01-12 22:32:01 +03:00
parent c502b73632
commit 968c2b958c
2 changed files with 19 additions and 0 deletions

View File

@@ -295,6 +295,24 @@ return [
],
],
App\Models\Portal\Sale\Invoice::class => [
'columns' => [
'document_number' => ['searchable' => true],
'order_number' => ['searchable' => true],
'status',
'issued_at' => [
'key' => 'invoiced_at',
'date' => true,
],
'due_at' => ['date' => true],
'amount',
'currency_code' => [
'route' => 'portal.payment.currencies'
],
'parent_id',
],
],
App\Models\Portal\Banking\Transaction::class => [
'columns' => [
'paid_at' => ['date' => true],