minor change in items of invoices and bills moved to partials path

This commit is contained in:
Sevan Nerse
2020-05-10 08:49:36 +03:00
parent a8fe772581
commit f916d6a200
8 changed files with 10 additions and 10 deletions

View File

@ -13,10 +13,10 @@
@stack('quantity_td_end')
@stack('price_td_start')
<td class="price">@money($item->price, $invoice->currency_code, true)</td>
<td class="price">@money($item->price, $document->currency_code, true)</td>
@stack('price_td_end')
@stack('total_td_start')
<td class="total">@money($item->total, $invoice->currency_code, true)</td>
<td class="total">@money($item->total, $document->currency_code, true)</td>
@stack('total_td_end')
</tr>