Add Anual Chart Report Feature

This commit is contained in:
2021-09-18 16:44:12 +07:00
parent cd74f850b0
commit c3f1605f35
10 changed files with 14297 additions and 89 deletions

View File

@@ -215,6 +215,7 @@
<th>Omset Bulan Ini</th>
<th>Jumlah l</th>
<th>Jumlah p</th>
<th>status</th>
</tr>
</thead>
<tbody>
@@ -258,6 +259,11 @@
<td><?php echo rupiah($absensi->omset) ?></td>
<td><?php echo $absensi->karyawan_l ?></td>
<td><?php echo $absensi->karyawan_p ?></td>
<?php if($absensi->signed=='3'){ ?>
<td><span class="badge badge-sm badge-warning">By system</span></td>
<?php }elseif($absensi->signed=='1'){ ?>
<td><span class="badge badge-sm badge-success">By Owner</span></td>
<?php } ?>
</tr>
<?php
}