647 lines
20 KiB
Vue
Executable File
647 lines
20 KiB
Vue
Executable File
<template>
|
|
<Filters
|
|
@reset-form="data = []"
|
|
@run-search="() => filterData(filters)"
|
|
:report-button="true"
|
|
class="mb-4"
|
|
>
|
|
<Type3 @update:filters="(value) => (filters = value)" />
|
|
</Filters>
|
|
|
|
<div>
|
|
<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="onDataSelectionChanged"
|
|
:column-width="100"
|
|
@exporting="onExporting"
|
|
:allow-column-resizing="true"
|
|
column-resizing-mode="widget"
|
|
:word-wrap-enabled="true"
|
|
>
|
|
<DxSelection mode="single" />
|
|
<DxPaging :enabled="false" />
|
|
<DxScrolling column-rendering-mode="virtual" mode="virtual" />
|
|
<DxLoadPanel
|
|
shading-color="rgba(0,0,0,0.4)"
|
|
:position="position"
|
|
:show-indicator="showIndicator"
|
|
:show-pane="showPane"
|
|
:shading="shading"
|
|
v-model:visible="loadingData"
|
|
: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
|
|
:width="100"
|
|
alignment="center"
|
|
:calculateCellValue="(item: any) => data.findIndex((i) => i == item) + 1"
|
|
caption="NO"
|
|
css-class="custom-table-column"
|
|
data-field="no"
|
|
data-type="number"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
:width="170"
|
|
alignment="center"
|
|
data-field="media"
|
|
caption="Nama Media"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn alignment="center" caption="Tanggal" css-class="custom-table-column">
|
|
<DxColumn
|
|
:width="100"
|
|
v-for="i in 31"
|
|
alignment="center"
|
|
:data-field="`tgl${i}`"
|
|
data-type="number"
|
|
:caption="i"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
</DxColumn>
|
|
|
|
<DxSummary>
|
|
<DxTotalItem
|
|
summary-type="sum"
|
|
display-format="Call PLN 123"
|
|
show-in-column="no"
|
|
css-class="text-white !text-left"
|
|
/>
|
|
<DxTotalItem
|
|
v-for="i in 31"
|
|
summary-type="sum"
|
|
display-format="{0}"
|
|
:column="`tgl${i}`"
|
|
css-class="text-white !text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
<DxTotalItem
|
|
column="total"
|
|
summary-type="sum"
|
|
display-format="{0}"
|
|
css-class="text-white !text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
</DxSummary>
|
|
|
|
<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>
|
|
|
|
<template #formatText="{ data }">
|
|
<p class="text-left cursor-pointer">
|
|
{{ data.text }}
|
|
</p>
|
|
</template>
|
|
</DxDataGrid>
|
|
</div>
|
|
|
|
<DetailDialog
|
|
:open="dialogDetail"
|
|
title="Rekapitulasi Keluhan Berdasarkan Media"
|
|
@on-close="closedialogDetail"
|
|
:full-width="true"
|
|
>
|
|
<div class="w-full mb-4 lg:w-[70%] lg:float-left">
|
|
<div class="p-4 bg-white rounded-xl lg:mr-4">
|
|
<DxDataGrid
|
|
:allow-column-reordering="true"
|
|
class="max-h-[calc(100vh-140px)]"
|
|
:data-source="dataSub"
|
|
:show-column-lines="true"
|
|
:show-row-lines="false"
|
|
:show-borders="true"
|
|
:row-alternation-enabled="true"
|
|
:hover-state-enabled="true"
|
|
@selection-changed="onDataSubSelectionChanged"
|
|
:column-width="100"
|
|
@exporting="onExporting"
|
|
:allow-column-resizing="true"
|
|
column-resizing-mode="widget"
|
|
>
|
|
<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-model:visible="loadingSubData"
|
|
:enabled="true"
|
|
/>
|
|
<DxSearchPanel :visible="true" :highlight-case-sensitive="true" />
|
|
<DxExport
|
|
:enabled="true"
|
|
:formats="['pdf', 'xlsx', 'document']"
|
|
:allow-export-selected-data="false"
|
|
/>
|
|
|
|
<DxColumn
|
|
css-class="custom-table-column"
|
|
:width="50"
|
|
alignment="center"
|
|
:calculateCellValue="
|
|
(item: any) => dummyData.gangguan.rekap.detailGangguan.findIndex((i) => i == item) + 1
|
|
"
|
|
data-type="number"
|
|
caption="No"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="no_laporan"
|
|
caption="No Laporan"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="waktu_lapor"
|
|
caption="Tgl Lapor"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field=""
|
|
caption="Dalam Proses Bidang"
|
|
:allow-resizing="false"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field=""
|
|
caption="Selesai Bidang Unit"
|
|
:allow-resizing="false"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="durasi_response_time"
|
|
caption="Durasi Response Time"
|
|
:allow-resizing="false"
|
|
css-class="custom-table-column"
|
|
cell-template="formatTime"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="durasi_recovery_time"
|
|
caption="Durasi Recovery Time"
|
|
:allow-resizing="false"
|
|
css-class="custom-table-column"
|
|
cell-template="formatTime"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field=""
|
|
caption="Status"
|
|
:allow-resizing="false"
|
|
css-class="custom-table-column"
|
|
cell-template="formatTime"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="idpel_nometer"
|
|
caption="IDPEL/NO METER"
|
|
:allow-resizing="false"
|
|
css-class="custom-table-column"
|
|
cell-template="formatTime"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="nama_pelapor"
|
|
caption="Nama Pelapor"
|
|
:allow-resizing="false"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="200"
|
|
alignment="center"
|
|
data-field="alamat_pelapor"
|
|
caption="Alamat Pelapor"
|
|
:allow-resizing="false"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="no_telp_pelapor"
|
|
caption="No Tlp Pelapor"
|
|
:allow-resizing="false"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="200"
|
|
alignment="center"
|
|
data-field="keterangan_pelapor"
|
|
caption="Keterangan Pelapor"
|
|
:allow-resizing="false"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field=""
|
|
caption="Rayon"
|
|
:allow-resizing="false"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field=""
|
|
caption="Uraian"
|
|
:allow-resizing="false"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field=""
|
|
caption="Respon Pelanggan"
|
|
:allow-resizing="false"
|
|
css-class="custom-table-column"
|
|
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">
|
|
{{ data.text }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #formatTime="{ data }">
|
|
<p>
|
|
{{ parseInt(data.text) ? formatWaktu(data.text) : '-' }}
|
|
</p>
|
|
</template>
|
|
</DxDataGrid>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="w-full mb-4 lg:w-[30%] lg:float-right">
|
|
<div class="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-[135px] text-gray-800">No Laporan:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.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-[135px] text-gray-800">Tgl Lapor:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.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-[135px] text-gray-800">Dalam Proses Bidang:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.dalam_proses_bidang"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Selesai Bidang Unit:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.selesai_bidang_unit"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Durasi Response Time:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="
|
|
parseInt(dataSubSelected?.durasi_response_time)
|
|
? formatWaktu(dataSubSelected?.durasi_response_time)
|
|
: '-'
|
|
"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Durasi Recovery Time:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="
|
|
parseInt(dataSubSelected?.durasi_recovery_time)
|
|
? formatWaktu(dataSubSelected?.durasi_recovery_time)
|
|
: '-'
|
|
"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Status:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.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-[135px] text-gray-800">IDPEL/NO METER:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.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-[135px] text-gray-800">Nama Pelapor:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.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-[135px] text-gray-800">Alamat Pelapor:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
type="textarea"
|
|
:value="dataSubSelected?.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-[135px] text-gray-800">NO Telp Pelapor:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.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-[135px] text-gray-800">Keterangan Pelapor:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.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-[135px] text-gray-800">Rayon:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.rayon" class-name="flex-1" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Uraian:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
type="textarea"
|
|
:value="dataSubSelected?.uraian"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Response Pelanggan:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
type="textarea"
|
|
:value="dataSubSelected?.response_pelanggan"
|
|
class-name="flex-1"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DetailDialog>
|
|
</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 { ref, onMounted, watch } from 'vue'
|
|
import { DxDataGrid } from 'devextreme-vue'
|
|
import {
|
|
DxColumn,
|
|
DxColumnFixing,
|
|
DxExport,
|
|
DxLoadPanel,
|
|
DxPaging,
|
|
DxPager,
|
|
DxSummary,
|
|
DxTotalItem,
|
|
DxScrolling,
|
|
DxSearchPanel,
|
|
DxSelection
|
|
} from 'devextreme-vue/data-grid'
|
|
import { jsPDF } from 'jspdf'
|
|
import { exportDataGrid as exportToPdf } from 'devextreme/pdf_exporter'
|
|
import { exportDataGrid as exportToExcel } from 'devextreme/excel_exporter'
|
|
import { saveAs } from 'file-saver'
|
|
import { Workbook } from 'exceljs'
|
|
import { useQuery } from '@vue/apollo-composable'
|
|
import { formatWaktu } from '@/components/Form/FiltersType/reference'
|
|
import { queries } from '@/utils/api/api.graphql'
|
|
import { dummyData } from '@/utils/dummy'
|
|
import { formatNumber, formatPercentage, isNumber } from '@/utils/numbers'
|
|
import { apolloClient } from '@/utils/api/api.graphql'
|
|
import { provideApolloClient } from '@vue/apollo-composable'
|
|
|
|
const client = apolloClient()
|
|
provideApolloClient(client)
|
|
const position = { of: '#data' }
|
|
const showIndicator = ref(true)
|
|
const shading = ref(true)
|
|
const showPane = ref(true)
|
|
const data = ref<any[]>([])
|
|
const dataSub = ref<any[]>([])
|
|
const dataSelected = ref<any>()
|
|
const dataSubSelected = ref<any>()
|
|
const dialogDetail = ref(false)
|
|
const closedialogDetail = () => (dialogDetail.value = false)
|
|
const loadingData = ref(false)
|
|
const loadingSubData = ref(false)
|
|
|
|
const filterData = (params: any) => {
|
|
const dateValue = params.periode.split(' s/d ')
|
|
const { ulp, uid, up3 } = params
|
|
|
|
const { onResult, onError, loading, refetch } = useQuery(
|
|
queries.keluhan.rekap.rekapKeluhanBerdasarkanMedia,
|
|
{
|
|
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: ''
|
|
}
|
|
)
|
|
|
|
onResult((queryResult) => {
|
|
if (queryResult.data != undefined) {
|
|
data.value = queryResult.data.rekapitulasiKeluhanBerdasarkanMedia
|
|
}
|
|
})
|
|
|
|
onError((error) => {
|
|
console.log(error)
|
|
})
|
|
|
|
watch(loading, (value) => {
|
|
loadingData.value = value
|
|
})
|
|
}
|
|
|
|
const getDetail = () => {
|
|
const dateValue = filters.value.periode.split(' s/d ')
|
|
const selected = dataSelected.value
|
|
|
|
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: selected?.id_ulp ? selected?.id_ulp : 0,
|
|
idUid: selected?.id_uid ? selected?.id_uid : 0,
|
|
idUp3: selected?.id_up3 ? selected?.id_up3 : 0
|
|
}
|
|
|
|
const { onResult, onError, loading } = useQuery(
|
|
queries.keluhan.rekap.rekapKeluhanAllDetail,
|
|
query
|
|
)
|
|
|
|
onResult((queryResult) => {
|
|
if (queryResult.data != undefined) {
|
|
dataSub.value = queryResult.data.detailKeluhanAll
|
|
}
|
|
})
|
|
|
|
onError((error) => {
|
|
console.log(error)
|
|
})
|
|
|
|
watch(loading, (value) => {
|
|
loadingSubData.value = value
|
|
})
|
|
}
|
|
|
|
const dataGridRef = ref<DxDataGrid | null>(null)
|
|
const clearSelection = () => {
|
|
const dataGrid = dataGridRef.value!.instance!
|
|
dataGrid.clearSelection()
|
|
}
|
|
const showDetail = () => {
|
|
clearSelection()
|
|
dataSubSelected.value = null
|
|
dialogDetail.value = true
|
|
getDetail()
|
|
}
|
|
|
|
const onExporting = (e: any) => {
|
|
if (e.format === 'pdf') {
|
|
const doc = new jsPDF()
|
|
|
|
exportToPdf({
|
|
jsPDFDocument: doc,
|
|
component: e.component,
|
|
indent: 5
|
|
}).then(() => {
|
|
doc.save(`.pdf`)
|
|
})
|
|
} else {
|
|
const workbook = new Workbook()
|
|
const worksheet = workbook.addWorksheet('Employees')
|
|
|
|
exportToExcel({
|
|
component: e.component,
|
|
worksheet,
|
|
autoFilterEnabled: true
|
|
}).then(() => {
|
|
workbook.xlsx.writeBuffer().then((buffer: any) => {
|
|
saveAs(new Blob([buffer], { type: 'application/octet-stream' }), 'DataGrid.xlsx')
|
|
})
|
|
})
|
|
|
|
e.cancel = true
|
|
}
|
|
}
|
|
|
|
const onDataSelectionChanged = ({ selectedRowsData }: any) => {
|
|
if (selectedRowsData[0] != undefined) {
|
|
dataSelected.value = selectedRowsData[0]
|
|
showDetail()
|
|
}
|
|
}
|
|
|
|
const onDataSubSelectionChanged = ({ selectedRowsData }: any) => {
|
|
const data = selectedRowsData[0]
|
|
dataSubSelected.value = data
|
|
}
|
|
|
|
const filters = ref()
|
|
|
|
onMounted(() => {
|
|
if (import.meta.env.DEV) {
|
|
data.value = dummyData.keluhan.rekap.rekapitulasiKeluhanBerdasarkanMedia
|
|
}
|
|
})
|
|
</script>
|