diff --git a/src/assets/css/style.css b/src/assets/css/style.css index 05d48e5..2b5859a 100755 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -1614,10 +1614,6 @@ body { height: 2.7rem; } -.h-\[56px\] { - height: 56px; -} - .h-\[66px\] { height: 66px; } @@ -3269,6 +3265,10 @@ body { text-align: center; } +.\!text-center { + text-align: center !important; +} + .\!text-right { text-align: right !important; } @@ -3285,10 +3285,6 @@ body { vertical-align: top !important; } -.align-top { - vertical-align: top; -} - .align-middle { vertical-align: middle; } @@ -5664,8 +5660,8 @@ body { width: 100%; } - .sm\:max-w-\[90\%\] { - max-width: 90%; + .sm\:max-w-full { + max-width: 100%; } .sm\:max-w-lg { @@ -5684,10 +5680,6 @@ body { max-width: 20rem; } - .sm\:max-w-full { - max-width: 100%; - } - .sm\:flex-1 { flex: 1 1 0%; } diff --git a/src/components/Pages/Gangguan/Rekap/RGangguan_ALL.vue b/src/components/Pages/Gangguan/Rekap/RGangguan_ALL.vue index e20d550..f946e60 100755 --- a/src/components/Pages/Gangguan/Rekap/RGangguan_ALL.vue +++ b/src/components/Pages/Gangguan/Rekap/RGangguan_ALL.vue @@ -13,7 +13,7 @@ + v-model:visible="loadingData" :enabled="true" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -101,69 +165,69 @@ - + + v-model:visible="loadingSubData" :enabled="true" /> - - - + - - - - + + + + - - + + + + + + + + + - + + + - - - - - - - - - - - - - @@ -172,6 +236,12 @@ + + + {{ data.text }} + + + {{ parseInt(data.text) ? formatWaktu(data.text) : '-' }} @@ -185,38 +255,41 @@ Posko: - + No Laporan: - + Tgl/Jam Lapor: - + Tgl/Jam Datang: - + Tgl/Jam Nyala: - + Durasi Response Time: - + Durasi Recovery Time: - @@ -231,82 +304,85 @@ Durasi Perjalanan Regu: - + Jarak Closing (m): - + Dispatch Oleh: - + IDPEL/NO METER: - + Nama Pelapor: - + Alamat Pelapor: - + NO Telp Pelapor: - + Keterangan Pelapor: - + Sumber Lapor: - + Diselesaikan Oleh: - + Status: - + Referensi Marking: - + Kode Gangguan: - + Jenis Gangguan: - + Penyebab: - + Tindakan: - + @@ -328,9 +404,11 @@ import { DxPager, DxPaging, DxSearchPanel, - DxSelection + DxSelection, + DxSummary, + DxGroupItem, } from 'devextreme-vue/data-grid' -import { onMounted, ref } from 'vue' +import { onMounted, ref, watch } from 'vue' import { jsPDF } from 'jspdf' import { exportDataGrid as exportToPdf } from 'devextreme/pdf_exporter' import { exportDataGrid as exportToExcel } from 'devextreme/excel_exporter' @@ -353,19 +431,22 @@ const dataSelected = ref() const dataSubSelected = ref() const dialogDataSelected = ref(false) const closeDialogDataSelected = () => dialogDataSelected.value = false -const showDialogDataSelected = () => dialogDataSelected.value = true +const loadingData = ref(false) +const loadingSubData = ref(false) -const { onResult, onError, loading, refetch } = useQuery(queries.gangguan.rekap.gangguanAll, { - dateFrom: new Date().toISOString().slice(0, 10), - dateTo: new Date().toISOString().slice(0, 10), - posko: 0, - idUid: 0, - idUp3: 0 -}) const filterData = (params: any) => { + const { onResult, onError, loading, refetch } = useQuery(queries.gangguan.rekap.gangguanAll, { + dateFrom: new Date().toISOString().slice(0, 10), + dateTo: new Date().toISOString().slice(0, 10), + posko: 0, + idUid: 0, + idUp3: 0 + }) + const { posko, uid, up3 } = params const dateValue = params.periode.split(' s/d ') + refetch({ dateFrom: dateValue[0] ? dateValue[0].split('-').reverse().join('-') @@ -377,6 +458,7 @@ const filterData = (params: any) => { idUid: uid ? uid.id : 0, idUp3: up3 ? up3.id : 0 }) + onResult((queryResult) => { if (queryResult.data != undefined) { data.value = queryResult.data.rekapitulasiAllGangguan @@ -384,9 +466,59 @@ const filterData = (params: any) => { console.log(queryResult.loading) console.log(queryResult.networkStatus) }) + onError((error) => { console.log(error) }) + + watch(loading, (value) => { + loadingData.value = value + }) +} + +const getDetail = () => { + const { onResult, onError, loading, refetch } = useQuery(queries.gangguan.rekap.gangguanAllDetail, { + dateFrom: new Date().toISOString().slice(0, 10), + dateTo: new Date().toISOString().slice(0, 10), + posko: 0, + idUid: 0, + idUp3: 0 + }) + + const { posko, uid, up3 } = filters + const dateValue = params.periode.split(' s/d ') + + refetch({ + dateFrom: dateValue[0] + ? dateValue[0].split('-').reverse().join('-') + : new Date().toISOString().slice(0, 10), + dateTo: dateValue[1] + ? dateValue[1].split('-').reverse().join('-') + : new Date().toISOString().slice(0, 10), + posko: posko ? posko.id : 0, + idUid: uid ? uid.id : 0, + idUp3: up3 ? up3.id : 0 + }) + + onResult((queryResult) => { + if (queryResult.data != undefined) { + dataSub.value = queryResult.data.detailGangguan + } + }) + + onError((error) => { + console.log(error) + }) + + watch(loading, (value) => { + loadingSubData.value = value + }) + + dataSub.value = dummyData.gangguan.rekap.detailGangguan +} +const showDialogDataSelected = () => { + dialogDataSelected.value = true + getDetail() } const onExporting = (e: any) => { @@ -434,4 +566,4 @@ const filters = ref() onMounted(() => { data.value = dummyData.gangguan.rekap.rekapitulasiAllGangguan }) -@/utils/api/graphql + diff --git a/src/utils/api/api.graphql.ts b/src/utils/api/api.graphql.ts index 9522bc4..37b236d 100755 --- a/src/utils/api/api.graphql.ts +++ b/src/utils/api/api.graphql.ts @@ -1034,6 +1034,50 @@ export const queries = { } } `, + gangguanAllDetail: gql` + query daftarGangguanDiselesaikanMobileAPKT( + $dateFrom: Date! + $dateTo: Date! + $posko: Int! + $idUid: Int! + $idUp3: Int! + ) { + detailGangguan ( + dateFrom:$dateFrom + dateTo:$dateTo + posko:$posko + idUid:$idUid + idUp3:$idUp3 + ) { + id + no_laporan + pembuat_laporan + waktu_lapor + waktu_response + waktu_recovery + durasi_dispatch_time + durasi_response_time + durasi_recovery_time + status_akhir + is_marking + referensi_marking + idpel_nometer + nama_pelapor + alamat_pelapor + no_telp_pelapor + keterangan_pelapor + media + nama_posko + jarak_closing + dispatch_oleh + diselesaikan_oleh + penyebab + tindakan + kode_gangguan + jenis_gangguan + } + } + `, gangguanAlihPosko: gql` query rekapitulasiGangguanAlihPosko( $dateFrom: Date! diff --git a/src/utils/dummy.ts b/src/utils/dummy.ts index 16172d7..04c34d2 100644 --- a/src/utils/dummy.ts +++ b/src/utils/dummy.ts @@ -18675,6 +18675,2752 @@ export const dummyData = { "total_diatas_sla_recovery": 425 } ], + detailGangguan: [ + { + "id": 0, + "no_laporan": "G5423020125498", + "pembuat_laporan": "CC.54.RAMDANI", + "waktu_lapor": "01/02/2023 23:27:22", + "waktu_response": "01/02/2023 23:43:23", + "waktu_recovery": "01/02/2023 23:56:44", + "durasi_dispatch_time": 414, + "durasi_response_time": 961, + "durasi_recovery_time": 1762, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "IBU ULPA", + "alamat_pelapor": "PR BUKIT GOLF CLUSTER BULEVARD TERRACE BLOK BB 4 NO 2 JL - RT - RW - KEL BOJONG NANGKA KEC GN PUTRI DEKAT POS SATPAM", + "no_telp_pelapor": "02121386069", + "keterangan_pelapor": "1 RUMAH PADAM PRABAYAR", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 1, + "no_laporan": "G5423020125474", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 23:24:57", + "waktu_response": "01/02/2023 23:40:12", + "waktu_recovery": "01/02/2023 23:42:18", + "durasi_dispatch_time": 307, + "durasi_response_time": 915, + "durasi_recovery_time": 1041, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "didit", + "alamat_pelapor": "JL BARET BIRU III RT.5 RW.3 KALISARI", + "no_telp_pelapor": "6287888865707", + "keterangan_pelapor": "periksa ", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 2, + "no_laporan": "G5423020125388", + "pembuat_laporan": "CC.54.NANDI", + "waktu_lapor": "01/02/2023 23:16:35", + "waktu_response": "01/02/2023 23:37:57", + "waktu_recovery": "01/02/2023 23:46:36", + "durasi_dispatch_time": 523, + "durasi_response_time": 1282, + "durasi_recovery_time": 1801, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "01114311788", + "nama_pelapor": "IBU ZOLA", + "alamat_pelapor": "JL RAYA PONDOK RANGGON PERUM CIBUBUR VILLA 3 BLOK C NO 6 KEL HARJAMUKTI KEC CIMANGGIS KOTA DEPOK / DEKAT TPU PONDOK RANGGON", + "no_telp_pelapor": "08118651104", + "keterangan_pelapor": "APP TERTERA PERIKSA PTL TIDAK PADAM", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 3, + "no_laporan": "G5423020125081", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 22:53:29", + "waktu_response": "01/02/2023 23:13:55", + "waktu_recovery": "01/02/2023 23:19:06", + "durasi_dispatch_time": 185, + "durasi_response_time": 1226, + "durasi_recovery_time": 1537, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "ferdy surya syahputra", + "alamat_pelapor": "GG ANGSA II BLOK RINGIN No. RT.9 RW.3 CIBUBUR", + "no_telp_pelapor": "6285171173097", + "keterangan_pelapor": "listrik padam tulisan periksa ", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 4, + "no_laporan": "G5423020124992", + "pembuat_laporan": "CC.54.MUHAJIR", + "waktu_lapor": "01/02/2023 22:46:52", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 100, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP JAMAL / BP HILMAN", + "alamat_pelapor": "JL ALAMANDA NO. 89 RT-9 / RW-7 KEL TUGU KEC CIMANGGIS - DEPOK, SETEMPAT TOWER BTS LINKNET, ", + "no_telp_pelapor": "02129536700", + "keterangan_pelapor": "MOHON PERIKSA APP PRABAYAR DISPLAY TERTERA ERROR (PTL PADAM)\\n", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 5, + "no_laporan": "G5423020124921", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 22:41:15", + "waktu_response": "01/02/2023 22:54:19", + "waktu_recovery": "01/02/2023 22:59:00", + "durasi_dispatch_time": 200, + "durasi_response_time": 784, + "durasi_recovery_time": 1065, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "risma susilawati", + "alamat_pelapor": "KP BABAKAN No. RT.4 RW.8 SUKATANI", + "no_telp_pelapor": "6285714714560", + "keterangan_pelapor": "ada tulisan prisksa", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 6, + "no_laporan": "G5423020124885", + "pembuat_laporan": "CC.54.DENDI", + "waktu_lapor": "01/02/2023 22:38:12", + "waktu_response": "01/02/2023 23:05:44", + "waktu_recovery": "01/02/2023 23:11:06", + "durasi_dispatch_time": 235, + "durasi_response_time": 1652, + "durasi_recovery_time": 1974, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "0", + "nama_pelapor": "IBU DEWI ", + "alamat_pelapor": "JL CIBUBUR RT 3 RW 12 NO 9 KEL CIBUBUR KEC CIRACAS JAKTIM \\nACUAN LOKASI MIE AYAM KOTA PARAHYANGAN /SEBELAH INDOMARET ", + "no_telp_pelapor": "08871859891", + "keterangan_pelapor": "APP PRABAYAR TERTERA PERIKSA ( PTL TIDAK PADAM )", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 7, + "no_laporan": "G5423020124844", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 22:34:52", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 212, + "durasi_response_time": 764, + "durasi_recovery_time": 764, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "ferdy surya syahputra", + "alamat_pelapor": "GG ANGSA II BLOK RINGIN No. RT.9 RW.3 CIBUBUR", + "no_telp_pelapor": "6281574255336", + "keterangan_pelapor": "listrik padam tulisan periksa ", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 8, + "no_laporan": "G5123020102631", + "pembuat_laporan": "CC.51.YUSUF", + "waktu_lapor": "01/02/2023 21:43:43", + "waktu_response": "01/02/2023 22:00:03", + "waktu_recovery": "01/02/2023 22:07:51", + "durasi_dispatch_time": 107, + "durasi_response_time": 980, + "durasi_recovery_time": 1448, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP ALFI MULYADI", + "alamat_pelapor": "KP KELAPA DUA JL LEBAK NO 130 RT-5 / RW-9 KEL TUGU KEC CIMANGGIS KOTA DEPOK//SAMPING DIFA CLUSTER ", + "no_telp_pelapor": "081210977327", + "keterangan_pelapor": "PELANGGAN TIDAK BISA INPUT TOKEN SETELAH UPDATE VKRN 43//\\nTOKEN 0495 3575 0751 6317 3903//\\nSISA TOKEN 6.6 KWH ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 9, + "no_laporan": "G5223020101538", + "pembuat_laporan": "CC.52.FATHAN", + "waktu_lapor": "01/02/2023 21:17:40", + "waktu_response": "01/02/2023 21:34:56", + "waktu_recovery": "01/02/2023 21:37:21", + "durasi_dispatch_time": 130, + "durasi_response_time": 1036, + "durasi_recovery_time": 1181, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP RIDWAN ", + "alamat_pelapor": "JL CIBUBUR IV RT-4 / RW-2 NO - KEL CIBUBUR KEC CIRACAS JAKTIM// DEKAT DENGAN KANTOR KELURAHAN CIBUBUR ", + "no_telp_pelapor": "6285693074793", + "keterangan_pelapor": "APP PERIKSA, PTL PADAM. PELANGGAN DAPAT DIHUBUNGI VIA TELEPON SMS DAN WA, MCB DAN SEKERING ON", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 10, + "no_laporan": "G5223020101526", + "pembuat_laporan": "CC.52.FAHRUDDIN.SM", + "waktu_lapor": "01/02/2023 21:10:19", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 167, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP. HENDRO", + "alamat_pelapor": "JL KAMBOJA NO 20 J RT-9 / RW-2 KEL. CINJANTUNG KEC. PASAR REBO KOTA JAKARTA TIMUR >> DEKAT DENGAN TPU CITANJUNG", + "no_telp_pelapor": "6285640803787", + "keterangan_pelapor": "PELANGGAN TIDAK DAPAT MELAKUKAN PEMBELIAN TOKEN KARENA TERDAPAT PERUBAHAN NM DARI 14031826283 MENJADI 56225515198. PTL NYALA. SISA 28. KWH.", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 11, + "no_laporan": "G5423020122968", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 20:51:15", + "waktu_response": "01/02/2023 21:23:30", + "waktu_recovery": "01/02/2023 21:35:46", + "durasi_dispatch_time": 750, + "durasi_response_time": 1935, + "durasi_recovery_time": 2671, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Abdul Hadi", + "alamat_pelapor": "Jl. Pringgondani No.47", + "no_telp_pelapor": "6288210047111", + "keterangan_pelapor": "Mati Tanpa Sebab", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 12, + "no_laporan": "G5423020122956", + "pembuat_laporan": "CC.54.FATHUR", + "waktu_lapor": "01/02/2023 20:50:40", + "waktu_response": "01/02/2023 21:16:10", + "waktu_recovery": "01/02/2023 21:46:09", + "durasi_dispatch_time": 110, + "durasi_response_time": 1530, + "durasi_recovery_time": 3329, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "0", + "nama_pelapor": "BP SAIFUL", + "alamat_pelapor": "JL BELLY 2 RT-2 / RW-6 NO.2 KEL PEKAYON KEC PASAR REBO JAKARTA TIMUR ACUAN: DEKAT NASI BUAR", + "no_telp_pelapor": "08979123444", + "keterangan_pelapor": "1 RUMAH PADAM (MCB ON) R1T / 1300 VA", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 13, + "no_laporan": "G5423020122586", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 20:33:56", + "waktu_response": "01/02/2023 20:46:24", + "waktu_recovery": "01/02/2023 20:48:57", + "durasi_dispatch_time": 17, + "durasi_response_time": 748, + "durasi_recovery_time": 901, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Andriko Multiarno", + "alamat_pelapor": "JL KALISARI LAPAN No.103 RT.11 RW.1 PEKAYON", + "no_telp_pelapor": "6287775511157", + "keterangan_pelapor": "ada tulisan periksa", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 14, + "no_laporan": "G5423020122220", + "pembuat_laporan": "CC.54.FUADY", + "waktu_lapor": "01/02/2023 20:20:02", + "waktu_response": "01/02/2023 20:37:16", + "waktu_recovery": "01/02/2023 20:46:01", + "durasi_dispatch_time": 223, + "durasi_response_time": 1034, + "durasi_recovery_time": 1559, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP ANDI MAULANA", + "alamat_pelapor": "JL TANAH MERDEKA NO.2 RT-4 / RW-4 KEL RAMBUTAN KEC CIRACAS JAKTIM. BELAKANG TERMINAL KP RAMBUTAN ", + "no_telp_pelapor": "089631740101", + "keterangan_pelapor": "PELANGGAN TIDAK BISA INPUT TOKEN SETELAH UPDATE VKRN 43 PTL PADAM", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 15, + "no_laporan": "G5223020101373", + "pembuat_laporan": "CC.52.AKBAR_P", + "waktu_lapor": "01/02/2023 19:53:01", + "waktu_response": "01/02/2023 20:12:47", + "waktu_recovery": "01/02/2023 20:18:14", + "durasi_dispatch_time": 189, + "durasi_response_time": 1186, + "durasi_recovery_time": 1513, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP SUYOTO / IBU ", + "alamat_pelapor": "JL GLAMOR RT-4 / RW-7 KEL PEKAYON KEC PASAR REBO KOTA JAKARTA TIMUR > DEKAT ", + "no_telp_pelapor": "6287778500357", + "keterangan_pelapor": "1 RUMAH PADAM MCB DAN SEKRING ON (R1T / 1300 ) SISA KWH 140", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 16, + "no_laporan": "G5423020120810", + "pembuat_laporan": "CC.54.M_SYARIF", + "waktu_lapor": "01/02/2023 19:26:54", + "waktu_response": "01/02/2023 19:40:32", + "waktu_recovery": "01/02/2023 19:45:47", + "durasi_dispatch_time": 222, + "durasi_response_time": 818, + "durasi_recovery_time": 1133, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "IBU RIZQI", + "alamat_pelapor": "PR ADHIGRIYA JL SEPAKAT X NO C1 KEL CIPAYUNG KEC CILANGKAP KOTA JAKARTA TIMUR // DEKAT DENGAN VIVO POM BENSIN", + "no_telp_pelapor": "081285355531", + "keterangan_pelapor": "DISPLAY APP TERTERA PERIKSA (PTL MASIH MENYALA)", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 17, + "no_laporan": "G5323020101457", + "pembuat_laporan": "CC.53.HARIEST", + "waktu_lapor": "01/02/2023 19:26:19", + "waktu_response": "01/02/2023 19:39:38", + "waktu_recovery": "01/02/2023 19:46:48", + "durasi_dispatch_time": 225, + "durasi_response_time": 799, + "durasi_recovery_time": 1229, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP MARUF", + "alamat_pelapor": "JL CILANGKAP BARU NO 20 RT-3 / RW-1 KEL CILANGKAP KEC CIPAYUNG JAKTIM // DEKAT DENGAN ALFAMART", + "no_telp_pelapor": "6281586053371", + "keterangan_pelapor": "LPB PERIKSA PTL MENYALA (PELANGGAN DAPAT DIHUBUNGI KEMBALI MELALUI TELEPON, WA DAN SMS)", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 18, + "no_laporan": "G2323020100281", + "pembuat_laporan": "CC.23.SABAN", + "waktu_lapor": "01/02/2023 19:17:26", + "waktu_response": "01/02/2023 19:42:57", + "waktu_recovery": "01/02/2023 19:53:53", + "durasi_dispatch_time": 73, + "durasi_response_time": 1531, + "durasi_recovery_time": 2187, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP ABDUL", + "alamat_pelapor": "JL. SERUT RT. 003/04 NO. G4 KEC. CIPAYUNG KEL. PONDOK RANGGON JAKARTA TIMUR LOKASI: 300M DARI GANG ", + "no_telp_pelapor": "6285655807735", + "keterangan_pelapor": "2 RUMAH PADAM ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 19, + "no_laporan": "G5423020118605", + "pembuat_laporan": "CC.54.BIMA_AU", + "waktu_lapor": "01/02/2023 18:12:15", + "waktu_response": "01/02/2023 18:38:08", + "waktu_recovery": "01/02/2023 18:39:45", + "durasi_dispatch_time": 117, + "durasi_response_time": 1553, + "durasi_recovery_time": 1650, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "151407", + "nama_pelapor": "IBU AGNES", + "alamat_pelapor": "JL GONGSENG RY GG. H.JIPIN NO 37 - RT-7 / RW-10 KEL CIJANTUNG KEC PASAR REBO JAKARTA TIMUR ACUAN : DEKAT MASJID", + "no_telp_pelapor": "081292767293", + "keterangan_pelapor": "PELANGGAN TIDAK BISA INPUT TOKEN SETELAH UPDATE VKRN 43 SISA KWH 10 (PTL TIDAK PADAM) 35208908073147774204", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 20, + "no_laporan": "G5423020118456", + "pembuat_laporan": "CC.54.M_NOVIYANTO.LC", + "waktu_lapor": "01/02/2023 18:07:53", + "waktu_response": "01/02/2023 18:25:24", + "waktu_recovery": "01/02/2023 18:43:21", + "durasi_dispatch_time": 240, + "durasi_response_time": 1051, + "durasi_recovery_time": 2128, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP MUGI", + "alamat_pelapor": "JL.SANGGING NO.23 RT 12 RW1 KELURAHAN PASIR GUNUNG SELATAN KEC. CIMANGGIS, KOTA DEPOK, JAWA BARAT (DEPAN JL SANGGING 3)\\n", + "no_telp_pelapor": "085700641887", + "keterangan_pelapor": "MOHON PERIKSA DISPLAY APP PRABAYAR ERROR (PTL PADAM)", + "media": "Live Chat PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 21, + "no_laporan": "G5123020101886", + "pembuat_laporan": "CC.51.DOKRI", + "waktu_lapor": "01/02/2023 17:54:06", + "waktu_response": "01/02/2023 18:12:05", + "waktu_recovery": "01/02/2023 18:23:44", + "durasi_dispatch_time": 163, + "durasi_response_time": 1079, + "durasi_recovery_time": 1778, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP WAHYU ", + "alamat_pelapor": "JL. KERAMAT 3 KP CIHERANG NO.10 RT-1 RW-7 KEL. SUKTANI KEC. TAPOS KOTA DEPOK - LOKASI DEKAT PERUMAHAN GAHARU / SMK PENERBANGAN", + "no_telp_pelapor": "082183082134", + "keterangan_pelapor": "APP KETERANGAN PERIKSA - PTL PADAM\\n", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 22, + "no_laporan": "G5423020117848", + "pembuat_laporan": "CC.54.widya_putri", + "waktu_lapor": "01/02/2023 17:47:37", + "waktu_response": "01/02/2023 18:10:54", + "waktu_recovery": "01/02/2023 18:24:24", + "durasi_dispatch_time": 176, + "durasi_response_time": 1397, + "durasi_recovery_time": 2207, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "22101720971", + "nama_pelapor": "BP MAULANA ", + "alamat_pelapor": "JL SWADAYA III PR PURI KENCANA PERMAI 1 BLOK B NO 7 KEL/KEC CIMANGGIS KOTA DEPOK. ( DEKAT PLANET BAN) ", + "no_telp_pelapor": "081288013435", + "keterangan_pelapor": "APP TERTERA PERIKSA ( PTL HAMPIR PADAM ) ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 23, + "no_laporan": "G5223020101064", + "pembuat_laporan": "CC.52.ANGGA.LC", + "waktu_lapor": "01/02/2023 17:35:50", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": null, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "144877", + "nama_pelapor": "BP HARTAWAN ", + "alamat_pelapor": "LAUNDRY SINI JLN SMP 160 NO.26 B RT 07 RW 03 KELURAHAN CEGER, KECAMATAN CIPAYUNG JAKARTA TIMUR DEPAN BIMBEL RIZKA ATAU DIBELAKANG ERAPHON CEGER", + "no_telp_pelapor": "082225558339", + "keterangan_pelapor": "GANGGUAN IML: MCB DI DALAM BANGUNAN RUSAK TIDAK DAPAT DI ONKAN 1, LISTRIK PASCABAYAR. WAKTU KUNJUNGAN\\nYANG DIINGINKAN TGL. 01/02/2023", + "media": "Live Chat PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 24, + "no_laporan": "G5423020117352", + "pembuat_laporan": "cc.54.Sulaeman", + "waktu_lapor": "01/02/2023 17:29:55", + "waktu_response": "01/02/2023 17:47:54", + "waktu_recovery": "01/02/2023 17:57:39", + "durasi_dispatch_time": 181, + "durasi_response_time": 1079, + "durasi_recovery_time": 1664, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "IBU NIKI", + "alamat_pelapor": "JL KALISARI RAYA NO 23 RT-11 / RW-2 KEL KALISARI KEC PASAR REBO JAKTIM : DEKAT TOKO ASEGRI", + "no_telp_pelapor": "081282173022", + "keterangan_pelapor": "1 RUMAH PADAM (DISPLAY APP BLANK SEBELUMNYA TERTERA PERIKSA)", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 25, + "no_laporan": "G3223020100763", + "pembuat_laporan": "CC.32.SUGIARTO01", + "waktu_lapor": "01/02/2023 17:29:37", + "waktu_response": "01/02/2023 17:46:33", + "waktu_recovery": "01/02/2023 18:07:57", + "durasi_dispatch_time": 140, + "durasi_response_time": 1016, + "durasi_recovery_time": 2300, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "0", + "nama_pelapor": "BP WAHYU WIDODO", + "alamat_pelapor": "JL KAMPUNG BARU GG SENTOSA NO 52 RT 11 / RW 09 KEL KLAPA DUA WETAN KEC CIRACAS KOTA JAKARTA TIMUR, DIDEKAT OJEK JENGKOL", + "no_telp_pelapor": "087887696638", + "keterangan_pelapor": "MCB LOSS DAYA 450 VA\\n", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 26, + "no_laporan": "G5323020101186", + "pembuat_laporan": "CC.53.ERWIN", + "waktu_lapor": "01/02/2023 17:19:37", + "waktu_response": "01/02/2023 17:39:29", + "waktu_recovery": "01/02/2023 17:58:03", + "durasi_dispatch_time": 323, + "durasi_response_time": 1192, + "durasi_recovery_time": 2306, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "0", + "nama_pelapor": "BP YUSUF ARIF", + "alamat_pelapor": "JL PEKAYON NO 56A RT7/6 KEL KALISARI KEC PS REBO JAKTIM. ACUAN : DEKAT KOMP BELAKANG BRIGIP / SD 16 PEKAYON ", + "no_telp_pelapor": "087784661597", + "keterangan_pelapor": "KWH LPB MUNCUL PERIKSA. TIDAK BISA INPUT TOKEN. PTL PADAM\\n", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 27, + "no_laporan": "G5123020101684", + "pembuat_laporan": "CC.51.MUZDALIFAH", + "waktu_lapor": "01/02/2023 16:55:11", + "waktu_response": "01/02/2023 17:22:17", + "waktu_recovery": "01/02/2023 17:37:28", + "durasi_dispatch_time": 90, + "durasi_response_time": 1626, + "durasi_recovery_time": 2537, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "IBU SILVI", + "alamat_pelapor": "JL MUALIM NO- RT-6 RW-14 KEL CIBUBUR KEC CIRACAS KOTA JAKARTA TIMUR / LOKASI TOKO SINAR PINGGIR JALAN RAYA, PAGAR HIJAU ", + "no_telp_pelapor": "081317163367", + "keterangan_pelapor": "1 RUMAH VOLTASE TIDAK STABIL (PTL BERKEDIP) SEJAK TADI SIANG DAN SAAT INI SEDANG TERJADI ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 28, + "no_laporan": "G5423020116310", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 16:53:24", + "waktu_response": "01/02/2023 17:25:14", + "waktu_recovery": "01/02/2023 17:36:20", + "durasi_dispatch_time": 221, + "durasi_response_time": 1910, + "durasi_recovery_time": 2576, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Indah Lestary", + "alamat_pelapor": "JL JL EPATIK II RY CENTEX RT3/10 CIRACAS No.0", + "no_telp_pelapor": "6288223910209", + "keterangan_pelapor": "Pada saat Pengisian Token seringkali selalu gagal ", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 29, + "no_laporan": "G5423020116031", + "pembuat_laporan": "CC.54.ANDI_SOSHA", + "waktu_lapor": "01/02/2023 16:42:59", + "waktu_response": "01/02/2023 17:00:50", + "waktu_recovery": "01/02/2023 17:03:39", + "durasi_dispatch_time": 100, + "durasi_response_time": 1071, + "durasi_recovery_time": 1240, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP RIZAL ", + "alamat_pelapor": "GG. UNTUNG SELATAN KP AREMAN RT-5 / RW-5 NO- KEC . CIMANGGIS KEL . TUGU KOTA DEPOK ACUAN LOKASI DEPANSETU PEDONGKELAN ", + "no_telp_pelapor": "08889218171", + "keterangan_pelapor": "APP PRABAYAR DISPLAY TERTERA PERIKSA (PTL PADAM)", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 30, + "no_laporan": "G5423020115785", + "pembuat_laporan": "CC.54.DANDY", + "waktu_lapor": "01/02/2023 16:32:52", + "waktu_response": "01/02/2023 16:57:19", + "waktu_recovery": "01/02/2023 17:15:13", + "durasi_dispatch_time": 311, + "durasi_response_time": 1467, + "durasi_recovery_time": 2541, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "IBU SRI", + "alamat_pelapor": "JL RAYA SENTEK NO 29 RT 11 RW 3 KEL CIRACAS KEC CIRACAS KOTA JAKARTA TIMUR", + "no_telp_pelapor": "082213641119", + "keterangan_pelapor": "BANYAK RUMAH PADAM", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 31, + "no_laporan": "G5423020115758", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 16:31:18", + "waktu_response": "01/02/2023 16:57:31", + "waktu_recovery": "01/02/2023 17:09:41", + "durasi_dispatch_time": 468, + "durasi_response_time": 1573, + "durasi_recovery_time": 2303, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "christopher", + "alamat_pelapor": "JL JAMBORE RT.1 RW.6 HARJAMUKTI", + "no_telp_pelapor": "6285779436426", + "keterangan_pelapor": "tulisan \\\"periksa\\\" terus", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 32, + "no_laporan": "G5423020115549", + "pembuat_laporan": "cc.54.zulkarnain", + "waktu_lapor": "01/02/2023 16:22:59", + "waktu_response": "01/02/2023 16:41:28", + "waktu_recovery": "01/02/2023 17:11:29", + "durasi_dispatch_time": 80, + "durasi_response_time": 1109, + "durasi_recovery_time": 2910, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "1", + "nama_pelapor": "IBU RATNA", + "alamat_pelapor": "JL REMAJA RT-5 / RW-1 NO. 190 KEL PONDOK RANGGON KEC CIPAYUNG JAKTIM LOKASI WARUNG SEMBAKO", + "no_telp_pelapor": "082334484280", + "keterangan_pelapor": "MOHON PERIKSA APP PRABAYAR, DISPLAY BLANK ( PTL HAMPIR PADAM )", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 33, + "no_laporan": "G5423020115469", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 16:19:02", + "waktu_response": "01/02/2023 16:33:33", + "waktu_recovery": "01/02/2023 16:35:34", + "durasi_dispatch_time": 161, + "durasi_response_time": 871, + "durasi_recovery_time": 992, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Diah Ade", + "alamat_pelapor": "JL CARAKA BUANA No. RT.14 RW.3", + "no_telp_pelapor": "628561005362", + "keterangan_pelapor": "kwh meter periksa.gk bisa isi pulsa", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 34, + "no_laporan": "G5423020115364", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 16:14:21", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 13, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "YUDHI PRASETYA", + "alamat_pelapor": "JL JL ATTAUFIQ RT4/12 KLP II WTN", + "no_telp_pelapor": "6289636364776", + "keterangan_pelapor": "mati lampu", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 35, + "no_laporan": "G5423020115113", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 16:03:00", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 305, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Agustina Elizabeth", + "alamat_pelapor": "JL KLP II WETAN RT2/4", + "no_telp_pelapor": "6282122678976", + "keterangan_pelapor": "Listrik rumah dan sekitar saya mati sejak pagi", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 36, + "no_laporan": "G5423020114668", + "pembuat_laporan": "CC.54.JUNIYATI", + "waktu_lapor": "01/02/2023 15:42:35", + "waktu_response": "01/02/2023 16:14:26", + "waktu_recovery": "01/02/2023 16:23:22", + "durasi_dispatch_time": 74, + "durasi_response_time": 1911, + "durasi_recovery_time": 2447, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "0", + "nama_pelapor": "IBU HENI / BP YUSMAN ", + "alamat_pelapor": "JL SUKAMTO 1 KOMPL ZENI AD -4 RT 2/8 NO 4 KEL PEKAYON KEC PASAR REBO KOTA JAK TIM > ", + "no_telp_pelapor": "081316188007", + "keterangan_pelapor": "1 RUMAH PADAM DAYA R2 / 3500 VA \\nPELANGGAN MENGHUBUNGI KEMBALI.CC.52.SANTOSO", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 37, + "no_laporan": "G5323020100998", + "pembuat_laporan": "538.FAHMI", + "waktu_lapor": "01/02/2023 15:34:44", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 232, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": " BP. ASRIADI ", + "alamat_pelapor": "KP.KRAMAT KP. CIHERANG RT 7 RW 05 GG. BAITI JANATI (RUMAH BU MAY) SUKATANI", + "no_telp_pelapor": "082211487679", + "keterangan_pelapor": "GAGAL ISI TOKEN KONDISI PADAM", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 38, + "no_laporan": "G5423020114078", + "pembuat_laporan": "CC.54.yulianingsih", + "waktu_lapor": "01/02/2023 15:17:06", + "waktu_response": "01/02/2023 15:56:53", + "waktu_recovery": "01/02/2023 16:05:24", + "durasi_dispatch_time": 136, + "durasi_response_time": 2387, + "durasi_recovery_time": 2898, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "244717", + "nama_pelapor": "BP BONGOT", + "alamat_pelapor": "JL USMAN NO.3 RT-11 / RW-11KEL KELAPA DUA WETAN KEC CIRACAS KOTA JAKARTA TIMUR LOKASI: DEKAT SMA N 105 ", + "no_telp_pelapor": "082119294023", + "keterangan_pelapor": "1 RUMAH PADAM ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 39, + "no_laporan": "G5423020114053", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 15:15:56", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 10, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Anang Wibowo", + "alamat_pelapor": "JL MASJID NURUL HIDAYA No.0 RT.5 RW.2 KELAPA DUA", + "no_telp_pelapor": "6285777592240", + "keterangan_pelapor": "listrik mati dari jam 13.05 samapi 15m13 bkm nyala tolong ditindak lanjuti", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 40, + "no_laporan": "G5223020100871", + "pembuat_laporan": "CC.52.YUDHA.LC", + "waktu_lapor": "01/02/2023 15:14:38", + "waktu_response": "01/02/2023 15:31:30", + "waktu_recovery": "01/02/2023 15:38:17", + "durasi_dispatch_time": 260, + "durasi_response_time": 1012, + "durasi_recovery_time": 1419, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "49872", + "nama_pelapor": "korintus.splp3i@gmail.com", + "alamat_pelapor": ": JL.PONCOL RT 015/RW 009 NO.73 CIRACAS JAKARTA TIMUR", + "no_telp_pelapor": "081316951370", + "keterangan_pelapor": "1 RUMAH PADAM", + "media": "Email", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 41, + "no_laporan": "G5423020113902", + "pembuat_laporan": "CC.54.widya_putri", + "waktu_lapor": "01/02/2023 15:09:42", + "waktu_response": "01/02/2023 15:36:19", + "waktu_recovery": "01/02/2023 15:52:37", + "durasi_dispatch_time": 159, + "durasi_response_time": 1597, + "durasi_recovery_time": 2575, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "IBU WERDININGSIH", + "alamat_pelapor": "JL KAPITAN 3 NO.74 RT 02/10, KEC TAPOS, KEL SUKATANI .DEPOK. ACUAN : DEKAT KLINIK BIDAN WENTI", + "no_telp_pelapor": "0218743383", + "keterangan_pelapor": "PELANGGAN TIDAK DAPAT INPUT TOKEN SETELAH UPDATE VKRN 43 ( 3.17 KWH ) ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 42, + "no_laporan": "G5323020100931", + "pembuat_laporan": "CC.53.DIRMAN", + "waktu_lapor": "01/02/2023 14:52:35", + "waktu_response": "01/02/2023 15:12:37", + "waktu_recovery": "01/02/2023 15:27:36", + "durasi_dispatch_time": 47, + "durasi_response_time": 1202, + "durasi_recovery_time": 2101, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "0", + "nama_pelapor": "IBU SUBADI", + "alamat_pelapor": "JL. ABDUL MUTOLIB GG. MEDE 2 RT 7 RW 8 NO.8 KEL TUGU KEC. CIMANGGIS KOTA DEPOK. LOKASI KONTRAKAN BAGIAN BELAKANG.", + "no_telp_pelapor": "6285782221018", + "keterangan_pelapor": "LPB KET.000, PTL PADAM ID.PEL 547102868544", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 43, + "no_laporan": "G5423020113174", + "pembuat_laporan": "CC.54.RINO.CSOI", + "waktu_lapor": "01/02/2023 14:35:40", + "waktu_response": "01/02/2023 15:16:41", + "waktu_recovery": "01/02/2023 15:22:09", + "durasi_dispatch_time": 1048, + "durasi_response_time": 2461, + "durasi_recovery_time": 2789, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP JONI", + "alamat_pelapor": "JL SWADAYA 1 KP TIPAR RT2 RW 11 NO 50 KEL MEKARSARI KEC CIMANGGIS KOTA DEPOK JAWA BARAT (ACUAN : DEPAN KOMP MANADO) ", + "no_telp_pelapor": "02122851164", + "keterangan_pelapor": "MOHON TINDAK LANJUT DAN PENYELESAIAN, TGL 1/2/23 TIDAK BISA MELAKUKAN PEMBELIAN TOKEN DENGAN NO METER 14031837074. DAN PADA STATUS P2APST SILAHKAN KIRIM DIL PREPAID KE P2APST !!!. PTL HAMPIR PADAM", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 44, + "no_laporan": "G5423020112751", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 14:16:19", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 160, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "bongot habonaran", + "alamat_pelapor": "Jl. Randu I No.3", + "no_telp_pelapor": "6282119294023", + "keterangan_pelapor": "tadi pagi terjadi pemadaman dan sudah hidup kembali. Dan saat ini terjadi pemadaman kembali", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 45, + "no_laporan": "G5423020112737", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 14:15:39", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": null, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Riska indriani", + "alamat_pelapor": "JL MANUNGGAL No. RT.14 RW.2 CIRACAS", + "no_telp_pelapor": "6285718958119", + "keterangan_pelapor": "ini pemadaman sampe kapan ya tdi pagi udah mati lampu masa mati lampu lgi", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 46, + "no_laporan": "G5423020112649", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 14:11:32", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": null, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Anang Wibowo", + "alamat_pelapor": "JL MASJID NURUL HIDAYA No.0 RT.5 RW.2 KELAPA DUA", + "no_telp_pelapor": "6285777592240", + "keterangan_pelapor": "listrik padam dari jam.13.05 sampai 14.08 blm nyala. tolomg di perbaiki", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 47, + "no_laporan": "G5423020112046", + "pembuat_laporan": "CC.54.RINO.CSOI", + "waktu_lapor": "01/02/2023 13:46:38", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": null, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Selesai(PEMADAMAN MELUAS)", + "is_marking": 1, + "referensi_marking": "G5223020100692", + "idpel_nometer": "", + "nama_pelapor": "IBU WIWI", + "alamat_pelapor": "JL ANGGUR BAWAH 2 KEL KELAPA DUA WETAN KEC CIRACAS JAKTIM ", + "no_telp_pelapor": "081311118399", + "keterangan_pelapor": "BANYAK RUMAH PADAM", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 48, + "no_laporan": "G5423020111722", + "pembuat_laporan": "CC.54.HERMA.CSOI", + "waktu_lapor": "01/02/2023 13:34:06", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 326, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Selesai(PEMADAMAN MELUAS)", + "is_marking": 1, + "referensi_marking": "G5223020100692", + "idpel_nometer": "", + "nama_pelapor": "IBU WIWI", + "alamat_pelapor": "JL ANGGUR BAWAH 2 KEL KELAPA DUA WETAN KEC CIRACAS JAKTIM ", + "no_telp_pelapor": "081311118399", + "keterangan_pelapor": "GANGGUAN BERULANG : G5423020111664, BANYAK RUMAH PADAM ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 49, + "no_laporan": "G5423020111664", + "pembuat_laporan": "CC.54.EPI", + "waktu_lapor": "01/02/2023 13:31:53", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": null, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Selesai(PEMADAMAN MELUAS)", + "is_marking": 1, + "referensi_marking": "G5223020100692", + "idpel_nometer": "", + "nama_pelapor": "IBU WIWI", + "alamat_pelapor": "JL ANGGUR BAWAH 2 KEL KELAPA DUA WETAN KEC CIRACAS JAKTIM ", + "no_telp_pelapor": "081311118399", + "keterangan_pelapor": "BANYAK RUMAH PADAM ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 50, + "no_laporan": "G5123020101130", + "pembuat_laporan": "CC.51.HIDAYATI", + "waktu_lapor": "01/02/2023 13:28:45", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": null, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Selesai(PEMADAMAN MELUAS)", + "is_marking": 1, + "referensi_marking": "G5223020100692", + "idpel_nometer": "", + "nama_pelapor": "IBU LISA ", + "alamat_pelapor": "JL. NAIM USMAN RT 10 RW 11 NO. 17 KEL KELAPADUA WETAN KEC CIRACAS , JAKTIM", + "no_telp_pelapor": "08111802074", + "keterangan_pelapor": "BANYAK RUMAH PADAM / JAM 06.00-10 SUDAH PADAM LALU PADAM KEMBALI PUKUL 13.00", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 51, + "no_laporan": "G5423020111374", + "pembuat_laporan": "CC.54.hastutik", + "waktu_lapor": "01/02/2023 13:18:46", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": null, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Selesai(PEMADAMAN MELUAS)", + "is_marking": 1, + "referensi_marking": "G5223020100692", + "idpel_nometer": "", + "nama_pelapor": "IBU HILDA", + "alamat_pelapor": "JL USMAN NAIM NO 5 RT 10/11 KEL KELAPA DUA WETAN KEC CIRACAS JAKTIM", + "no_telp_pelapor": "081381754422", + "keterangan_pelapor": "BANYAK RUMAH PADAM ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 52, + "no_laporan": "G5423020111042", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 13:02:54", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 804, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Sri Cherly Asih Sitorus", + "alamat_pelapor": "JL KLP 2 WETAN RT 4/12 CIRACAS", + "no_telp_pelapor": "6285795092233", + "keterangan_pelapor": "listrik padam 2x hari ini. mohon dibantu segera karena banyak yg sedang wfh terima kasih", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 53, + "no_laporan": "G5123020101068", + "pembuat_laporan": "CC.51.MALASIANINGSIH", + "waktu_lapor": "01/02/2023 13:01:25", + "waktu_response": "01/02/2023 13:28:41", + "waktu_recovery": "01/02/2023 13:35:00", + "durasi_dispatch_time": 675, + "durasi_response_time": 1636, + "durasi_recovery_time": 2015, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP FADLI", + "alamat_pelapor": "JL- KK IMAH BLOK CC 5 NO 54 RT 2 RW 5 KEL TUGU KEC CIMANGGIS KOTA DEPOK ( DKT LAPANGAN TENIS) ", + "no_telp_pelapor": "08111234209", + "keterangan_pelapor": "PADAM 1 RUMAH, MCB PADA APP OFF, SIKRING ON, PRABAYAR SISA KWH 139.\\nPELANGGAN MENGHUBUNGI KEMBALI, MOHON DITINDAKLANJUTI PETUGAS TERKAIT CC.55.ANDRI", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 54, + "no_laporan": "G5523020100589", + "pembuat_laporan": "CC.55.ERNA", + "waktu_lapor": "01/02/2023 13:00:22", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 505, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Selesai(PEMADAMAN MELUAS)", + "is_marking": 1, + "referensi_marking": "G5223020100692", + "idpel_nometer": "", + "nama_pelapor": "IBU DITA ", + "alamat_pelapor": "JL NAKMALIA GG MELATI 2 RT 5 RW 2 KEL KELAPA DUA WETAN KEC CIRACAS JAKTIM", + "no_telp_pelapor": "6285717943807", + "keterangan_pelapor": "BANYAK RUMAH PADAM", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 55, + "no_laporan": "G5223020100692", + "pembuat_laporan": "CC.52.FIANI", + "waktu_lapor": "01/02/2023 12:58:52", + "waktu_response": "01/02/2023 13:34:04", + "waktu_recovery": "01/02/2023 13:43:19", + "durasi_dispatch_time": 96, + "durasi_response_time": 2112, + "durasi_recovery_time": 2667, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "IBU SERLY ", + "alamat_pelapor": "JL ANGGUR KEL KELAPA DUA WETAN KEC CIRACAS JAKARTA TIMUR ", + "no_telp_pelapor": "6285795092233", + "keterangan_pelapor": "BANYAK BANGUNAN PADAM . HARI INI SUDAH 2 KALI PADAM ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 56, + "no_laporan": "G5423020110892", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 12:57:10", + "waktu_response": "01/02/2023 13:09:45", + "waktu_recovery": "01/02/2023 13:24:34", + "durasi_dispatch_time": 186, + "durasi_response_time": 755, + "durasi_recovery_time": 1644, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "indrawan", + "alamat_pelapor": "KP BABAKAN No.6 RT.3 RW.4", + "no_telp_pelapor": "6281382204166", + "keterangan_pelapor": "kwh meter tulisan periksa", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 57, + "no_laporan": "G5423020110047", + "pembuat_laporan": "CC.54.KUNDERI", + "waktu_lapor": "01/02/2023 12:19:38", + "waktu_response": "01/02/2023 12:40:27", + "waktu_recovery": "01/02/2023 13:04:38", + "durasi_dispatch_time": 174, + "durasi_response_time": 1249, + "durasi_recovery_time": 2700, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP AAT", + "alamat_pelapor": "JL ABDULRAHMAN RT 12/5 NO 30 KEL CIBUBUR KEC CIRACAS JAKTIM ACUAN: DEPAN CAFE TERAS NENEK", + "no_telp_pelapor": "081315311136", + "keterangan_pelapor": "SR TERPUTUS (PTL PADAM)", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 58, + "no_laporan": "G5423020109118", + "pembuat_laporan": "CC.54.JUSNITA_S", + "waktu_lapor": "01/02/2023 11:41:28", + "waktu_response": "01/02/2023 12:04:44", + "waktu_recovery": "01/02/2023 12:29:40", + "durasi_dispatch_time": 133, + "durasi_response_time": 1396, + "durasi_recovery_time": 2892, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP DANU", + "alamat_pelapor": "JL PPA RT-5 / RW-4 KEL CEGER ", + "no_telp_pelapor": "08885955855", + "keterangan_pelapor": "APP TERTERA PERIKSA (PTL PADAM ) ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 59, + "no_laporan": "G5423020109056", + "pembuat_laporan": "CC.54.ASNAH", + "waktu_lapor": "01/02/2023 11:38:16", + "waktu_response": "01/02/2023 12:04:12", + "waktu_recovery": "01/02/2023 12:33:02", + "durasi_dispatch_time": 254, + "durasi_response_time": 1556, + "durasi_recovery_time": 3286, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "192682", + "nama_pelapor": "IBU NURDANIYAH", + "alamat_pelapor": "SETEMPAT RUMAH KONTRAKAN SAKINAH JL WARGA 1 BRT-9 / RW-6 KEL PONDOK RANGGONKEC CIPAYUNG JAKTIM ", + "no_telp_pelapor": "081294148137", + "keterangan_pelapor": "1 RUMAH PADAM (R1T / 1300 VA)", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 60, + "no_laporan": "G5423020108930", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 11:33:49", + "waktu_response": "01/02/2023 12:05:00", + "waktu_recovery": "01/02/2023 12:16:55", + "durasi_dispatch_time": 9, + "durasi_response_time": 1871, + "durasi_recovery_time": 2586, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Hendro", + "alamat_pelapor": "JL JL PERTENGAHAN RT4/3 CIJANTUNG", + "no_telp_pelapor": "6288210530498", + "keterangan_pelapor": "tidak bisa isi token listrik di kwh ada tulisan periksa", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 61, + "no_laporan": "G5223020100533", + "pembuat_laporan": "CC.52.AMELIA", + "waktu_lapor": "01/02/2023 11:05:03", + "waktu_response": "01/02/2023 11:31:34", + "waktu_recovery": "01/02/2023 11:56:34", + "durasi_dispatch_time": 97, + "durasi_response_time": 1591, + "durasi_recovery_time": 3091, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP TITO", + "alamat_pelapor": "JL CIPAYUNG SETU GG WASIS RT-9 / RW-4 NO 58 KEL CIPAYUNG KEC CIPAYUNG KOTA JAKARTA TIMUR // ACUAN : MASUK GANG ", + "no_telp_pelapor": "6285691939447", + "keterangan_pelapor": "APP PERIKSA, PTL PADAM.", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 62, + "no_laporan": "G5423020107577", + "pembuat_laporan": "CC.54.EVI_KURNIASIH", + "waktu_lapor": "01/02/2023 10:41:22", + "waktu_response": "01/02/2023 11:04:00", + "waktu_recovery": "01/02/2023 11:05:20", + "durasi_dispatch_time": 654, + "durasi_response_time": 1358, + "durasi_recovery_time": 1438, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "0", + "nama_pelapor": "BP SUYANTO ", + "alamat_pelapor": "JL PKP NO 26 RT 2 RW 12 KEL KELAPA DUA WETAN KEC CIRACAS JAKTIM. DEKAT MASJID ", + "no_telp_pelapor": "089612102258", + "keterangan_pelapor": "APP PRABAYAR PERIKSA ( PTL TIDAK PADAM )", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 63, + "no_laporan": "G5123020100685", + "pembuat_laporan": "CC.51.FITRIDY", + "waktu_lapor": "01/02/2023 10:21:43", + "waktu_response": "01/02/2023 10:38:50", + "waktu_recovery": "01/02/2023 10:48:54", + "durasi_dispatch_time": 393, + "durasi_response_time": 1027, + "durasi_recovery_time": 1631, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "IBU DEWI ", + "alamat_pelapor": "JL AKSES BLOK UI NO 6 RT 2 RW 9 PR- KEL TUGU KEC CIMANGGIS KOTA DEPOK . DEKAT KAMPUS GUNA DARMA", + "no_telp_pelapor": "087789320024", + "keterangan_pelapor": "LPB KET.PERIKSA .TIDAK BS ENTRY TOKEN. PTL NYALA .NM 86088693501. TELAH SELF DIAGNOSIS- 087789320024 BISA DIHUB VIA WA\\n", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 64, + "no_laporan": "G5423020106951", + "pembuat_laporan": "CC.54.D_ISLAMIYAH", + "waktu_lapor": "01/02/2023 10:18:38", + "waktu_response": "01/02/2023 10:56:56", + "waktu_recovery": "01/02/2023 11:04:51", + "durasi_dispatch_time": 192, + "durasi_response_time": 2298, + "durasi_recovery_time": 2773, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "01107737130", + "nama_pelapor": "BP SRIDIWIATNO ", + "alamat_pelapor": "JL H KAMET NO 11 RT 16/9 KEL PEKAYON KEC PASAR REBO JAKTIM// BALAI BESAR KIMA KEMASAN ", + "no_telp_pelapor": "08121005601", + "keterangan_pelapor": "APP BLANK (PTL PADAM)", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 65, + "no_laporan": "G5423020106730", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 10:10:26", + "waktu_response": "01/02/2023 10:25:10", + "waktu_recovery": "01/02/2023 10:30:18", + "durasi_dispatch_time": 34, + "durasi_response_time": 884, + "durasi_recovery_time": 1192, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Yunardi Syam", + "alamat_pelapor": "PR PD NURUL FIKRI KAV RUKO No.R6 RT.7 RW.7 TUGU", + "no_telp_pelapor": "6285777627011", + "keterangan_pelapor": "meteran tulisan periksa", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 66, + "no_laporan": "G5223020100447", + "pembuat_laporan": "CC.52.ATIKA", + "waktu_lapor": "01/02/2023 10:08:56", + "waktu_response": "01/02/2023 10:58:40", + "waktu_recovery": "01/02/2023 11:06:49", + "durasi_dispatch_time": 110, + "durasi_response_time": 2984, + "durasi_recovery_time": 3473, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "IBU SOFITA", + "alamat_pelapor": "JL KENANGA NO.99 RT-1 / RW-1 KEL BAMBU APUS KEC - JAKTIM LOKASI DI DEKAT ALFIMIDI", + "no_telp_pelapor": "087881454154", + "keterangan_pelapor": "APP TERTERA PERIKSA DAN PTL NORMAL \\n", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 67, + "no_laporan": "G5123020100642", + "pembuat_laporan": "CC.51.FITRIDY", + "waktu_lapor": "01/02/2023 10:07:18", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": null, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BU PURWANTI", + "alamat_pelapor": "JL RY SETU NO 0 RT/RW03/03 KEL SETU KEC CIPAYUNG KOTA JAKTIM.DEKAT INDOMARET JL RY HAMKAM", + "no_telp_pelapor": "081210576204", + "keterangan_pelapor": "LISTRIQU: PADAM 1 RUMAH . MCB PLN ON-SEKRING DLM OFF TIDAK BS DIONKAN/KONSLETING ,PASCABAYAR INGIN DI DATANGI TGL 1/2/2023 BERSEDIA DIKENAKAN BIAYA.GANGGUAN IML.", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 68, + "no_laporan": "G5123020100639", + "pembuat_laporan": "cc.51.ROSITA", + "waktu_lapor": "01/02/2023 10:06:14", + "waktu_response": "01/02/2023 10:33:14", + "waktu_recovery": "01/02/2023 10:39:01", + "durasi_dispatch_time": 398, + "durasi_response_time": 1620, + "durasi_recovery_time": 1967, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP DEDDY SANTOSO ", + "alamat_pelapor": "JL PESONA KALISARI RAYA NO 80 RT-7 RW-1 KEL KALISARI KEC PASAR REBO JAKTIM/ POS SATPAM ", + "no_telp_pelapor": "08111734496", + "keterangan_pelapor": "SR KENDOR (PTL MENYALA)", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 69, + "no_laporan": "G5423020106594", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 10:04:47", + "waktu_response": "01/02/2023 10:19:52", + "waktu_recovery": "01/02/2023 10:22:57", + "durasi_dispatch_time": 65, + "durasi_response_time": 905, + "durasi_recovery_time": 1090, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Suna Rdi", + "alamat_pelapor": "JL RY.LAVAN PEKAYON. No.00 RT.10 RW.1 PEKAYON.", + "no_telp_pelapor": "6281213324629", + "keterangan_pelapor": "Dengan hormat. kpd pimpinan Pln area ciracas. dengan ini kami laporkan . bahwa kwh listrik di tempat kami tidak bisa isi pulsa.\\ndan ada tulisan periksa. terus lampu uda padam. Demikianlah. mohon segera di tindaklanjuti. ", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 70, + "no_laporan": "G5523020100366", + "pembuat_laporan": "CC.55.ARIYANTI", + "waktu_lapor": "01/02/2023 10:01:33", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 248, + "durasi_response_time": 1553, + "durasi_recovery_time": 1553, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP MUHAMMAD YASIN", + "alamat_pelapor": "RUKO TIMESQUARE BLOK B2 NO.6 JL ALTERNATIF CIBUBUR KEL JATIKARYA KEC JATISAMPURNA KAB BEKASI LOKASI DEPAN LOBY PINTU MASUK ACE HARDWARE ", + "no_telp_pelapor": "6281617334046", + "keterangan_pelapor": "APP PRABAYAR TERTERA PERIKSA (PTL TIDAK PADAM) NO METER : 32190244304 ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 71, + "no_laporan": "G5223020100436", + "pembuat_laporan": "CC.52.FIRA", + "waktu_lapor": "01/02/2023 10:00:01", + "waktu_response": "01/02/2023 10:24:44", + "waktu_recovery": "01/02/2023 10:58:26", + "durasi_dispatch_time": 319, + "durasi_response_time": 1483, + "durasi_recovery_time": 3505, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BU MUSLIHATUN ", + "alamat_pelapor": "JL ANGSSA NO 76 RT 09 RW 03 KEL CIBUBUR KEC CIRACAS KAB/KOTA JAKARTA TIMUR ACUAN SAMPING SMA99", + "no_telp_pelapor": "6283893713422", + "keterangan_pelapor": "KWH METER TERTERA PERIKSA PTL PADAM MCB ON PELANGAN TIDAK BISA MELAKUKAN SELF DIAGNOSIS KARENA SEDANG MEMEGANG ANAK BAYI ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 72, + "no_laporan": "G5423020106298", + "pembuat_laporan": "CC.54.MAFTUH.LC", + "waktu_lapor": "01/02/2023 09:54:29", + "waktu_response": "01/02/2023 10:31:46", + "waktu_recovery": "01/02/2023 10:50:10", + "durasi_dispatch_time": 662, + "durasi_response_time": 2237, + "durasi_recovery_time": 3341, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP OKTA", + "alamat_pelapor": "JL BEXMAN RT 10/4 NO 79 KEL CIPAYUNG KEC CIPAYUNG JAKTIM. ACUAN LOKASI BELAKANG PUSKESMAS CIPAYUNG ", + "no_telp_pelapor": "081310403355", + "keterangan_pelapor": "DISPLAY PADA APP TERTERA PERIKSA, PELANGGAN BERADA DI LOKASI ( LISTRIK MASIH MENYALA )", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 73, + "no_laporan": "G5423020106167", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 09:49:58", + "waktu_response": "01/02/2023 10:29:53", + "waktu_recovery": "01/02/2023 10:36:23", + "durasi_dispatch_time": 618, + "durasi_response_time": 2395, + "durasi_recovery_time": 2785, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Adi irwan", + "alamat_pelapor": "JL RAYA SUCI No. RT.10 RW.3 SUSUKAN", + "no_telp_pelapor": "6288210530498", + "keterangan_pelapor": "periksa", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 74, + "no_laporan": "G1223020100124", + "pembuat_laporan": "CC.12.CITRA", + "waktu_lapor": "01/02/2023 09:38:41", + "waktu_response": "01/02/2023 10:03:56", + "waktu_recovery": "01/02/2023 10:12:46", + "durasi_dispatch_time": 228, + "durasi_response_time": 1515, + "durasi_recovery_time": 2045, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "14025929390", + "nama_pelapor": "IBU HAURA", + "alamat_pelapor": "PR PERMATA ARCADIA MASJID BLK I NO. 2 JL BERLIAN RT 1 RW 23 KEL SUKATANI KEC TAPOS KOTA DEPOK ACUAN DISAMPING MESJID ", + "no_telp_pelapor": "6285780056039", + "keterangan_pelapor": "APP TERTERA PERIKSA (PTL TIDAK PADAM ) PELANGGAN DAPAT DIHUBUNGI VIA TELEPON, WA & SMS", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 75, + "no_laporan": "G5423020105776", + "pembuat_laporan": "CC.54.NURHAJIZAH.CSOI", + "waktu_lapor": "01/02/2023 09:35:32", + "waktu_response": "01/02/2023 10:14:12", + "waktu_recovery": "01/02/2023 10:27:22", + "durasi_dispatch_time": 250, + "durasi_response_time": 2320, + "durasi_recovery_time": 3110, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP WAWAN ", + "alamat_pelapor": "JL RUKUN 1 NO 42B RT 006/08 KEL PEKAYON KEC PASAR REBO JAKTIM ACUAN LOKASI DEKAT TOWER", + "no_telp_pelapor": "082122239607", + "keterangan_pelapor": "MOHON BANTUAN PEMBELIAN TOKEN (PTL PADAM) TERKAIT G5423020104437", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 76, + "no_laporan": "G5423020105691", + "pembuat_laporan": "CC.54.PURWATI", + "waktu_lapor": "01/02/2023 09:32:22", + "waktu_response": "01/02/2023 09:55:27", + "waktu_recovery": "01/02/2023 10:04:21", + "durasi_dispatch_time": 358, + "durasi_response_time": 1385, + "durasi_recovery_time": 1919, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "0463291", + "nama_pelapor": "IBU NONONG", + "alamat_pelapor": "PERUM TAMAN LAGUNA JL TAMAN LAGUNA BLOK N1 NO.15 RT-3 / RW-14 KEL/KEC JATI SAMPURNA KOTA BEKASI. LAPANGAN TENIS ", + "no_telp_pelapor": "0895411953725", + "keterangan_pelapor": "APP TERTERA PERIKSA (PTL PADAM)", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 77, + "no_laporan": "G5423020105673", + "pembuat_laporan": "CC.54.RINO.CSOI", + "waktu_lapor": "01/02/2023 09:31:37", + "waktu_response": "01/02/2023 10:14:24", + "waktu_recovery": "01/02/2023 10:30:23", + "durasi_dispatch_time": 303, + "durasi_response_time": 2567, + "durasi_recovery_time": 3526, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "IBU YULI", + "alamat_pelapor": "JL RAYA PONCOL NO 18 RT-7 / RW-9 KEL CIRACAS JAKTIM (AYAM BAKAR EXCO) DEKAT AIRLANGGA", + "no_telp_pelapor": "081282196831", + "keterangan_pelapor": "1 RUMAH PADAM APP BLANK", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 78, + "no_laporan": "G5423020105409", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 09:23:04", + "waktu_response": "01/02/2023 10:00:11", + "waktu_recovery": "01/02/2023 10:20:47", + "durasi_dispatch_time": 109, + "durasi_response_time": 2227, + "durasi_recovery_time": 3463, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "AGUS", + "alamat_pelapor": "JL KP BABAKAN RT10/2", + "no_telp_pelapor": "62895410754990", + "keterangan_pelapor": "listrik sy mati tetangga nyala", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 79, + "no_laporan": "G5423020104995", + "pembuat_laporan": "CC.54.SUSILAWATI123", + "waktu_lapor": "01/02/2023 09:07:44", + "waktu_response": "01/02/2023 09:45:58", + "waktu_recovery": "01/02/2023 09:49:27", + "durasi_dispatch_time": 488, + "durasi_response_time": 2294, + "durasi_recovery_time": 2503, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP SYAMSUDIN", + "alamat_pelapor": "SETEMPAT EX TEMPAT POOL TAKSI JL RAYA PEKAPURAN PERUM GRAND TABEBUYA CIMANGGIS BLOK B NO. 9 RT 01/ 05 KEL CURUG KEC CIMAMNGIS KOTA DEPOK ( DEPAN PABRIK POMPA ).", + "no_telp_pelapor": "082111030313", + "keterangan_pelapor": "MCB RUSAK DAYA 2200 VA", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 80, + "no_laporan": "G5423020104599", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 08:52:37", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 842, + "durasi_response_time": 1497, + "durasi_recovery_time": 1497, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Nurul Cahya Umam", + "alamat_pelapor": "JL KELAPA DUA No. RT.7 RW.11 TUGU", + "no_telp_pelapor": "6281218197308", + "keterangan_pelapor": "ada gambar tangan dan bacaan periksa saat isi token.", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 81, + "no_laporan": "G5423020104437", + "pembuat_laporan": "CC.54.MAFI", + "waktu_lapor": "01/02/2023 08:45:26", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 82, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP WAWAN ", + "alamat_pelapor": "JL RUKUN 1 NO 42B KEL PEKAYON RT 006/08 KEC PASAR REBO JAKTIM ACUAN LOKASI DEKAT TOWER", + "no_telp_pelapor": "082122239607", + "keterangan_pelapor": "MOHON BANTUAN PEMBELIAN TOKEN (PTL PADAM)", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 82, + "no_laporan": "G5423020104231", + "pembuat_laporan": "CC.54.AL_MIRA", + "waktu_lapor": "01/02/2023 08:36:29", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 305, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Selesai(PEMADAMAN MELUAS)", + "is_marking": 1, + "referensi_marking": "G5523020100067", + "idpel_nometer": "", + "nama_pelapor": "BP SITORUS ", + "alamat_pelapor": "JL ANGGUR RT 12 RW 12 KEL KELAPA DUA WETAN KEC CIRACAS KOTA JAKARTA TIMUR ", + "no_telp_pelapor": "0811885607", + "keterangan_pelapor": "BANYAK RUMAH PADAM ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 83, + "no_laporan": "G5423020104169", + "pembuat_laporan": "CC.54.NURHAJIZAH.CSOI", + "waktu_lapor": "01/02/2023 08:33:35", + "waktu_response": "01/02/2023 08:52:35", + "waktu_recovery": "01/02/2023 09:01:28", + "durasi_dispatch_time": 595, + "durasi_response_time": 1140, + "durasi_recovery_time": 1673, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP TARDI ", + "alamat_pelapor": "JL CENGKEH 4 RT-7 / RW-10 NO 11A KEL PEKAYON KEC PASAR REBO JAKTIM ", + "no_telp_pelapor": "085218427040", + "keterangan_pelapor": "APP PRABAYAR DISPLAY TERTERA PERIKSA (PTL TIDAK PADAM)", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 84, + "no_laporan": "G5423020104073", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 08:28:39", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": null, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Selesai(PEMADAMAN MELUAS)", + "is_marking": 1, + "referensi_marking": "J5423020100002", + "idpel_nometer": "", + "nama_pelapor": "danang ahmadi", + "alamat_pelapor": "Jl. Naimusmah No.16", + "no_telp_pelapor": "628567808892", + "keterangan_pelapor": "mati lampu sudah 1jam lebih tolong segera di hidupkan lagi karena saya mempunyai peliharaan yang membutuhkan listrik.trimakasih", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 85, + "no_laporan": "G5423020103059", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 07:41:17", + "waktu_response": "01/02/2023 08:13:45", + "waktu_recovery": "01/02/2023 08:35:11", + "durasi_dispatch_time": 15, + "durasi_response_time": 1948, + "durasi_recovery_time": 3234, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Anang Wibowo", + "alamat_pelapor": "JL MASJID NURUL HIDAYA No.0 RT.5 RW.2 KELAPA DUA", + "no_telp_pelapor": "6285777592240", + "keterangan_pelapor": "listrik padam dari jam 05.40 sd 07.38 banyak rumah. samapi skrmg blm hidup k3mbali. tolong segera ditangani", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 86, + "no_laporan": "G5423020103015", + "pembuat_laporan": "CC.54.EKA.CSOI", + "waktu_lapor": "01/02/2023 07:39:03", + "waktu_response": "01/02/2023 08:14:56", + "waktu_recovery": "01/02/2023 08:19:32", + "durasi_dispatch_time": 314, + "durasi_response_time": 2153, + "durasi_recovery_time": 2429, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "IBU DIN", + "alamat_pelapor": "JL. HAJI MIUN NO.97 RT. 1 RW 2 KEL KALISARI KEC. PASAR REBO JAKTIM, SEBERANG CAFE LAW COFFE ", + "no_telp_pelapor": "082112050265", + "keterangan_pelapor": "MCB LEMAH DAYA 1.300 VA ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 87, + "no_laporan": "G5423020102483", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 07:06:33", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 2274, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Riska indriani", + "alamat_pelapor": "JL MANUNGGAL No. RT.14 RW.2 CIRACAS", + "no_telp_pelapor": "6285718958119", + "keterangan_pelapor": "mohon info pemadaman sampai jam berapa ya", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 88, + "no_laporan": "G5423020102482", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 07:06:32", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 2246, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "YUDHI PRASETYA", + "alamat_pelapor": "JL JL ATTAUFIQ RT4/12 KLP II WTN", + "no_telp_pelapor": "6289636364776", + "keterangan_pelapor": "mati listrik", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 89, + "no_laporan": "G5223020100137", + "pembuat_laporan": "CC.52.DEWI_R", + "waktu_lapor": "01/02/2023 06:40:05", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 314, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "IBU PRIMASARI", + "alamat_pelapor": "JL MASJID AT TAUFIQ KEL KELAPA DUA WETAN KEC CIRACAS KOTA JAKTIM", + "no_telp_pelapor": "081999811868", + "keterangan_pelapor": "1 WILAYAH PADAM", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 90, + "no_laporan": "G5523020100115", + "pembuat_laporan": "CC.55.JAMAL", + "waktu_lapor": "01/02/2023 06:35:54", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 460, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP BONGOT", + "alamat_pelapor": "JL. RANDU 1 NO. 3 RT 11 RW 11 KEL KELAPA DUA WETAN KEC CIRACAS KOTA JAKARTA TIMUR LOKASI: DEKAT SMP 9", + "no_telp_pelapor": "082119294023", + "keterangan_pelapor": "1 RUMAH PADAM (PASCABAYAR)", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 91, + "no_laporan": "G5423020101905", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 06:21:13", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 7, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Anang Wibowo", + "alamat_pelapor": "JL MASJID NURUL HIDAYA No.0 RT.5 RW.2 KELAPA DUA", + "no_telp_pelapor": "6285777592240", + "keterangan_pelapor": "listrik padam banyak rumah sudah 20 menit", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 92, + "no_laporan": "G5423020101661", + "pembuat_laporan": "CC.54.BASITH_N", + "waktu_lapor": "01/02/2023 05:58:58", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 304, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP ALDO", + "alamat_pelapor": "JL. USMAN MAIL RT 12 RW 11 NO.77 KEL. KELAPA DUA WETAN KEC. CIRACAS KOTA JAKTIM. / DKT GARDU GANTUNG.", + "no_telp_pelapor": "081388372558", + "keterangan_pelapor": "BANYAK RUMAH PADAM DAN ADA DENTUMAN", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 93, + "no_laporan": "G5523020100067", + "pembuat_laporan": "CC.55.SUMIATI", + "waktu_lapor": "01/02/2023 05:57:02", + "waktu_response": "01/02/2023 06:18:55", + "waktu_recovery": null, + "durasi_dispatch_time": 50, + "durasi_response_time": 1313, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "BP ANAL ", + "alamat_pelapor": "JL MANUNGGAL RT 05 RW 02 KEL KELAPA DUA WETAN KEC CIRACAS JAKARTA TIMUR ", + "no_telp_pelapor": "6285777592240", + "keterangan_pelapor": "BANYAK RUMAH PADAM ", + "media": "Call PLN 123", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 94, + "no_laporan": "G5423020101612", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 05:54:33", + "waktu_response": null, + "waktu_recovery": null, + "durasi_dispatch_time": 3, + "durasi_response_time": null, + "durasi_recovery_time": null, + "status_akhir": "Dibatalkan", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Raihana S. Rahmahadi", + "alamat_pelapor": "JL BKT RAFLESIA N8-16", + "no_telp_pelapor": "6282138889101", + "keterangan_pelapor": "listrik turun lagi setelah diganti mcb oleh petugas jam 1 malam", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 95, + "no_laporan": "G5423020101461", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 05:38:02", + "waktu_response": "01/02/2023 05:48:13", + "waktu_recovery": "01/02/2023 05:54:06", + "durasi_dispatch_time": 177, + "durasi_response_time": 611, + "durasi_recovery_time": 964, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Junaedi Muntoro", + "alamat_pelapor": "PR BKT GOLF ARCADIA BLK G.06 No.5 CBBR", + "no_telp_pelapor": "628111588806", + "keterangan_pelapor": "Mohon bantuan isi token PLN 3214732093\\n\\nPT. KARYA CANTIKA KUSUMA\\n\\nBukit Golf Riverside\\nKluster Arcadia Blok G6/5\\nBojong Nangka Gunung Putri Bogor\\n\\nGagal isi Tokel Tertera Meteran TERPERIKSA.\\n\\nMOHON BANTUAN PAK..", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 96, + "no_laporan": "G5423020100985", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 03:09:50", + "waktu_response": "01/02/2023 03:42:40", + "waktu_recovery": "01/02/2023 03:49:35", + "durasi_dispatch_time": 459, + "durasi_response_time": 1970, + "durasi_recovery_time": 2385, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Risky Ariyanto", + "alamat_pelapor": "JL JANKES AD No. RT.7 RW.2", + "no_telp_pelapor": "6285240208016", + "keterangan_pelapor": "gagal isi token dan di meteran ada tulisan Periksa", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + }, + { + "id": 97, + "no_laporan": "G5423020100150", + "pembuat_laporan": "PLNMOBILE", + "waktu_lapor": "01/02/2023 00:16:17", + "waktu_response": "01/02/2023 00:56:28", + "waktu_recovery": "01/02/2023 01:00:37", + "durasi_dispatch_time": 95, + "durasi_response_time": 2411, + "durasi_recovery_time": 2660, + "status_akhir": "Selesai", + "is_marking": 0, + "referensi_marking": null, + "idpel_nometer": "", + "nama_pelapor": "Raihana S. Rahmahadi", + "alamat_pelapor": "JL BKT RAFLESIA N8-16", + "no_telp_pelapor": "6282138889101", + "keterangan_pelapor": "MCB LEMAH DAYA RI/2200VA. SESUAI INFO PELANGGAN SUDAH ADA PETUGAS YANG MENGHUBUNGI DIINFORMASIKAN AKAN ADA PETUGAS YANG DATANG KE LOKASI.", + "media": "PLN Mobile", + "nama_posko": "POSKO CIRACAS", + "jarak_closing": 1, + "dispatch_oleh": "AUTODISPATCH", + "diselesaikan_oleh": "", + "penyebab": "", + "tindakan": "", + "kode_gangguan": "", + "jenis_gangguan": "" + } + ], rekapitulasiPerJenisGangguan: [ { "kode": 1,
+ {{ data.text }} +
{{ parseInt(data.text) ? formatWaktu(data.text) : '-' }} @@ -185,38 +255,41 @@