Remove unused code and comments
This commit is contained in:
@ -336,7 +336,6 @@ import { saveAs } from 'file-saver'
|
||||
import { Workbook } from 'exceljs'
|
||||
import { useQuery } from '@vue/apollo-composable'
|
||||
import { queries } from '@/utils/api/api.graphql'
|
||||
import { dummyData } from '@/utils/dummy'
|
||||
import { formatNumber, formatPercentage, isNumber } from '@/utils/numbers'
|
||||
import autoTable from 'jspdf-autotable'
|
||||
|
||||
@ -626,7 +625,92 @@ const reportMeta = ref({
|
||||
|
||||
onMounted(() => {
|
||||
if (import.meta.env.DEV) {
|
||||
data.value = dummyData.keluhan.daftar.daftarKeluhanResponseTime
|
||||
data.value = [
|
||||
{
|
||||
no_laporan: 'K5423020100006',
|
||||
waktu_lapor: '01/02/2023 00:01:23',
|
||||
waktu_response: '01/02/2023 00:01:59',
|
||||
waktu_recovery: '01/02/2023 00:02:52',
|
||||
durasi_response_time: 36,
|
||||
durasi_recovery_time: 53,
|
||||
status_akhir: 'Selesai',
|
||||
idpel_nometer: '',
|
||||
nama_pelapor: 'Doni',
|
||||
alamat_pelapor: 'JL KH WASYID NO 119 CILEGON No.0 RT.0 RW.0 CILEGON',
|
||||
no_telp_pelapor: '62895391110909',
|
||||
keterangan_pelapor: 'mohon info terkait prediksi pemakaian tenaga listrik',
|
||||
media: 'PLN Mobile',
|
||||
nama_ulp: 'ULP PRIMA KRAKATAU (TT/TM)'
|
||||
},
|
||||
{
|
||||
no_laporan: 'K5423020100030',
|
||||
waktu_lapor: '01/02/2023 00:10:39',
|
||||
waktu_response: '01/02/2023 01:17:31',
|
||||
waktu_recovery: '01/01/1970 00:00:00',
|
||||
durasi_response_time: 4012,
|
||||
durasi_recovery_time: 33978014,
|
||||
status_akhir: 'Dalam Proses Bidang Unit',
|
||||
idpel_nometer: '',
|
||||
nama_pelapor: 'wulan',
|
||||
alamat_pelapor: 'DS OELETA No. RT.3 RW.2 ALAK',
|
||||
no_telp_pelapor: '6285788900596',
|
||||
keterangan_pelapor:
|
||||
'MUTASI_K (G9923020187809:pemeriksaan ) - pulsa meter su babunyi .ketong isi gagal terus . apa bisa di konfirmasi kenapa begitu ',
|
||||
media: 'PLN Mobile',
|
||||
nama_ulp: 'ULP KUPANG'
|
||||
},
|
||||
{
|
||||
no_laporan: 'K5423020100045',
|
||||
waktu_lapor: '01/02/2023 00:16:57',
|
||||
waktu_response: '01/02/2023 00:19:40',
|
||||
waktu_recovery: '01/01/1970 00:00:00',
|
||||
durasi_response_time: 163,
|
||||
durasi_recovery_time: 33981485,
|
||||
status_akhir: 'Dalam Proses Bidang Unit',
|
||||
idpel_nometer: '',
|
||||
nama_pelapor: 'veri susanto',
|
||||
alamat_pelapor: 'JL NURUL HUDA KOMP TERAS HOKILAND No.A6 RT.2 RW.3 DS KAPUR',
|
||||
no_telp_pelapor: '6282150235722',
|
||||
keterangan_pelapor:
|
||||
'MUTASI_K (G9923020187794:cek kwh) - tidak bisa membeli vocer listrik,vocer listrik sudah mau habis',
|
||||
media: 'PLN Mobile',
|
||||
nama_ulp: 'ULP SIANTAN'
|
||||
},
|
||||
{
|
||||
no_laporan: 'K5423020100062',
|
||||
waktu_lapor: '01/02/2023 00:29:48',
|
||||
waktu_response: '01/02/2023 01:08:45',
|
||||
waktu_recovery: '01/01/1970 00:00:00',
|
||||
durasi_response_time: 2337,
|
||||
durasi_recovery_time: 33978540,
|
||||
status_akhir: 'Dalam Proses Bidang Unit',
|
||||
idpel_nometer: '',
|
||||
nama_pelapor: 'Diki wahyudi',
|
||||
alamat_pelapor: 'jl Galunggung amansari RT. 01 rw 01',
|
||||
no_telp_pelapor: '6285770967966',
|
||||
keterangan_pelapor:
|
||||
'MUTASI_K (G9923020187796:token gagal) - token di masukan keterangan gagal',
|
||||
media: 'PLN Mobile',
|
||||
nama_ulp: 'ULP RENGASDENGKLOK'
|
||||
},
|
||||
{
|
||||
no_laporan: 'K5423020100089',
|
||||
waktu_lapor: '01/02/2023 00:45:30',
|
||||
waktu_response: '01/02/2023 01:00:27',
|
||||
waktu_recovery: '01/02/2023 07:53:08',
|
||||
durasi_response_time: 897,
|
||||
durasi_recovery_time: 24761,
|
||||
status_akhir: 'Selesai',
|
||||
idpel_nometer: '',
|
||||
nama_pelapor: 'SAHABATJAKARTA',
|
||||
alamat_pelapor: 'Stasiun Jln. Nyi Raja Permas',
|
||||
no_telp_pelapor: '6281210701126',
|
||||
keterangan_pelapor:
|
||||
'NO AGENDA 538319912301199708\\nMOHON PERCEPATAN PASANG BARU ATAS NAMA CFC ST KA BOGOR..KARNA HARI RABU 1 FEBRUARI 2023 GERAI TERSEBUT MAU GRAND OPENING *5 MOHON DAPAT PRIORITAS INVESTASI KAMI DI KOTA BOGOR TSB TKSH',
|
||||
media: 'PLN Mobile',
|
||||
nama_ulp: 'ULP BOGOR KOTA'
|
||||
}
|
||||
]
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user