mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 18:04:31 -04:00
Fix taxes (#3246)
This commit is contained in:
parent
c2dfc3055c
commit
24daf955d8
@ -108,7 +108,6 @@ class StepsController extends BaseController
|
||||
'size_id' => $this->account->size_id,
|
||||
'enable_modules' => $this->account->enabled_modules,
|
||||
'custom_fields' => $this->account->custom_fields,
|
||||
'uses_inclusive_taxes' => $this->account->inclusive_taxes,
|
||||
'created_at' => $this->account->created_at ? $this->account->created_at->toDateString() : null,
|
||||
'updated_at' => $this->account->updated_at ? $this->account->updated_at->toDateString() : null,
|
||||
];
|
||||
@ -272,6 +271,7 @@ class StepsController extends BaseController
|
||||
'date' => $credit->invoice_date,
|
||||
'last_sent_date' => $credit->last_sent_date,
|
||||
'due_date' => $credit->due_date,
|
||||
'uses_inclusive_taxes' => $this->account->inclusive_taxes,
|
||||
'is_deleted' => $credit->is_deleted,
|
||||
'footer' => $credit->invoice_footer,
|
||||
'public_notes' => $credit->public_notes,
|
||||
@ -320,6 +320,7 @@ class StepsController extends BaseController
|
||||
'date' => $invoice->invoice_date,
|
||||
'last_sent_date' => $invoice->last_sent_date,
|
||||
'due_date' => $invoice->due_date,
|
||||
'uses_inclusive_taxes' => $this->account->inclusive_taxes,
|
||||
'is_deleted' => $invoice->is_deleted,
|
||||
'footer' => $invoice->invoice_footer,
|
||||
'public_notes' => $invoice->public_notes,
|
||||
@ -401,6 +402,7 @@ class StepsController extends BaseController
|
||||
'date' => $quote->invoice_date,
|
||||
'last_sent_date' => $quote->last_sent_date,
|
||||
'due_date' => $quote->due_date,
|
||||
'uses_inclusive_taxes' => $this->account->inclusive_taxes,
|
||||
'is_deleted' => $quote->is_deleted,
|
||||
'footer' => $quote->invoice_footer,
|
||||
'public_notes' => $quote->public_notes,
|
||||
|
Loading…
x
Reference in New Issue
Block a user