614 lines
		
	
	
		
			18 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			614 lines
		
	
	
		
			18 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
<template>
 | 
						|
  <Filters @reset-form="data = []" @run-search="() => filterData(filters)" class="mb-4">
 | 
						|
    <Type11
 | 
						|
      @update:filters="(value) => (filters = value)"
 | 
						|
      :sla-options="[
 | 
						|
        {
 | 
						|
          id: 1,
 | 
						|
          name: 'Dibawah  / Sesuai SLA (<= 3 hari)',
 | 
						|
          min: '1',
 | 
						|
          max: '4381'
 | 
						|
        },
 | 
						|
        {
 | 
						|
          id: 2,
 | 
						|
          name: 'Melebihi SLA (> 3 hari)',
 | 
						|
          min: '4382',
 | 
						|
          max: `${99999 * 60 * 24}`
 | 
						|
        }
 | 
						|
      ]"
 | 
						|
    />
 | 
						|
  </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"
 | 
						|
        :width="50"
 | 
						|
        alignment="center"
 | 
						|
        :calculateCellValue="(item: any) => data.findIndex((i) => i == item) + 1"
 | 
						|
        data-type="number"
 | 
						|
        caption="No"
 | 
						|
      />
 | 
						|
      <DxColumn
 | 
						|
        :width="170"
 | 
						|
        alignment="center"
 | 
						|
        data-field="no_laporan"
 | 
						|
        caption="No Laporan"
 | 
						|
        css-class="custom-table-column"
 | 
						|
        cell-template="formatText"
 | 
						|
      />
 | 
						|
 | 
						|
      <DxColumn
 | 
						|
        :width="170"
 | 
						|
        alignment="center"
 | 
						|
        data-field="waktu_lapor"
 | 
						|
        caption="Tgl Lapor"
 | 
						|
        css-class="custom-table-column"
 | 
						|
        cell-template="formatText"
 | 
						|
      />
 | 
						|
      <DxColumn
 | 
						|
        :width="170"
 | 
						|
        alignment="center"
 | 
						|
        data-field="waktu_response"
 | 
						|
        caption="Tgl Response"
 | 
						|
        css-class="custom-table-column"
 | 
						|
        cell-template="formatText"
 | 
						|
      />
 | 
						|
      <DxColumn
 | 
						|
        :width="170"
 | 
						|
        alignment="center"
 | 
						|
        data-field="waktu_recovery"
 | 
						|
        caption="Tgl Recovery"
 | 
						|
        css-class="custom-table-column"
 | 
						|
        cell-template="formatText"
 | 
						|
      />
 | 
						|
      <DxColumn
 | 
						|
        :width="170"
 | 
						|
        alignment="center"
 | 
						|
        data-field="durasi_response_time"
 | 
						|
        caption="Durasi Response Time"
 | 
						|
        css-class="custom-table-column"
 | 
						|
        cell-template="formatTime"
 | 
						|
      />
 | 
						|
      <DxColumn
 | 
						|
        :width="170"
 | 
						|
        alignment="center"
 | 
						|
        data-field="durasi_recovery_time"
 | 
						|
        caption="Durasi Recovery Time"
 | 
						|
        css-class="custom-table-column"
 | 
						|
        cell-template="formatTime"
 | 
						|
      />
 | 
						|
      <DxColumn
 | 
						|
        :width="120"
 | 
						|
        alignment="center"
 | 
						|
        data-field="status_akhir"
 | 
						|
        caption="Status"
 | 
						|
        css-class="custom-table-column"
 | 
						|
        cell-template="formatText"
 | 
						|
      />
 | 
						|
      <DxColumn
 | 
						|
        :width="170"
 | 
						|
        alignment="center"
 | 
						|
        data-field="idpel_nometer"
 | 
						|
        caption="IDPEL/NO METER"
 | 
						|
        css-class="custom-table-column"
 | 
						|
        cell-template="formatText"
 | 
						|
      />
 | 
						|
      <DxColumn
 | 
						|
        :width="170"
 | 
						|
        alignment="center"
 | 
						|
        data-field="nama_pelapor"
 | 
						|
        caption="Nama Pelapor"
 | 
						|
        css-class="custom-table-column"
 | 
						|
        cell-template="formatText"
 | 
						|
      />
 | 
						|
      <DxColumn
 | 
						|
        :width="170"
 | 
						|
        alignment="center"
 | 
						|
        data-field="alamat_pelapor"
 | 
						|
        caption="Alamat Pelapor"
 | 
						|
        css-class="custom-table-column"
 | 
						|
        cell-template="formatText"
 | 
						|
      />
 | 
						|
      <DxColumn
 | 
						|
        :width="170"
 | 
						|
        alignment="center"
 | 
						|
        data-field="no_telp_pelapor"
 | 
						|
        caption="No Telp Pelapor"
 | 
						|
        css-class="custom-table-column"
 | 
						|
        cell-template="formatText"
 | 
						|
      />
 | 
						|
      <DxColumn
 | 
						|
        :width="170"
 | 
						|
        alignment="center"
 | 
						|
        data-field="keterangan_pelapor"
 | 
						|
        caption="Keterangan Pelapor"
 | 
						|
        css-class="custom-table-column"
 | 
						|
        cell-template="formatText"
 | 
						|
      />
 | 
						|
      <DxColumn
 | 
						|
        :width="150"
 | 
						|
        alignment="center"
 | 
						|
        data-field="nama_ulp"
 | 
						|
        caption="Nama ULP"
 | 
						|
        css-class="custom-table-column"
 | 
						|
        cell-template="formatText"
 | 
						|
      />
 | 
						|
 | 
						|
      <template #formatText="{ data }">
 | 
						|
        <p class="text-left cursor-pointer">
 | 
						|
          {{ data.text }}
 | 
						|
        </p>
 | 
						|
      </template>
 | 
						|
 | 
						|
      <template #formatTime="{ data }">
 | 
						|
        <p class="cursor-pointer !text-right">
 | 
						|
          {{ parseInt(data.text) ? formatWaktu(data.text) : '-' }}
 | 
						|
        </p>
 | 
						|
      </template>
 | 
						|
    </DxDataGrid>
 | 
						|
  </div>
 | 
						|
 | 
						|
  <DetailDialog :open="dialogDetail" title="Detail Keluhan" @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">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">Tanggal Response:</h3>
 | 
						|
        <InputText :readonly="true" :value="dataSelected?.waktu_response" 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">Tanggal 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">Response Time:</h3>
 | 
						|
        <InputText
 | 
						|
          :readonly="true"
 | 
						|
          :value="
 | 
						|
            parseInt(dataSelected?.durasi_response_time)
 | 
						|
              ? formatWaktu(dataSelected?.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-[170px] text-gray-800">Recovery Time:</h3>
 | 
						|
        <InputText
 | 
						|
          :readonly="true"
 | 
						|
          :value="
 | 
						|
            parseInt(dataSelected?.durasi_recovery_time)
 | 
						|
              ? formatWaktu(dataSelected?.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-[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">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">Sumber Lapor:</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">Nama ULP:</h3>
 | 
						|
        <InputText :readonly="true" :value="dataSelected?.nama_ulp" class-name="flex-1" />
 | 
						|
      </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 Type11 from '@/components/Form/FiltersType/Type11.vue'
 | 
						|
import { formatWaktu } from '@/components/Form/FiltersType/reference'
 | 
						|
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 { jsPDF } from 'jspdf'
 | 
						|
import { exportDataGrid as exportToExcel } from 'devextreme/excel_exporter'
 | 
						|
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' }
 | 
						|
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) => {
 | 
						|
  const periode = reportMeta.value.periode ? reportMeta.value.periode.split(' s/d ') : ''
 | 
						|
  const minTime = reportMeta.value.minTime ? reportMeta.value.minTime : ''
 | 
						|
  const maxTime = reportMeta.value.maxTime ? reportMeta.value.maxTime : ''
 | 
						|
 | 
						|
  let dateFromFormat = ''
 | 
						|
  let dateToFormat = ''
 | 
						|
  let dayTo = ''
 | 
						|
  let durasi = ''
 | 
						|
 | 
						|
  if (minTime == '4382' && maxTime != '143998560') {
 | 
						|
    durasi = 'Melebihi SLA (>3 hari)'
 | 
						|
  } else if (minTime == '1' && maxTime == '4381') {
 | 
						|
    durasi = 'Dibawah / Sesuai SLA (<=3 hari)'
 | 
						|
  } else {
 | 
						|
    durasi = 'Durasi Menit'
 | 
						|
  }
 | 
						|
 | 
						|
  if (periode != '') {
 | 
						|
    const dateFrom = new Date(periode[0].split('-').reverse().join('-'))
 | 
						|
    const dateTo = new Date(periode[1].split('-').reverse().join('-'))
 | 
						|
 | 
						|
    dateFromFormat = `${dateFrom.getDate()}-${dateFrom.toLocaleString('default', {
 | 
						|
      month: 'long'
 | 
						|
    })}-${dateFrom.getFullYear()}`
 | 
						|
 | 
						|
    dateToFormat = `${dateTo.getDate()}-${dateTo.toLocaleString('default', {
 | 
						|
      month: 'long'
 | 
						|
    })}-${dateTo.getFullYear()}`
 | 
						|
 | 
						|
    dayTo = dateTo.toLocaleString('default', { weekday: 'long' })
 | 
						|
  }
 | 
						|
 | 
						|
  if (e.format === 'pdf') {
 | 
						|
    const doc = new jsPDF({
 | 
						|
      orientation: 'landscape'
 | 
						|
    })
 | 
						|
 | 
						|
    autoTable(doc, {
 | 
						|
      head: [
 | 
						|
        ['PT. PLN(Persero)', '', ''],
 | 
						|
        [
 | 
						|
          { content: 'UNIT INDUK', styles: { cellWidth: 25 } },
 | 
						|
          { content: ':', styles: { cellWidth: 1 } },
 | 
						|
          reportMeta.value.uid
 | 
						|
            ? reportMeta.value.uid.name.toUpperCase()
 | 
						|
            : 'Semua Unit Induk Distribusi/Wilayah'.toUpperCase()
 | 
						|
        ],
 | 
						|
        [
 | 
						|
          'UNIT PELAKSANA PELAYANAN PELANGGAN',
 | 
						|
          ':',
 | 
						|
          reportMeta.value.up3
 | 
						|
            ? reportMeta.value.up3.name.toUpperCase()
 | 
						|
            : 'Semua Unit Pelaksanaan Pelayanan Pelanggan'.toUpperCase()
 | 
						|
        ],
 | 
						|
        [
 | 
						|
          'UNIT LAYANAN PELANGGAN',
 | 
						|
          ':',
 | 
						|
          reportMeta.value.ulp
 | 
						|
            ? reportMeta.value.ulp.name.toUpperCase()
 | 
						|
            : 'Semua Unit Layanan Pelanggan'.toUpperCase()
 | 
						|
        ],
 | 
						|
        ['Durasi', ':', `${durasi} ${durasi == 'Durasi Menit' ? minTime + ' - ' + maxTime : ''}`]
 | 
						|
      ],
 | 
						|
      styles: {
 | 
						|
        fontSize: 3,
 | 
						|
        cellPadding: 0.1,
 | 
						|
        textColor: [0, 0, 0],
 | 
						|
        fontStyle: 'bold'
 | 
						|
      },
 | 
						|
      theme: 'plain',
 | 
						|
      startY: 10
 | 
						|
    })
 | 
						|
 | 
						|
    autoTable(doc, {
 | 
						|
      head: [
 | 
						|
        ['Daftar Keluhan Recovery Time'.toUpperCase()],
 | 
						|
        [`PERIODE TANGGAL : ${dateFromFormat} SD TGL ${dateToFormat}`]
 | 
						|
      ],
 | 
						|
      styles: {
 | 
						|
        fontSize: 3,
 | 
						|
        cellPadding: 0.1,
 | 
						|
        textColor: [0, 0, 0],
 | 
						|
        fontStyle: 'bold',
 | 
						|
        halign: 'center'
 | 
						|
      },
 | 
						|
      theme: 'plain',
 | 
						|
      startY: 18
 | 
						|
    })
 | 
						|
 | 
						|
    autoTable(doc, {
 | 
						|
      head: [
 | 
						|
        [
 | 
						|
          'No',
 | 
						|
          'No Laporan',
 | 
						|
          'Tgl Lapor',
 | 
						|
          'Tgl Response',
 | 
						|
          'Tgl Recovery',
 | 
						|
          'Durasi Response Time',
 | 
						|
          'Durasi Recovery Time',
 | 
						|
          'Status',
 | 
						|
          'IDPEL/NO METER',
 | 
						|
          'Nama Pelapor',
 | 
						|
          'Alamat Pelapor',
 | 
						|
          'No Telp Pelapor',
 | 
						|
          'Keterangan Pelapor',
 | 
						|
          'Nama ULP'
 | 
						|
        ]
 | 
						|
      ],
 | 
						|
      body: data.value.map((item: any, i: any) => [
 | 
						|
        { content: ++i, styles: { halign: 'right' } },
 | 
						|
        item.no_laporan,
 | 
						|
        item.waktu_lapor,
 | 
						|
        item.waktu_response,
 | 
						|
        item.waktu_recovery,
 | 
						|
        parseInt(item.durasi_response_time) ? formatWaktu(item.durasi_response_time) : '-',
 | 
						|
        parseInt(item.durasi_recovery_time) ? formatWaktu(item.durasi_recovery_time) : '-',
 | 
						|
        item.status_akhir,
 | 
						|
        item.idpel_nometer,
 | 
						|
        item.nama_pelapor,
 | 
						|
        item.alamat_pelapor,
 | 
						|
        item.no_telp_pelapor,
 | 
						|
        item.keterangan_pelapor,
 | 
						|
        item.nama_ulp
 | 
						|
      ]),
 | 
						|
      styles: {
 | 
						|
        fontSize: 3,
 | 
						|
        cellPadding: 1,
 | 
						|
        lineColor: [0, 0, 0],
 | 
						|
        lineWidth: 0.1,
 | 
						|
        cellWidth: 'auto'
 | 
						|
      },
 | 
						|
      rowPageBreak: 'auto',
 | 
						|
      headStyles: {
 | 
						|
        fillColor: [192, 192, 192],
 | 
						|
        textColor: [0, 0, 0],
 | 
						|
        fontStyle: 'bold',
 | 
						|
        cellWidth: 'wrap',
 | 
						|
        halign: 'center'
 | 
						|
      },
 | 
						|
      bodyStyles: {
 | 
						|
        textColor: [0, 0, 0]
 | 
						|
      },
 | 
						|
      didParseCell: function (data) {
 | 
						|
        if (data.row.section === 'head') {
 | 
						|
          data.cell.text = data.cell.text.map(function (word: any) {
 | 
						|
            return word.toUpperCase()
 | 
						|
          })
 | 
						|
        }
 | 
						|
      },
 | 
						|
      startY: 23
 | 
						|
    })
 | 
						|
 | 
						|
    autoTable(doc, {
 | 
						|
      head: [
 | 
						|
        [`${dayTo}, ${dateToFormat}`],
 | 
						|
        [
 | 
						|
          {
 | 
						|
            content: '(.........................................)',
 | 
						|
            styles: { minCellHeight: 8, valign: 'bottom' }
 | 
						|
          }
 | 
						|
        ]
 | 
						|
      ],
 | 
						|
      styles: {
 | 
						|
        fontSize: 3,
 | 
						|
        cellPadding: 0.1,
 | 
						|
        textColor: [0, 0, 0],
 | 
						|
        fontStyle: 'bold',
 | 
						|
        halign: 'center'
 | 
						|
      },
 | 
						|
      theme: 'plain',
 | 
						|
      tableWidth: 50,
 | 
						|
      margin: { left: 230 }
 | 
						|
    })
 | 
						|
 | 
						|
    doc.save('Laporan Daftar Keluhan Recovery Time.pdf', { returnPromise: true }).then(() => {
 | 
						|
      console.log('pdf berhasil disimpan')
 | 
						|
    })
 | 
						|
  } else {
 | 
						|
    const workbook = new Workbook()
 | 
						|
    const worksheet = workbook.addWorksheet('Daftar Keluhan Recovery Time')
 | 
						|
 | 
						|
    exportToExcel({
 | 
						|
      component: e.component,
 | 
						|
      worksheet,
 | 
						|
      autoFilterEnabled: true
 | 
						|
    }).then(() => {
 | 
						|
      workbook.xlsx.writeBuffer().then((buffer: any) => {
 | 
						|
        saveAs(
 | 
						|
          new Blob([buffer], { type: 'application/octet-stream' }),
 | 
						|
          'Daftar Keluhan Recovery Time.xlsx'
 | 
						|
        )
 | 
						|
      })
 | 
						|
    })
 | 
						|
 | 
						|
    e.cancel = true
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
const data = ref<any[]>([])
 | 
						|
 | 
						|
const { onResult, onError, loading, refetch } = useQuery(
 | 
						|
  queries.keluhan.daftar.keluhanRecoveryTime,
 | 
						|
  {
 | 
						|
    dateFrom: new Date('2023-10-01').toISOString().slice(0, 10),
 | 
						|
    dateTo: new Date('2023-10-01').toISOString().slice(0, 10),
 | 
						|
    minDurasiRecoveryTime: 0,
 | 
						|
    maxDurasiRecoveryTime: 0,
 | 
						|
    idUlp: 0,
 | 
						|
    idUid: 0,
 | 
						|
    idUp3: 0
 | 
						|
  }
 | 
						|
)
 | 
						|
 | 
						|
const filterData = (params: any) => {
 | 
						|
  const dateValue = params.periode.split(' s/d ')
 | 
						|
  const { ulp, uid, up3, minTime, maxTime } = params
 | 
						|
 | 
						|
  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),
 | 
						|
    minDurasiRecoveryTime: minTime,
 | 
						|
    maxDurasiRecoveryTime: maxTime,
 | 
						|
    idUlp: ulp ? ulp.id : 0,
 | 
						|
    idUid: uid ? uid.id : 0,
 | 
						|
    idUp3: up3 ? up3.id : 0
 | 
						|
  })
 | 
						|
 | 
						|
  onResult((queryResult) => {
 | 
						|
    if (queryResult.data != undefined) {
 | 
						|
      data.value = queryResult.data.daftarKeluhanRecoveryTime
 | 
						|
    }
 | 
						|
 | 
						|
    reportMeta.value = filters.value
 | 
						|
    console.log(queryResult.data)
 | 
						|
  })
 | 
						|
 | 
						|
  onError((error) => {
 | 
						|
    console.log(error)
 | 
						|
  })
 | 
						|
}
 | 
						|
 | 
						|
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: '',
 | 
						|
  minTime: '',
 | 
						|
  maxTime: ''
 | 
						|
})
 | 
						|
 | 
						|
onMounted(() => {
 | 
						|
  if (import.meta.env.DEV) {
 | 
						|
    data.value = dummyData.keluhan.daftar.daftarKeluhanRecoveryTime
 | 
						|
  }
 | 
						|
})
 | 
						|
</script>
 |