fix lejeram
This commit is contained in:
@@ -339,22 +339,54 @@
|
||||
<th style="width:10px">JUMLAH</th>
|
||||
</tr>
|
||||
|
||||
@foreach($Kredit as $index=>$kred)
|
||||
@foreach($Debit as $index=>$deb)
|
||||
@if($kred['glcode'] === $deb['glcode'])
|
||||
<tr>
|
||||
<td style="width:10px">{{ $kred['glcode'] }}</td>
|
||||
<td colspan="2" style="width:50px">{{ $kred['descpt'] }}</td>
|
||||
<td style="width:5px">{{ number_format($deb['amaun'],2) }}</td>
|
||||
<td style="width:5px" >{{ number_format($kred['amaun'],2) }}</td>
|
||||
<td style="width:10px">@php $Totalsama = $deb['amaun'] - $kred['amaun']; echo number_format($Totalsama,2); @endphp</td>
|
||||
</tr>
|
||||
@endif
|
||||
@endforeach
|
||||
@endforeach
|
||||
|
||||
@foreach($Debit as $index=>$deb)
|
||||
@if($deb['glcode'] == '1000/241' || $deb['glcode'] == '1000/211' || $deb['glcode'] == '1000/020' || $deb['glcode'] == '3000/017' || $deb['glcode'] == '3000/018' || $deb['glcode'] == '3000/019')
|
||||
<tr>
|
||||
<td style="width:10px">{{ $deb['glcode'] }}</td>
|
||||
<td colspan="2" style="width:50px">{{ $deb['descpt'] }}</td>
|
||||
<td style="width:5px">{{ number_format($deb['amaun'],2) }}</td>
|
||||
<td style="width:5px" >{{ number_format(0,2) }}</td>
|
||||
<td style="width:10px">{{ number_format($deb['amaun'],2) }}</td>
|
||||
</tr>
|
||||
@endif
|
||||
@endforeach
|
||||
|
||||
@foreach($Kredit as $index=>$kred)
|
||||
@if($kred['glcode'] == '5000/241' || $kred['glcode'] == '5000/211' || $kred['glcode'] == '5000/013' || $kred['glcode'] == '5000/007' || $kred['glcode'] == '7000/102')
|
||||
<tr>
|
||||
<td style="width:10px">{{ $kred['glcode'] }}</td>
|
||||
<td colspan="2" style="width:50px">{{ $kred['descpt'] }}</td>
|
||||
<td style="width:5px">{{ number_format(0,2) }}</td>
|
||||
<td style="width:5px" >{{ number_format($kred['amaun'],2) }}</td>
|
||||
<td style="width:10px">{{ number_format(($kred['amaun']*-1),2) }}</td>
|
||||
</tr>
|
||||
@endif
|
||||
@endforeach
|
||||
|
||||
<tr>
|
||||
<td style="width:10px">KOD GL</td>
|
||||
<td colspan="2" style="width:50px">KETERANGAN</td>
|
||||
<td style="width:5px">DEBIT</td>
|
||||
<td style="width:5px" >KREDIT</td>
|
||||
<td style="width:10px">JUMLAH</td>
|
||||
<th style="width:10px" colspan="3">JUMLAH: </th>
|
||||
<th style="width:5px">{{ number_format($TotalDebit,2) }}</th>
|
||||
<th style="width:5px" >{{ number_format($TotalKredit,2) }}</th>
|
||||
<th style="width:10px">@php $Total = $TotalDebit - $TotalKredit; echo number_format($Total,2); @endphp</th>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user