From 1b27e6fac878e058e6a3ff5ee51bf2eb2e6dfcbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Mon, 10 Feb 2020 21:01:54 +0300 Subject: [PATCH] fixed bill item currency_code issue. --- resources/views/purchases/bills/item.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/purchases/bills/item.blade.php b/resources/views/purchases/bills/item.blade.php index 2e8e1baeb..356252963 100644 --- a/resources/views/purchases/bills/item.blade.php +++ b/resources/views/purchases/bills/item.blade.php @@ -140,7 +140,7 @@ @if (empty($item) || !isset($item->total)) @money(0, $currency->code, true) @else - @money($item->total, $invoice->currency_code, true) + @money($item->total, $bill->currency_code, true) @endif @stack('total_input_end')