Remove unused code and comments

This commit is contained in:
Dede Fuji Abdul
2024-03-27 13:10:22 +07:00
parent 4bcddbf2f1
commit 9446c89b09
26 changed files with 2878 additions and 586864 deletions

View File

@ -318,7 +318,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 autoTable from 'jspdf-autotable'
const position = { of: '#data' }
@ -607,7 +606,92 @@ const reportMeta = ref({
onMounted(() => {
if (import.meta.env.DEV) {
data.value = dummyData.keluhan.daftar.daftarKeluhanRecoveryTime
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: 33977641,
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: 33981112,
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: 33978167,
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>