@php
$col_class = 'col-md-6';
if (!empty($accounts)) {
$col_class = 'col-md-4';
}
$readonly = $payment_line['method'] == 'advance' ? true : false;
@endphp
@if (!empty($show_date))
@endif
@php
$pos_settings = !empty(session()->get('business.pos_settings')) ? json_decode(session()->get('business.pos_settings'), true) : [];
$enable_cash_denomination_for_payment_methods = !empty($pos_settings['enable_cash_denomination_for_payment_methods']) ? $pos_settings['enable_cash_denomination_for_payment_methods'] : [];
@endphp
@if (
!empty($pos_settings['enable_cash_denomination_on']) &&
$pos_settings['enable_cash_denomination_on'] == 'all_screens' &&
!empty($show_denomination))
@lang('lang_v1.cash_denominations')
@if (!empty($pos_settings['cash_denominations']))
| @lang('lang_v1.denomination') |
|
@lang('lang_v1.count') |
|
@lang('sale.subtotal') |
@php
$total = 0;
@endphp
@foreach (explode(',', $pos_settings['cash_denominations']) as $dnm)
@php
$count = 0;
$sub_total = 0;
if (!empty($payment_line['denominations'])) {
foreach ($payment_line['denominations'] as $d) {
if ($d['amount'] == $dnm) {
$count = $d['total_count'];
$sub_total = $d['total_count'] * $d['amount'];
$total += $sub_total;
}
}
}
@endphp
| {{ $dnm }} |
X |
{!! Form::number("payment[$row_index][denominations][$dnm]", $count, [
'class' => 'form-control cash_denomination input-sm',
'min' => 0,
'data-denomination' => $dnm,
'style' => 'width: 100px; margin:auto;',
]) !!} |
= |
{{ @num_format($sub_total) }}
|
@endforeach
| @lang('sale.total') |
{{ @num_format($total) }}
|
@lang('lang_v1.cash_denomination_error')
@else
@lang('lang_v1.denomination_add_help_text')
@endif
@endif
@if (!empty($accounts))
{{--
--}}
{{--
--}}
{!! Form::label("note_$row_index", __('sale.payment_note') . ':') !!}
{!! Form::textarea("payment[$row_index][note]", $payment_line['note'], [
'class' => 'form-control',
'rows' => 3,
'id' => "note_$row_index",
]) !!}