mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes for non existent props
This commit is contained in:
parent
75973061d8
commit
0f1318e701
@ -182,7 +182,7 @@ class PdfMock
|
||||
'$client.public_notes' => ' ',
|
||||
'$company.postal_code' => $this->settings->postal_code,
|
||||
'$client.billing_city' => 'Aufderharchester',
|
||||
'$secondary_font_name' => $this->settings?->primary_font ?: 'Roboto',
|
||||
'$secondary_font_name' => isset($this->settings?->secondary_font) ? $this->settings->secondary_font : 'Roboto',
|
||||
'$product.line_total' => '',
|
||||
'$product.tax_amount' => '',
|
||||
'$company.vat_number' => $this->settings->vat_number,
|
||||
@ -417,7 +417,7 @@ EPD
|
||||
'$country_2' => 'AF',
|
||||
'$firstName' => 'Benedict',
|
||||
'$user.name' => 'Derrick Monahan DDS Erna Wunsch',
|
||||
'$font_name' => 'Roboto',
|
||||
'$font_name' => $this->settings?->primary_font ?: 'Roboto',
|
||||
'$auto_bill' => 'This invoice will automatically be billed to your credit card on file on the due date.',
|
||||
'$payments' => '',
|
||||
'$task.tax' => '',
|
||||
|
Loading…
x
Reference in New Issue
Block a user