Missing Contact Phone header in Bill and Invoice export file

This commit is contained in:
Burak Çakırel 2020-01-06 13:49:23 +03:00
parent ce227d8967
commit b7b6a15f62
2 changed files with 4 additions and 2 deletions

View File

@ -67,6 +67,7 @@ class Bills implements FromCollection, ShouldAutoSize, WithHeadings, WithMapping
'contact_name', 'contact_name',
'contact_email', 'contact_email',
'contact_tax_number', 'contact_tax_number',
'contact_phone',
'contact_address', 'contact_address',
'notes', 'notes',
'category_id', 'category_id',
@ -78,4 +79,4 @@ class Bills implements FromCollection, ShouldAutoSize, WithHeadings, WithMapping
{ {
return 'bills'; return 'bills';
} }
} }

View File

@ -67,6 +67,7 @@ class Invoices implements FromCollection, ShouldAutoSize, WithHeadings, WithMapp
'contact_name', 'contact_name',
'contact_email', 'contact_email',
'contact_tax_number', 'contact_tax_number',
'contact_phone',
'contact_address', 'contact_address',
'notes', 'notes',
'category_id', 'category_id',
@ -78,4 +79,4 @@ class Invoices implements FromCollection, ShouldAutoSize, WithHeadings, WithMapp
{ {
return 'invoices'; return 'invoices';
} }
} }