fixed typo

This commit is contained in:
denisdulici 2019-11-16 12:32:43 +03:00
parent 941db9d9e1
commit c3f6462017

View File

@ -64,7 +64,7 @@ class Bills extends Controller
$currencies = Currency::enabled()->orderBy('name')->pluck('name', 'code')->toArray();
$currency = Currency::where('code', $invoice->currency_code)->first();
$currency = Currency::where('code', $bil->currency_code)->first();
$account_currency_code = Account::where('id', setting('default.account'))->pluck('currency_code')->first();