Browse Source

freeze 2024

main
pecintaseni 3 months ago
parent
commit
3daa249a68
  1. 5
      app/Controllers/Kewilayahan/Kytp.php
  2. 11
      app/Controllers/Kewilayahan/Sebaran/SPTTAhunan.php
  3. 28496
      app/Views/kewilayahan/dist/kpdl.css
  4. 10026
      app/Views/kewilayahan/dist/kpdl.js
  5. 28114
      app/Views/kewilayahan/dist/monitoring-perubahan-perilaku.css
  6. 7586
      app/Views/kewilayahan/dist/monitoring-perubahan-perilaku.js
  7. 28114
      app/Views/kewilayahan/dist/monitoring.css
  8. 7499
      app/Views/kewilayahan/dist/monitoring.js
  9. 57217
      app/Views/kewilayahan/dist/peta.css
  10. 6353
      app/Views/kewilayahan/dist/peta.js
  11. 2
      app/Views/kewilayahan/kytp/componentProgresifitas/SPTTahunan.js
  12. 28494
      public/kpdl/dist/kpdl.css
  13. 9995
      public/kpdl/dist/kpdl.js
  14. 28110
      public/kpdl/dist/monitoring-perubahan-perilaku.css
  15. 7586
      public/kpdl/dist/monitoring-perubahan-perilaku.js
  16. 28110
      public/kpdl/dist/monitoring.css
  17. 7499
      public/kpdl/dist/monitoring.js
  18. 57223
      public/kpdl/dist/peta.css
  19. 6249
      public/kpdl/dist/peta.js

5
app/Controllers/Kewilayahan/Kytp.php

