Browse Source

update query

main
dfoso 1 year ago
parent
commit
f732b90be8
  1. 3
      app/Controllers/Home.php
  2. 6
      app/Models/Mpemby.php
  3. 4
      app/Views/inc/head.php
  4. 44
      app/Views/ppm/dashboard.php

3
app/Controllers/Home.php

@ -3,8 +3,7 @@
namespace App\Controllers;
use App\Models\Mpemby;
use CodeIgniter\HTTP\RequestInterface;
use CodeIgniter\HTTP\ResponseInterface;
class Home extends BaseController
{

6
app/Models/Mpemby.php

@ -82,7 +82,11 @@ class Mpemby extends Model
function sofNas($param)
{
$tahun = $param['tahun'];
$query = $this->db->query("SELECT LAPISAN,TO_NUMBER(WPBYR) WPBYR,ROUND(TOTAL) TOTAL FROM SOFNAS WHERE THNBYR = '" . $tahun . "'");
$query = $this->db->query("SELECT LAPISAN,WPBYR,TOTAL,
(SELECT SUM(WPBYR) FROM SOFNAS WHERE THNBYR = '" . $tahun . "') TOTWPBYR,
(SELECT SUM(TOTAL) FROM SOFNAS WHERE THNBYR = '" . $tahun . "') TOTALL
FROM (
SELECT LAPISAN,TO_NUMBER(WPBYR) WPBYR,ROUND(TOTAL) TOTAL FROM SOFNAS WHERE THNBYR = '" . $tahun . "')");
return $query;
}
}

4
app/Views/inc/head.php

@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Engine - Kewilayahan</title>
<title>Engine - Nasional</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -26,7 +26,7 @@
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/owl.carousel/dist/assets/owl.carousel.min.css') ?>">
<link rel="stylesheet" href="<?= base_url('public/theme/plugins/owl.carousel/dist/assets/owl.theme.default.min.css') ?>">
<link rel="stylesheet" href="<?= base_url('public/theme/dist/css/theme.min.css') ?>">
<script src="<?= base_url('public/theme/src/js/vendor/modernizr-2.8.3.min.js') ?>"></script>
</head>
<body>

44
app/Views/ppm/dashboard.php

@ -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>

Loading…
Cancel
Save