@lang('accounting/warehouses/reports/goods-settlement-statement.inventory_reconciliation_report')
@php
$table_options = [
'enableSumValuesOnColumns' => [5, 6],
'lang' => ['noAvailableData' => __('noAvailableData.no_data')],
];
@endphp
| @lang('accounting/warehouses/reports/goods-settlement-statement.unit_code') |
@lang('accounting/warehouses/reports/goods-settlement-statement.unit_description') |
@lang('accounting/warehouses/reports/goods-settlement-statement.outputs') |
@lang('accounting/warehouses/reports/goods-settlement-statement.inputs') |
@lang('accounting/warehouses/reports/goods-settlement-statement.balance') |
@php $totals_out = $totals_in = 0; @endphp
@foreach ($results as $result)
| {{ $result['barcode']->number }} |
{{ $result['barcode']->ar_name }} |
{{ dn($result['total_out']) }} |
{{ dn($result['total_in']) }} |
{{ dn($result['total_out'] - $result['total_in']) }} |
@php
$totals_out+= $result['total_out'];
$totals_in+= $result['total_in'];
@endphp
@endforeach
@if (count($results) > 0)
| @lang('accounting/warehouses/reports/goods-settlement-statement.sum') |
|
{{ dn($totals_out) }} |
{{ dn($totals_in) }} |
{{ dn($totals_out - $totals_in) }} |
@endif