88 lines
4.5 KiB
PHP
88 lines
4.5 KiB
PHP
<!-- if it HAS NOT subcategories -->
|
|
@if (is_null($node))
|
|
@php
|
|
$rows = $class->row_values[$table_key][$id];
|
|
@endphp
|
|
|
|
@if ($row_total = array_sum($rows))
|
|
@if (isset($parent_id))
|
|
<tr class="collapse-sub" data-collapse="child-{{ $parent_id }}">
|
|
<td class="{{ $class->column_name_width }} py-top text-left text-black-400" style="padding-left: {{ $tree_level * 20 }}px;" title="{{ $class->row_names[$table_key][$id] }}">{{ $class->row_names[$table_key][$id] }}</td>
|
|
@else
|
|
<tr>
|
|
<td class="{{ $class->column_name_width }} py-top text-left text-black-400" title="{{ $class->row_names[$table_key][$id] }}">{{ $class->row_names[$table_key][$id] }}</td>
|
|
@endif
|
|
|
|
@foreach($rows as $row)
|
|
<td class="{{ $class->column_value_width }} py-top ltr:text-right rtl:text-left text-alignment-right text-black-400 text-xs">{{ $class->has_money ? money($row, default_currency(), true) : $row }}</td>
|
|
@endforeach
|
|
<td class="{{ $class->column_name_width }} py-top ltr:text-right rtl:text-left text-alignment-right text-black-400 text-xs uppercase">{{ $class->has_money ? money($row_total, default_currency(), true) : $row }}</td>
|
|
</tr>
|
|
@endif
|
|
@endif
|
|
|
|
<!-- if it HAS subcategories -->
|
|
@if (is_array($node))
|
|
<!-- parent part -->
|
|
@php
|
|
$parent_row_values = $class->row_values[$table_key][$id];
|
|
|
|
array_walk_recursive($node, function ($value, $key) use ($class, $table_key, $id, &$parent_row_values) {
|
|
if ($key == $id) {
|
|
return;
|
|
}
|
|
|
|
foreach($class->row_values[$table_key][$key] as $date => $amount) {
|
|
$parent_row_values[$date] += $amount;
|
|
}
|
|
});
|
|
@endphp
|
|
|
|
@if ($row_total = array_sum($parent_row_values))
|
|
@if (isset($parent_id))
|
|
<tr class="collapse-sub" data-collapse="child-{{ $parent_id }}">
|
|
<td class="{{ $class->column_name_width }} w-24 py-top text-left text-black-400" style="padding-left: {{ $tree_level * 20 }}px;" title="{{ $class->row_names[$table_key][$id] }}">
|
|
@else
|
|
<tr>
|
|
<td class="{{ $class->column_name_width }} w-24 py-top text-left text-black-400" title="{{ $class->row_names[$table_key][$id] }}">
|
|
@endif
|
|
|
|
{{ $class->row_names[$table_key][$id] }}
|
|
@if (array_sum($parent_row_values) != array_sum($class->row_values[$table_key][$id]))
|
|
<button type="button" class="align-text-top" node="child-{{ $id }}" onClick="toggleSub('child-{{ $id }}', event)">
|
|
<span class="material-icons transform transition-all rotate-90 text-lg leading-none">navigate_next</span>
|
|
</button>
|
|
@endif
|
|
</td>
|
|
@foreach($parent_row_values as $row)
|
|
<td class="{{ $class->column_value_width }} py-top ltr:text-right rtl:text-left text-alignment-right text-black-400 text-xs">{{ $class->has_money ? money($row, default_currency(), true) : $row }}</td>
|
|
@endforeach
|
|
<td class="{{ $class->column_name_width }} py-top ltr:text-right rtl:text-left text-alignment-right text-black-400 text-xs uppercase">{{ $class->has_money ? money($row_total, default_currency(), true) : $row }}</td>
|
|
</tr>
|
|
@endif
|
|
|
|
<!-- no categories part -->
|
|
@php $rows = $class->row_values[$table_key][$id]; @endphp
|
|
@if (($row_total = array_sum($rows)) && array_sum($parent_row_values) != array_sum($rows))
|
|
<tr class="collapse-sub" data-collapse="child-{{ $id }}">
|
|
<td class="{{ $class->column_name_width }} py-top text-left text-black-400" style="padding-left: {{ ($tree_level + 1) * 20 }}px;" title="{{ $class->row_names[$table_key][$id] }}">{{ $class->row_names[$table_key][$id] }}</td>
|
|
@foreach($rows as $row)
|
|
<td class="{{ $class->column_value_width }} py-top ltr:text-right rtl:text-left text-alignment-right text-black-400 text-xs">{{ $class->has_money ? money($row, default_currency(), true) : $row }}</td>
|
|
@endforeach
|
|
<td class="{{ $class->column_name_width }} py-top ltr:text-right rtl:text-left text-alignment-right text-black-400 text-xs uppercase">{{ $class->has_money ? money($row_total, default_currency(), true) : $row }}</td>
|
|
</tr>
|
|
@endif
|
|
|
|
<!-- subcategories part -->
|
|
@php
|
|
$parent_id = $id;
|
|
$tree_level++;
|
|
@endphp
|
|
|
|
@foreach($node as $id => $node)
|
|
@if ($parent_id != $id)
|
|
@include($class->views['detail.table.row'], ['parent_id' => $parent_id, 'tree_level' => $tree_level])
|
|
@endif
|
|
@endforeach
|
|
@endif
|