Add additional fields to client CSV export #1136
This commit is contained in:
parent
89390e27ee
commit
50c63329f2
1 changed files with 9 additions and 1 deletions
|
|
@ -11,6 +11,10 @@
|
|||
<td>{{ trans('texts.state') }}</td>
|
||||
<td>{{ trans('texts.postal_code') }}</td>
|
||||
<td>{{ trans('texts.country') }}</td>
|
||||
<td>{{ trans('texts.id_number') }}</td>
|
||||
<td>{{ trans('texts.vat_number') }}</td>
|
||||
<td>{{ trans('texts.website') }}</td>
|
||||
<td>{{ trans('texts.phone') }}</td>
|
||||
@if ($account->custom_client_label1)
|
||||
<td>{{ $account->custom_client_label1 }}</td>
|
||||
@endif
|
||||
|
|
@ -33,6 +37,10 @@
|
|||
<td>{{ $client->state }}</td>
|
||||
<td>{{ $client->postal_code }}</td>
|
||||
<td>{{ $client->present()->country }}</td>
|
||||
<td>{{ $client->id_number }}</td>
|
||||
<td>{{ $client->vat_number }}</td>
|
||||
<td>{{ $client->website }}</td>
|
||||
<td>{{ $client->work_phone }}</td>
|
||||
@if ($account->custom_client_label1)
|
||||
<td>{{ $client->custom_value1 }}</td>
|
||||
@endif
|
||||
|
|
@ -42,4 +50,4 @@
|
|||
</tr>
|
||||
@endforeach
|
||||
|
||||
<tr><td></td></tr>
|
||||
<tr><td></td></tr>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue