Merge pull request #1089 from burakcakirel/missing-header-in-export-file

Missing Contact Phone header in Bill and Invoice export file
This commit is contained in:
Cüneyt Şentürk 2020-01-06 14:25:46 +03:00 committed by GitHub
commit 85a80e6e64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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_email',
'contact_tax_number',
'contact_phone',
'contact_address',
'notes',
'category_id',
@ -78,4 +79,4 @@ class Bills implements FromCollection, ShouldAutoSize, WithHeadings, WithMapping
{
return 'bills';
}
}
}

View File

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