mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Additional fields for client exports
This commit is contained in:
parent
208aa7ed36
commit
ffa725a7c0
@ -125,7 +125,8 @@ class BaseExport
|
|||||||
"contact_custom_value2" => "contact.custom_value2",
|
"contact_custom_value2" => "contact.custom_value2",
|
||||||
"contact_custom_value3" => "contact.custom_value3",
|
"contact_custom_value3" => "contact.custom_value3",
|
||||||
"contact_custom_value4" => "contact.custom_value4",
|
"contact_custom_value4" => "contact.custom_value4",
|
||||||
|
'payment_balance' => 'client.payment_balance',
|
||||||
|
'credit_balance' => 'client.credit_balance',
|
||||||
];
|
];
|
||||||
|
|
||||||
protected array $invoice_report_keys = [
|
protected array $invoice_report_keys = [
|
||||||
|
@ -71,7 +71,9 @@ class ClientExport extends BaseExport
|
|||||||
'contact_custom_value3' => 'contact.custom_value3',
|
'contact_custom_value3' => 'contact.custom_value3',
|
||||||
'contact_custom_value4' => 'contact.custom_value4',
|
'contact_custom_value4' => 'contact.custom_value4',
|
||||||
'email' => 'contact.email',
|
'email' => 'contact.email',
|
||||||
'status' => 'status'
|
'status' => 'status',
|
||||||
|
'payment_balance' => 'client.payment_balance',
|
||||||
|
'credit_balance' => 'client.credit_balance',
|
||||||
];
|
];
|
||||||
|
|
||||||
public function __construct(Company $company, array $input)
|
public function __construct(Company $company, array $input)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user