mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
Merge branch 'develop' of github.com:hillelcoren/invoice-ninja into develop
This commit is contained in:
commit
fc40ae0ebd
@ -19,9 +19,9 @@ class InvoiceItemTransformer extends EntityTransformer
|
||||
'notes' => $item->notes,
|
||||
'cost' => (float) $item->cost,
|
||||
'qty' => (float) $item->qty,
|
||||
'tax_name1' => $item->tax_name1,
|
||||
'tax_name1' => $item->tax_name1 ? $item->tax_name1 : '',
|
||||
'tax_rate1' => (float) $item->tax_rate1,
|
||||
'tax_name2' => $item->tax_name2,
|
||||
'tax_name2' => $item->tax_name2 ? $item->tax_name1 : '',
|
||||
'tax_rate2' => (float) $item->tax_rate2,
|
||||
];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user