544 lines
18 KiB
Vue
Executable File
544 lines
18 KiB
Vue
Executable File
<template>
|
|
<Filters @reset-form="data = []" @run-search="() => filterData(filters)" class="mb-4">
|
|
<Type3 @update:filters="(value) => (filters = value)" />
|
|
</Filters>
|
|
|
|
<div id="data">
|
|
<DxDataGrid
|
|
ref="dataGridRef"
|
|
:allow-column-reordering="true"
|
|
class="max-h-[calc(100vh-140px)] mb-10"
|
|
:data-source="data"
|
|
:show-column-lines="true"
|
|
:show-row-lines="false"
|
|
:show-borders="true"
|
|
:row-alternation-enabled="true"
|
|
:hover-state-enabled="true"
|
|
@selection-changed="onSelectionChanged"
|
|
:column-width="100"
|
|
@exporting="onExporting"
|
|
:allow-column-resizing="true"
|
|
column-resizing-mode="widget"
|
|
:word-wrap-enabled="false"
|
|
>
|
|
<DxSelection mode="single" />
|
|
<DxPaging :page-size="20" :enabled="true" />
|
|
<DxPager
|
|
:visible="true"
|
|
:allowed-page-sizes="[20, 50, 100]"
|
|
display-mode="full"
|
|
:show-page-size-selector="true"
|
|
:show-info="true"
|
|
:show-navigation-buttons="true"
|
|
/>
|
|
<DxLoadPanel
|
|
shading-color="rgba(0,0,0,0.4)"
|
|
:position="position"
|
|
:show-indicator="showIndicator"
|
|
:show-pane="showPane"
|
|
:shading="shading"
|
|
v-if="loading"
|
|
v-model:visible="loading"
|
|
:enabled="true"
|
|
/>
|
|
<DxSearchPanel :visible="true" :highlight-case-sensitive="true" />
|
|
<DxExport
|
|
:enabled="true"
|
|
:formats="['pdf', 'xlsx', 'document']"
|
|
:allow-export-selected-data="false"
|
|
/>
|
|
<DxColumnFixing :enabled="true" />
|
|
|
|
<DxColumn
|
|
css-class="custom-table-column !align-top"
|
|
:width="50"
|
|
alignment="center"
|
|
:calculate-display-value="(item: any) => data.findIndex((i) => i == item) + 1"
|
|
data-type="number"
|
|
caption="No"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="no_laporan"
|
|
caption="No Laporan"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="nama_ulp"
|
|
caption="Contact Center"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="nama_uid"
|
|
caption="UI Dist."
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="nama_ulp"
|
|
caption="ULP"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="idpel_nometer"
|
|
caption="IDPEL/NO METER"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="nama_pelapor"
|
|
caption="Nama Pelapor"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="alamat_pelapor"
|
|
caption="Alamat Pelapor"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="no_telp_pelapor"
|
|
caption="No Tlp Pelapor"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="keterangan_pelapor"
|
|
caption="Keterangan Pelapor"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="status_akhir"
|
|
caption="APKT Status"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="nama_pelapor"
|
|
caption="Created By"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="waktu_recovery"
|
|
caption="Tgl Penyelesaian"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="jumlah_lapor"
|
|
caption="Lapor Ulang"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="media"
|
|
caption="Sumber Lapor"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="nama_issuetype"
|
|
caption="Issue Type"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="nama_subissuetype"
|
|
caption="Sub Issue Type"
|
|
css-class="custom-table-column !align-top"
|
|
cell-template="formatText"
|
|
/>
|
|
|
|
<template #formatText="{ data }">
|
|
<p class="text-left cursor-pointer">
|
|
{{ data.text }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #formatNumber="{ data }">
|
|
<p class="text-right cursor-pointer">
|
|
{{
|
|
isNumber(data.text)
|
|
? data.column.caption == '%'
|
|
? formatPercentage(data.text)
|
|
: formatNumber(data.text)
|
|
: data.text
|
|
}}
|
|
</p>
|
|
</template>
|
|
</DxDataGrid>
|
|
</div>
|
|
|
|
<DetailDialog
|
|
:open="dialogDetail"
|
|
title="Detail Daftar Keluhan Selesai di Contact Center"
|
|
@on-close="closeDialog"
|
|
>
|
|
<div class="w-full p-4 space-y-2 bg-white rounded-xl">
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">No Laporan:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.no_laporan" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Contact Center:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.media" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Unit Induk Distribusi:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.nama_uid" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">
|
|
Unit Pelaksana Pelayanan Pelanggan:
|
|
</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.nama_up3" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Unit Layanan Pelanggan:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.nama_ulp" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">IDPEL/NO METER:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.idpel_nometer" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Nama Pelapor:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.nama_pelapor" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Alamat Pelapor:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
type="textarea"
|
|
:value="dataSelected?.alamat_pelapor"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">No Telp Pelapor:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.no_telp_pelapor" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Keterangan Pelapor:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
type="textarea"
|
|
:value="dataSelected?.keterangan_pelapor"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Status:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.status_akhir" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Create By:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.pembuat_laporan" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Tgl Lapor:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.waktu_lapor" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Tgl Recovery:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.waktu_recovery" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[170px] text-gray-800">Jumlah Lapor Ulang:</h3>
|
|
<InputText :readonly="true" :value="dataSelected?.jumlah_lapor" class-name="flex-1" />
|
|
</div>
|
|
</div>
|
|
</DetailDialog>
|
|
<BufferDialog v-if="loading" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import DetailDialog from '@/components/Dialogs/DetailDialog.vue'
|
|
import InputText from '@/components/InputText.vue'
|
|
import Filters from '@/components/Form/Filters.vue'
|
|
import Type3 from '@/components/Form/FiltersType/Type3.vue'
|
|
import { onMounted, ref } from 'vue'
|
|
import { DxDataGrid } from 'devextreme-vue'
|
|
import {
|
|
DxColumn,
|
|
DxColumnFixing,
|
|
DxExport,
|
|
DxLoadPanel,
|
|
DxPager,
|
|
DxPaging,
|
|
DxSearchPanel,
|
|
DxSelection
|
|
} from 'devextreme-vue/data-grid'
|
|
import { queries, requestGraphQl } from '@/utils/api/api.graphql'
|
|
import { formatNumber, formatPercentage, isNumber } from '@/utils/numbers'
|
|
import { exportToPDF, exportToXLSX, exportToDOCX } from '@/report/Keluhan/Daftar/DKeluhan_SelesaiCC'
|
|
import BufferDialog from '@/components/Dialogs/BufferDialog.vue'
|
|
|
|
const position = { of: '#data' }
|
|
const showIndicator = ref(true)
|
|
const shading = ref(true)
|
|
const showPane = ref(true)
|
|
const dataSelected = ref<any>()
|
|
const dialogDetail = ref(false)
|
|
|
|
const closeDialog = () => {
|
|
dialogDetail.value = false
|
|
}
|
|
|
|
const dataGridRef = ref<DxDataGrid | null>(null)
|
|
const clearSelection = () => {
|
|
const dataGrid = dataGridRef.value!.instance!
|
|
dataGrid.clearSelection()
|
|
}
|
|
const showDetail = () => {
|
|
clearSelection()
|
|
dialogDetail.value = true
|
|
}
|
|
|
|
const onSelectionChanged = ({ selectedRowsData }: any) => {
|
|
if (selectedRowsData[0] != undefined) {
|
|
dataSelected.value = selectedRowsData[0]
|
|
showDetail()
|
|
}
|
|
}
|
|
|
|
const onExporting = (e: any) => {
|
|
if (e.format === 'pdf') {
|
|
exportToPDF(reportMeta, data)
|
|
} else if (e.format === 'xlsx') {
|
|
exportToXLSX(reportMeta, e)
|
|
} else {
|
|
exportToDOCX(reportMeta, data)
|
|
}
|
|
}
|
|
|
|
const data = ref<any[]>([])
|
|
const loading = ref(false)
|
|
const filters = ref()
|
|
const reportMeta = ref({
|
|
uid: { id: 0, name: 'Semua Unit Induk Distribusi/Wilayah' },
|
|
up3: { id: 0, name: 'Semua Unit Pelaksanaan Pelayanan Pelanggan' },
|
|
ulp: { id: 0, name: 'Semua Unit Layanan Pelanggan' },
|
|
periode: ''
|
|
})
|
|
|
|
const resetData = () => {
|
|
data.value = []
|
|
}
|
|
|
|
const filterData = async (params: any) => {
|
|
resetData()
|
|
const dateValue = params.periode.split(' s/d ')
|
|
const { ulp, uid, up3 } = params
|
|
|
|
const query = {
|
|
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),
|
|
idUlp: ulp ? ulp.id : 0,
|
|
idUid: uid ? uid.id : 0,
|
|
idUp3: up3 ? up3.id : 0,
|
|
media: ''
|
|
}
|
|
|
|
loading.value = true
|
|
await requestGraphQl(queries.keluhan.daftar.keluhanDiselesaikanCC123, query)
|
|
.then((result) => {
|
|
if (result.data.data != undefined) {
|
|
data.value = result.data.data.daftarKeluhanDiselesaikanCC123
|
|
} else {
|
|
data.value = []
|
|
}
|
|
|
|
reportMeta.value = filters.value
|
|
})
|
|
.catch((err) => {
|
|
console.error(err)
|
|
})
|
|
.finally(() => {
|
|
loading.value = false
|
|
})
|
|
}
|
|
|
|
onMounted(() => {
|
|
if (import.meta.env.DEV) {
|
|
data.value = [
|
|
{
|
|
no_laporan: 'K5123020100019',
|
|
id_uid: 2,
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
id_up3: 13,
|
|
nama_up3: 'UP3 TANJUNG PRIOK',
|
|
id_ulp: 54510,
|
|
nama_ulp: 'UP3 TANJUNG PRIOK',
|
|
idpel_nometer: '',
|
|
nama_pelapor: 'BP AHMAD',
|
|
alamat_pelapor:
|
|
'JL BENTENGAN TIMUR NO31 RT11/03, SUNTER JAYA, TANJUNG PRIOK, KOTA ADM. JAKARTA UTARA, DKI JAKARTA',
|
|
no_telp_pelapor: '082320000152',
|
|
keterangan_pelapor:
|
|
'MOHON BANTUAN PEMBATALAN PERMOHONAN PB NO AGENDA 545109912301319203 DIKARENAKAN PELANGGAN INGIN KE DAYA 2200 VA, PELANGGAN SUDAH MELAKUKAN PEMBAYARAN MELALAUI GOPAY TANGGAL 31/01/2023 PUKUL 18:49 WIB, NAMUN PEMBAYARAN BELUM MASUK, MOHON KONFRIMASI KE PELANGGAN, TERIMA KASIH. ',
|
|
status_akhir: 'Selesai',
|
|
pembuat_laporan: 'CC.51.NUGROHO',
|
|
waktu_lapor: '01/02/2023 01:59:02',
|
|
waktu_recovery: '01/02/2023 08:33:38',
|
|
jumlah_lapor: 1,
|
|
media: 'Call PLN 123',
|
|
nama_issuetype: 'Informasi',
|
|
nama_subissuetype: 'PB '
|
|
},
|
|
{
|
|
no_laporan: 'K5123020100021',
|
|
id_uid: 427,
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
id_up3: 547,
|
|
nama_up3: 'UP3 CIKARANG',
|
|
id_ulp: 53702,
|
|
nama_ulp: 'ULP CIBITUNG',
|
|
idpel_nometer: '',
|
|
nama_pelapor: 'IBU TITIN ',
|
|
alamat_pelapor: 'TIDAK BISAMALKUKANPEMBELIAN KETMELEBIHI BATAS MAXIMUM / SISA 100 KWH ',
|
|
no_telp_pelapor: '087786974290',
|
|
keterangan_pelapor: 'TIDAK BISAMALKUKANPEMBELIAN KETMELEBIHI BATAS MAXIMUM / SISA 100 KWH ',
|
|
status_akhir: 'Selesai',
|
|
pembuat_laporan: 'CC.51.BARIQI',
|
|
waktu_lapor: '01/02/2023 02:04:04',
|
|
waktu_recovery: '01/02/2023 02:34:06',
|
|
jumlah_lapor: 1,
|
|
media: 'Call PLN 123',
|
|
nama_issuetype: 'Tagihan Listrik dan Token ',
|
|
nama_subissuetype: 'Tidak bisa beli Token '
|
|
},
|
|
{
|
|
no_laporan: 'K1423020100022',
|
|
id_uid: 427,
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
id_up3: 532,
|
|
nama_up3: 'UP3 BEKASI',
|
|
id_ulp: 53741,
|
|
nama_ulp: 'ULP BANTARGEBANG',
|
|
idpel_nometer: '000000000000000001820788',
|
|
nama_pelapor: 'IBU IRFI ',
|
|
alamat_pelapor:
|
|
'JL NIAGA 7 PERUM KEMANG BLOK F NO 23 KEC RAWA LUMBU KEL SEPANJANG JAYA KOTA BEKASI ACUAN LOKASI DEKAT RUMAH YATIM ',
|
|
no_telp_pelapor: '62816922683',
|
|
keterangan_pelapor:
|
|
'TIDAK BISA INPUT TOKEN SETELAH UPDATE VKRN 43 (PTL TIDAK PADAM) \\nDENGAN NO METER 56700750112 DAN SISA KWH 15.1',
|
|
status_akhir: 'Selesai',
|
|
pembuat_laporan: 'CC.14.ANDI',
|
|
waktu_lapor: '01/02/2023 03:13:25',
|
|
waktu_recovery: '01/02/2023 07:03:37',
|
|
jumlah_lapor: 1,
|
|
media: 'Call PLN 123',
|
|
nama_issuetype: 'Tagihan Listrik dan Token ',
|
|
nama_subissuetype: 'Gagal Input Token'
|
|
},
|
|
{
|
|
no_laporan: 'K5223020100106',
|
|
id_uid: 427,
|
|
nama_uid: 'DISTRIBUSI JAWA BARAT',
|
|
id_up3: 537,
|
|
nama_up3: 'UP3 CIREBON',
|
|
id_ulp: 53331,
|
|
nama_ulp: 'ULP SUMBER',
|
|
idpel_nometer: '000000000000000000943441',
|
|
nama_pelapor: 'IBU MELLY KURNIASIH',
|
|
alamat_pelapor: 'PERUMAHAN CEMPAKA ARUM JL. FLAMBOYAN 5 NO 191 CIREBON',
|
|
no_telp_pelapor: '08889353988',
|
|
keterangan_pelapor:
|
|
'LEBIH TAGIH. ST AK REK FEB 2023 (28/01/2023) = 4608, ST APP TGL 26/01/2023 = 4496. REK BELUM DILUNASI. (RUMAH TIDAK DIHUNI NAMUN PAGAR TIDAK TERKUNCI, PETUGAS TIDAK DIKETAHUI DATANG KE LOKASI). PELANGGAN MENGINGINKAN AGAR HAL TERSEBUT TIDAK TERULANG KEMBALI.',
|
|
status_akhir: 'Selesai',
|
|
pembuat_laporan: 'CC.52.YORDAN.LC',
|
|
waktu_lapor: '01/02/2023 03:45:58',
|
|
waktu_recovery: '01/02/2023 06:28:11',
|
|
jumlah_lapor: 1,
|
|
media: 'Live Chat PLN Mobile',
|
|
nama_issuetype: 'Cater',
|
|
nama_subissuetype: 'Keakuratan hasil catat meter '
|
|
},
|
|
{
|
|
no_laporan: 'K5223020100112',
|
|
id_uid: 101,
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
id_up3: 52100,
|
|
nama_up3: 'UP3 YOGYAKARTA',
|
|
id_ulp: 52104,
|
|
nama_ulp: 'ULP SEDAYU',
|
|
idpel_nometer: '',
|
|
nama_pelapor: 'BP HENDRIYANTO',
|
|
alamat_pelapor:
|
|
'JL.PALEM HIJAU, COKROKONTENG, RT.04 RW.2. KEL SIDOARUM. KEC GODEAN KAB SLEMAN PROV DIY',
|
|
no_telp_pelapor: '085921182228',
|
|
keterangan_pelapor:
|
|
'PELANGGAN TIDAK BISA INPUT TOKEN SETELAH UPDATE VKRN 43. (BELUM ADA) PETUGAS YANG MELAKUKAN PENGATURAN. SISA KWH: 385.41. PTL (HAMPIR PADAM). PELANGGAN PERNAH LAPOR DENGAN NO: K5223013102183, STATUS SELESAI, PELANGGAN TIDAK DIKONFIRMASI s.d 1X6 JAM. LAPOR KEMBALI CC.54.JULIANA TGL 01/02/23 12FZUS3 08.46 085921182228',
|
|
status_akhir: 'Selesai',
|
|
pembuat_laporan: 'CC.52.YORDAN.LC',
|
|
waktu_lapor: '01/02/2023 04:16:48',
|
|
waktu_recovery: '01/02/2023 12:02:23',
|
|
jumlah_lapor: 1,
|
|
media: 'Live Chat PLN Mobile',
|
|
nama_issuetype: 'Tagihan Listrik dan Token ',
|
|
nama_subissuetype: 'Gagal Input Token'
|
|
}
|
|
]
|
|
}
|
|
})
|
|
</script>
|