Browse Source

pengampu

main
pecintaseni 7 months ago
parent
commit
290608aa9a
  1. 11
      app/Controllers/Kewilayahan/Kytp.php
  2. 54
      app/Controllers/Kewilayahan/Sebaran/Pengampu.php
  3. 98
      app/Views/kewilayahan/dist/kpdl.js
  4. 4
      app/Views/kewilayahan/kytp/TabPenugasan.js
  5. 5
      app/Views/kewilayahan/kytp/TabProgresifitas.js
  6. 88
      app/Views/kewilayahan/kytp/componentProgresifitas/Pengampu.js

11
app/Controllers/Kewilayahan/Kytp.php

@ -5,6 +5,7 @@ use App\Controllers\Kewilayahan\Sebaran\Identifikasi;
use App\Controllers\Kewilayahan\Sebaran\JenisStatus;
use App\Controllers\Kewilayahan\Sebaran\PayComp;
use App\Controllers\Kewilayahan\Sebaran\Pembayaran;
use App\Controllers\Kewilayahan\Sebaran\Pengampu;
use App\Controllers\Kewilayahan\Sebaran\Sof;
use CodeIgniter\API\ResponseTrait;
use CodeIgniter\Controller;
@ -97,6 +98,16 @@ class Kytp extends Controller
return $this->respond($dataReturn, 200);
}
public function sebaranPengampu()
{
$sebaran = new Pengampu;
$dataReturn['assign'] = $sebaran->data($this->request, 'assign');
$dataReturn['unassign'] = $sebaran->data($this->request, 'unassign');
return $this->respond($dataReturn, 200);
}
private function get_poi_agg()
{

54
app/Controllers/Kewilayahan/Sebaran/Pengampu.php

@ -0,0 +1,54 @@
<?php
namespace App\Controllers\Kewilayahan\Sebaran;
class Pengampu extends \App\Controllers\Kewilayahan\Kytp
{
protected function data($request, $jenis)
{
$opsiWilZona = $request->getPost('opsiWilZona');
$adm4_pcode = $request->getPost('adm4_pcode') ?? [];
$id_poly_zona = $request->getPost('id_poly_zona') ?? [];
$db = \Config\Database::connect();
$npwp = $db->table('KPDL_MV_LOKASI_SUBJEK')->select("NM_KPP_ADM, count(1) JML", false)
->groupBy("NM_KPP_ADM")->orderBy("JML", 'desc');
$kolom = "JNS_WP_MFWP";
switch ($jenis) {
case 'assign':
break;
case 'unassign':
$npwp = $npwp->where("NIP_AR_PENGAMPU", "NPWP TIDAK DITEMUKAN");
break;
default:
break;
}
if ($opsiWilZona == 'wilayah') {
$npwp->whereIn('ADM4_PCODE', $adm4_pcode);
}
if ($opsiWilZona == 'zona') {
$npwp->whereIn('ID_POLY_ZONA', $id_poly_zona);
}
$data = $npwp->get()->getResult();
$ret = [];
foreach ($data as $b) {
array_push($ret, ['name' => $b->NM_KPP_ADM,
// 'color' => ,
'y' => floatval($b->JML),
]
);
}
return $ret;
}
}

98
app/Views/kewilayahan/dist/kpdl.js vendored

@ -62325,6 +62325,95 @@ const JenisStatusWp = ({
}))));
};
/* harmony default export */ const componentProgresifitas_JenisStatusWp = (JenisStatusWp);
;// CONCATENATED MODULE: ./app/Views/kewilayahan/kytp/componentProgresifitas/Pengampu.js
const Pengampu = ({
dataSend
}) => {
const base_url = "<?=base_url()?>";
const refChart = (0,react.useRef)(null);
const refChart2 = (0,react.useRef)(null);
const [dataAssign, setDataAssign] = (0,react.useState)(null);
const [dataUnAssign, setDataUnAssign] = (0,react.useState)(null);
(0,react.useEffect)(() => {
jQuery.get({
url: base_url + "kewilayahan/kytp/sebaranPengampu",
dataType: "json",
type: "POST",
data: {
...dataSend
},
success: data => {
setDataAssign(data.assign);
setDataUnAssign(data.unassign);
}
});
}, [dataSend]);
const optionsChart = (data, title) => {
const total_wp = dist_default()(data).sum("y");
return {
chart: {
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
type: "pie",
zoomType: "xy",
height: "300"
},
title: {
text: title,
style: {
fontSize: "10px"
}
},
tooltip: {
pointFormat: "<b>{point.percentage:.1f}%</b><br>: {point.y} dari " + format_angka(total_wp) + " total NPWP"
},
accessibility: {
point: {
valueSuffix: "%"
}
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: "pointer",
dataLabels: {
enabled: true,
style: {
fontSize: "10px"
},
format: "{point.name}: <br> {point.percentage:.1f} %"
}
}
// series: pie_click
},
series: [{
name: "",
data
}]
};
};
return /*#__PURE__*/react.createElement(react.Fragment, null, /*#__PURE__*/react.createElement(es_Row, null, /*#__PURE__*/react.createElement(es_Col, {
md: "6"
}, /*#__PURE__*/react.createElement((highcharts_react_min_default()), {
ref: refChart,
highcharts: (highcharts_default()),
options: optionsChart(dataAssign, "KPP Terdaftar")
})), /*#__PURE__*/react.createElement(es_Col, {
md: "6"
}, /*#__PURE__*/react.createElement((highcharts_react_min_default()), {
ref: refChart2,
highcharts: (highcharts_default()),
options: optionsChart(dataUnAssign, "Status UnAssign")
}))));
};
/* harmony default export */ const componentProgresifitas_Pengampu = (Pengampu);
;// CONCATENATED MODULE: ./app/Views/kewilayahan/kytp/TabProgresifitas.js
@ -62334,6 +62423,7 @@ const JenisStatusWp = ({
function TabProgresifitas({
dataSend
}) {
@ -62367,7 +62457,9 @@ function TabProgresifitas({
})), /*#__PURE__*/react.createElement(TabPanel, {
id: "tab_5",
header: "Pengampu"
}), /*#__PURE__*/react.createElement(TabPanel, {
}, /*#__PURE__*/react.createElement(componentProgresifitas_Pengampu, {
dataSend: dataSend
})), /*#__PURE__*/react.createElement(TabPanel, {
id: "tab_6",
header: "KLU"
})));
@ -62382,10 +62474,10 @@ function TabPenugasan({
className: "card"
}, /*#__PURE__*/react.createElement(TabView, null, /*#__PURE__*/react.createElement(TabPanel, {
id: "tab_1",
header: "Penugasan"
header: "Identifikasi Lapangan (KPDL)"
}), /*#__PURE__*/react.createElement(TabPanel, {
id: "tab_2",
header: "Aktifitas"
header: "Aktifitas pasca identifikasi"
}), /*#__PURE__*/react.createElement(TabPanel, {
id: "tab_3",
header: "Hasil"

4
app/Views/kewilayahan/kytp/TabPenugasan.js

@ -5,8 +5,8 @@ export default function TabPenugasan({ dataSend }) {
return (
<div className="card">
<TabView>
<TabPanel id="tab_1" header="Penugasan"></TabPanel>
<TabPanel id="tab_2" header="Aktifitas"></TabPanel>
<TabPanel id="tab_1" header="Identifikasi Lapangan (KPDL)"></TabPanel>
<TabPanel id="tab_2" header="Aktifitas pasca identifikasi"></TabPanel>
<TabPanel id="tab_3" header="Hasil"></TabPanel>
</TabView>
</div>

5
app/Views/kewilayahan/kytp/TabProgresifitas.js

@ -6,6 +6,7 @@ import Identifikasi from "./componentProgresifitas/Identifikasi"
import PayComp from "./componentProgresifitas/PayComp"
import Sof from "./componentProgresifitas/Sof"
import JenisStatusWp from "./componentProgresifitas/JenisStatusWp"
import Pengampu from "./componentProgresifitas/Pengampu"
export default function TabProgresifitas({ dataSend }) {
return (
@ -33,7 +34,9 @@ export default function TabProgresifitas({ dataSend }) {
<JenisStatusWp dataSend={dataSend} />
</TabPanel>
<TabPanel id="tab_5" header="Pengampu"></TabPanel>
<TabPanel id="tab_5" header="Pengampu">
<Pengampu dataSend={dataSend} />
</TabPanel>
<TabPanel id="tab_6" header="KLU"></TabPanel>
</TabView>
</div>

88
app/Views/kewilayahan/kytp/componentProgresifitas/Pengampu.js

@ -0,0 +1,88 @@
import React, { useEffect, useRef, useState } from "react"
import Highcharts from "highcharts"
import HighchartsReact from "highcharts-react-official"
import { Col, Row } from "reactstrap"
import { format_angka } from "../util"
import collect from "collect.js"
const Pengampu = ({ dataSend }) => {
const base_url = "<?=base_url()?>"
const refChart = useRef(null)
const refChart2 = useRef(null)
const [dataAssign, setDataAssign] = useState(null)
const [dataUnAssign, setDataUnAssign] = useState(null)
useEffect(() => {
jQuery.get({
url: base_url + "kewilayahan/kytp/sebaranPengampu",
dataType: "json",
type: "POST",
data: {
...dataSend
},
success: (data) => {
setDataAssign(data.assign)
setDataUnAssign(data.unassign)
}
})
}, [dataSend])
const optionsChart = (data, title) => {
const total_wp = collect(data).sum("y")
return {
chart: {
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
type: "pie",
zoomType: "xy",
height: "300"
},
title: {
text: title,
style: { fontSize: "10px" }
},
tooltip: {
pointFormat: "<b>{point.percentage:.1f}%</b><br>: {point.y} dari " + format_angka(total_wp) + " total NPWP"
},
accessibility: {
point: {
valueSuffix: "%"
}
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: "pointer",
dataLabels: {
enabled: true,
style: { fontSize: "10px" },
format: "{point.name}: <br> {point.percentage:.1f} %"
}
}
// series: pie_click
},
series: [
{
name: "",
data
}
]
}
}
return (
<>
<Row>
<Col md="6">
<HighchartsReact ref={refChart} highcharts={Highcharts} options={optionsChart(dataAssign, "KPP Terdaftar")} />
</Col>
<Col md="6">
<HighchartsReact ref={refChart2} highcharts={Highcharts} options={optionsChart(dataUnAssign, "Status UnAssign")} />
</Col>
</Row>
</>
)
}
export default Pengampu
Loading…
Cancel
Save