@ -156,8 +156,9 @@ class Kytp extends Controller
public function sebaranSPTTahunan() public function sebaranSPTTahunan()
{ {
$sebaran = new SPTTAhunan; $sebaran = new SPTTAhunan;
$tahun = $this->request->getGet('tahun') ?? date('Y'); // $tahun = $this->request->getGet('tahun') ?? date('Y');
$tahun = 2024;
$dataReturn['data'] = $sebaran->data($this->request, $tahun); $dataReturn['data'] = $sebaran->data($this->request, $tahun);
return $this->respond($dataReturn, 200); return $this->respond($dataReturn, 200);

11
app/Controllers/Kewilayahan/Sebaran/SPTTAhunan.php

@ -33,7 +33,8 @@ class SPTTAhunan extends \App\Controllers\Kewilayahan\Kytp
$db = \Config\Database::connect(); $db = \Config\Database::connect();
$npwp = $db->table('KPDL_MV_LOKASI_SUBJEK A')->select('A.NPWP, STATUS_SPT_TAHUNAN_TERAKHIR, B.KETERANGAN')->distinct() $npwp = $db->table('KPDL_MV_LOKASI_SUBJEK A')->select('A.NPWP, STATUS_SPT_TAHUNAN_TERAKHIR, B.KETERANGAN')->distinct()
->join('KPDL_REF_STATUS_SPT B', "A.STATUS_SPT_TAHUNAN_TERAKHIR = B.ID_STATUS_SPT", "left") ->join('KPDL_REF_STATUS_SPT B', "A.STATUS_SPT_TAHUNAN_TERAKHIR = B.ID_STATUS_SPT", "left")
->where('A.NPWP IS NOT NULL'); ->where('A.NPWP IS NOT NULL')
->where('EXTRACT (YEAR FROM A.creation_date) <=', $tahun);
if ($opsiWilZona == 'wilayah') { if ($opsiWilZona == 'wilayah') {
$npwp->whereIn('ADM4_PCODE', $adm4_pcode); $npwp->whereIn('ADM4_PCODE', $adm4_pcode);
@ -200,11 +201,11 @@ class SPTTAhunan extends \App\Controllers\Kewilayahan\Kytp
$globalFilter = $this->request->getGet('globalFilter'); //string $globalFilter = $this->request->getGet('globalFilter'); //string
$filters = json_decode($this->request->getGet('filters')); // [{"id":"MERK_USAHA","value":"toko"},{"id":"ALAMAT","value":"graha"}] $filters = json_decode($this->request->getGet('filters')); // [{"id":"MERK_USAHA","value":"toko"},{"id":"ALAMAT","value":"graha"}]
$sorting = json_decode($this->request->getGet('sorting')); // [{"id":"ALAMAT","desc":false}] $sorting = json_decode($this->request->getGet('sorting')); // [{"id":"ALAMAT","desc":false}]
$tahun = 2024;
$db = \Config\Database::connect(); $db = \Config\Database::connect();
$data = $db->table('KPDL_MV_LOKASI_SUBJEK A')->distinct()->select('A.NPWP, A.NAMA_WP, A.ALAMAT_MFWP, A.KELURAHAN_MFWP, A.KECAMATAN_MFWP, A.KOTA_MFWP, A.PROPINSI_MFWP, $data = $db->table('KPDL_MV_LOKASI_SUBJEK A')->distinct()->select('A.NPWP, A.NAMA_WP, A.ALAMAT_MFWP, A.KELURAHAN_MFWP, A.KECAMATAN_MFWP, A.KOTA_MFWP, A.PROPINSI_MFWP,
A.KPPADM_MFWP, A.NAMA_AR_MFWP, A.FLAG_WPS_WPK, A.STATUS_WP_MFWP, A.JNS_WP_MFWP, A.STATUS_SPT_TAHUNAN_TERAKHIR, A.KPPADM_MFWP, A.NAMA_AR_MFWP, A.FLAG_WPS_WPK, A.STATUS_WP_MFWP, A.JNS_WP_MFWP, A.STATUS_SPT_TAHUNAN_TERAKHIR,
A.TGL_DAFTAR, JUMLAH_PEMBAYARAN_THN_TERAKHIR')->where('A.NPWP IS NOT NULL'); A.TGL_DAFTAR, JUMLAH_PEMBAYARAN_THN_TERAKHIR')->where('A.NPWP IS NOT NULL')->where('EXTRACT (YEAR FROM A.creation_date) <=', $tahun);
if ($opsiWilZona == 'wilayah') { if ($opsiWilZona == 'wilayah') {
$data->whereIn('ADM4_PCODE', $adm4_pcode); $data->whereIn('ADM4_PCODE', $adm4_pcode);

28496
app/Views/kewilayahan/dist/kpdl.css vendored

File diff suppressed because one or more lines are too long

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

File diff suppressed because one or more lines are too long

28114
app/Views/kewilayahan/dist/monitoring-perubahan-perilaku.css vendored

File diff suppressed because one or more lines are too long

7586
app/Views/kewilayahan/dist/monitoring-perubahan-perilaku.js vendored

File diff suppressed because one or more lines are too long

28114
app/Views/kewilayahan/dist/monitoring.css vendored

File diff suppressed because one or more lines are too long

7499
app/Views/kewilayahan/dist/monitoring.js vendored

File diff suppressed because one or more lines are too long

57217
app/Views/kewilayahan/dist/peta.css vendored

File diff suppressed because one or more lines are too long

6353
app/Views/kewilayahan/dist/peta.js vendored

File diff suppressed because one or more lines are too long

2
app/Views/kewilayahan/kytp/componentProgresifitas/SPTTahunan.js

@ -288,7 +288,7 @@ const SPTTahunan = ({ dataSend }) => {
<> <>
<Row> <Row>
<Col> <Col>
<HighchartsReact ref={refChart} highcharts={Highcharts} options={optionsChart(data, 'SPT Tahunan Tahun Pajak 2024')} /> <HighchartsReact ref={refChart} highcharts={Highcharts} options={optionsChart(data, 'SPT Tahunan')} />
</Col> </Col>
</Row> </Row>
<Row className="f-14"> <Row className="f-14">

28494
public/kpdl/dist/kpdl.css vendored

File diff suppressed because one or more lines are too long

9995
public/kpdl/dist/kpdl.js vendored

File diff suppressed because one or more lines are too long

28110
public/kpdl/dist/monitoring-perubahan-perilaku.css vendored

File diff suppressed because one or more lines are too long

7586
public/kpdl/dist/monitoring-perubahan-perilaku.js vendored

File diff suppressed because one or more lines are too long

28110
public/kpdl/dist/monitoring.css vendored

File diff suppressed because one or more lines are too long

7499
public/kpdl/dist/monitoring.js vendored

File diff suppressed because one or more lines are too long

57223
public/kpdl/dist/peta.css vendored

File diff suppressed because one or more lines are too long

6249
public/kpdl/dist/peta.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save