|
|
|
@ -382,27 +382,39 @@ $datapaycomp = $datapaycomp . "]";
|
|
|
|
|
<th class="text-center">Jumlah</th> |
|
|
|
|
<th class="text-center">Jumlah %</th> |
|
|
|
|
</thead> |
|
|
|
|
<?= |
|
|
|
|
$totwpsof = 0; |
|
|
|
|
$totjmlsof = 0; |
|
|
|
|
foreach ($parsesof as $datasof) { |
|
|
|
|
$totwpsof += $datasof->WPBYR; |
|
|
|
|
$totjmlsof += $datasof->TOTAL; |
|
|
|
|
|
|
|
|
|
$pctwp = $datasof->WPBYR / $totwpsof * 100; |
|
|
|
|
$pctpen = $datasof->TOTAL / $totjmlsof * 100; |
|
|
|
|
print_r((array_sum(array($totwpsof)))); |
|
|
|
|
<?php |
|
|
|
|
|
|
|
|
|
foreach ($parsesof as $row) { |
|
|
|
|
$wpbyrsof = $row->WPBYR; |
|
|
|
|
$totwpsof = $row->TOTWPBYR; |
|
|
|
|
$totjmlsof = $row->TOTALL; |
|
|
|
|
|
|
|
|
|
$pctwp = $row->WPBYR / $totwpsof * 100; |
|
|
|
|
$pctpen = $row->TOTAL / $totjmlsof * 100; |
|
|
|
|
|
|
|
|
|
if ($pctwp < 20) { |
|
|
|
|
$mpctwp = "text-danger"; |
|
|
|
|
} else { |
|
|
|
|
$mpctwp = "text-success"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if ($pctpen < 20) { |
|
|
|
|
$mpctpen = "text-danger"; |
|
|
|
|
} else { |
|
|
|
|
$mpctpen = "text-success"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
?> |
|
|
|
|
<tbody> |
|
|
|
|
|
|
|
|
|
<td><?= $datasof->LAPISAN ?></td>
|
|
|
|
|
<td class="text-right"><?= number_format($datasof->WPBYR, 0, ',', '.') ?></td>
|
|
|
|
|
<td class="text-right"><?= number_format($pctwp, 2) ?></td>
|
|
|
|
|
<td class="text-right"><?= number_format($datasof->TOTAL, 0, ',', '.') ?></td>
|
|
|
|
|
<td class="text-right"><?= number_format($pctpen, 2) ?></td>
|
|
|
|
|
<td><?= $row->LAPISAN; ?></td>
|
|
|
|
|
<td class="text-right"><?= number_format($row->WPBYR, 0, ',', '.') ?></td>
|
|
|
|
|
<td class="text-right <?= $mpctwp ?>"><?= number_format($pctwp, 2) ?></td>
|
|
|
|
|
<td class="text-right"><?= number_format($row->TOTAL, 0, ',', '.') ?></td>
|
|
|
|
|
<td class="text-right <?= $mpctpen ?>"><?= number_format($pctpen, 2) ?></td>
|
|
|
|
|
</tbody> |
|
|
|
|
<?php } ?> |
|
|
|
|
</table> |
|
|
|
|
<small>*) Nilai Persentase dibawah 20% berwarna merah</small> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|