1778 lines
53 KiB
Vue
Executable File
1778 lines
53 KiB
Vue
Executable File
<template>
|
|
<Filters
|
|
@reset-form="data = []"
|
|
@run-report="() => exportToPDF(reportMeta, data, true)"
|
|
@run-search="() => filterData(filters)"
|
|
:report-button="true"
|
|
class="mb-4"
|
|
>
|
|
<Type18 @update:filters="(value) => (filters = value)" />
|
|
</Filters>
|
|
|
|
<div id="data">
|
|
<DxDataGrid
|
|
@cell-click="onCellClicked"
|
|
ref="dataGridRef"
|
|
:allow-column-reordering="true"
|
|
class="max-h-[calc(100vh-140px)] mb-10"
|
|
:data-source="data"
|
|
v-if="loadingData == false"
|
|
:show-column-lines="true"
|
|
:show-row-lines="false"
|
|
:show-borders="true"
|
|
:row-alternation-enabled="true"
|
|
:hover-state-enabled="true"
|
|
@selection-changed="onDataSelectionChanged"
|
|
@exporting="onExporting"
|
|
:allow-column-resizing="true"
|
|
column-resizing-mode="widget"
|
|
>
|
|
<DxGrouping :auto-expand-all="false" :context-menu-enabled="true" expand-mode="" />
|
|
<DxSelection mode="single" />
|
|
<DxPaging :enabled="false" />
|
|
<DxScrolling column-rendering-mode="virtual" mode="virtual" />
|
|
<!-- -->
|
|
|
|
<DxSearchPanel :visible="true" :highlight-case-sensitive="true" />
|
|
<DxExport
|
|
:enabled="true"
|
|
:formats="['pdf', 'xlsx', 'document']"
|
|
:allow-export-selected-data="false"
|
|
/>
|
|
<DxColumnFixing :enabled="true" />
|
|
|
|
<DxColumn
|
|
:width="200"
|
|
alignment="center"
|
|
data-field="nama_ulp"
|
|
caption="Nama Unit"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
v-if="grouping.length > 0"
|
|
v-for="(group, index) in grouping"
|
|
:width="150"
|
|
alignment="center"
|
|
:data-field="group.data"
|
|
:caption="group.caption"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
:group-index="index"
|
|
/>
|
|
<DxColumn alignment="center" caption="Bulan" css-class="custom-table-column">
|
|
<DxColumn
|
|
alignment="center"
|
|
data-field="month1"
|
|
data-type="number"
|
|
caption="Januari"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
alignment="center"
|
|
data-field="month2"
|
|
data-type="number"
|
|
caption="Februari"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
alignment="center"
|
|
data-field="month3"
|
|
data-type="number"
|
|
caption="Maret"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
alignment="center"
|
|
data-field="month4"
|
|
data-type="number"
|
|
caption="April"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
alignment="center"
|
|
data-field="month5"
|
|
data-type="number"
|
|
caption="Mei"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
alignment="center"
|
|
data-field="month6"
|
|
data-type="number"
|
|
caption="Juni"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
alignment="center"
|
|
data-field="month7"
|
|
data-type="number"
|
|
caption="Juli"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
alignment="center"
|
|
data-field="month8"
|
|
data-type="number"
|
|
caption="Agustus"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
alignment="center"
|
|
data-field="month9"
|
|
data-type="number"
|
|
caption="September"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
alignment="center"
|
|
data-field="month10"
|
|
data-type="number"
|
|
caption="Oktober"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
alignment="center"
|
|
data-field="month11"
|
|
data-type="number"
|
|
caption="November"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
<DxColumn
|
|
alignment="center"
|
|
data-field="month12"
|
|
data-type="number"
|
|
caption="Desember"
|
|
css-class="custom-table-column"
|
|
cell-template="formatNumber"
|
|
/>
|
|
</DxColumn>
|
|
<DxSummary>
|
|
<DxGroupItem
|
|
:show-in-group-footer="false"
|
|
:align-by-column="true"
|
|
column="month1"
|
|
summary-type="sum"
|
|
css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
<DxGroupItem
|
|
:show-in-group-footer="false"
|
|
:align-by-column="true"
|
|
column="month2"
|
|
summary-type="sum"
|
|
css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
<DxGroupItem
|
|
:show-in-group-footer="false"
|
|
:align-by-column="true"
|
|
column="month3"
|
|
summary-type="sum"
|
|
css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
<DxGroupItem
|
|
:show-in-group-footer="false"
|
|
:align-by-column="true"
|
|
column="month4"
|
|
summary-type="sum"
|
|
css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
<DxGroupItem
|
|
:show-in-group-footer="false"
|
|
:align-by-column="true"
|
|
column="month5"
|
|
summary-type="sum"
|
|
css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
<DxGroupItem
|
|
:show-in-group-footer="false"
|
|
:align-by-column="true"
|
|
column="month6"
|
|
summary-type="sum"
|
|
css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
<DxGroupItem
|
|
:show-in-group-footer="false"
|
|
:align-by-column="true"
|
|
column="month7"
|
|
summary-type="sum"
|
|
css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
<DxGroupItem
|
|
:show-in-group-footer="false"
|
|
:align-by-column="true"
|
|
column="month8"
|
|
summary-type="sum"
|
|
css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
<DxGroupItem
|
|
:show-in-group-footer="false"
|
|
:align-by-column="true"
|
|
column="month9"
|
|
summary-type="sum"
|
|
css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
<DxGroupItem
|
|
:show-in-group-footer="false"
|
|
:align-by-column="true"
|
|
column="month10"
|
|
summary-type="sum"
|
|
css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
<DxGroupItem
|
|
:show-in-group-footer="false"
|
|
:align-by-column="true"
|
|
column="month11"
|
|
summary-type="sum"
|
|
css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
<DxGroupItem
|
|
:show-in-group-footer="false"
|
|
:align-by-column="true"
|
|
column="month12"
|
|
summary-type="sum"
|
|
css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(e.value)"
|
|
/>
|
|
</DxSummary>
|
|
|
|
<template #formatText="{ data }">
|
|
<p class="text-left cursor-pointer" @click="setMonth('')">
|
|
{{ data.text }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #formatPercentage="{ data }">
|
|
<p class="text-right cursor-pointer" @click="setMonth('')">
|
|
{{ isNumber(data.text) ? formatPercentage(data.text) : data.text }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #formatNumber="{ data }">
|
|
<p class="text-right cursor-pointer" @click="setMonth(data.column.caption)">
|
|
{{
|
|
isNumber(data.text)
|
|
? data.column.caption == '%'
|
|
? formatPercentage(data.text)
|
|
: formatNumber(data.text)
|
|
: data.text
|
|
}}
|
|
</p>
|
|
</template>
|
|
|
|
<template #formatTime="{ data }">
|
|
<p class="!text-right cursor-pointer" @click="setMonth('')">
|
|
{{ parseInt(data.text) ? formatWaktu(data.text) : '-' }}
|
|
</p>
|
|
</template>
|
|
</DxDataGrid>
|
|
</div>
|
|
|
|
<DetailDialog
|
|
:open="dialogDetail"
|
|
title="Detail Rekapitulasi Koreksi Transaksi Individual"
|
|
@on-close="closeDialog"
|
|
: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="onExportingDetail"
|
|
: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"
|
|
/>
|
|
<!-- -->
|
|
<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"
|
|
:calculate-display-value="(item: any) => dataSub.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="tgl_lapor"
|
|
caption="Tgl Lapor"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_lapor_sblm"
|
|
caption="Tgl Lapor Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_lapor_sdh"
|
|
caption="Tgl Lapor Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_penugasan_sblm"
|
|
caption="Tgl Penugasan Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_penugasan_sdh"
|
|
caption="Tgl Penugasan Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_perjalanan_sblm"
|
|
caption="Tgl Perjalanan Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_perjalanan_sdh"
|
|
caption="Tgl Perjalanan Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_pengerjaan_sblm"
|
|
caption="Tgl Pengerjaan Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_pengerjaan_sdh"
|
|
caption="Tgl Pengerjaan Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_nyala_sementara_sblm"
|
|
caption="Tgl Nyala Sementara Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_nyala_sementara_sdh"
|
|
caption="Tgl Nyala Sementara Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_nyala_sblm"
|
|
caption="Tgl Nyala Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_nyala_sdh"
|
|
caption="Tgl Nyala Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_selesai_sblm"
|
|
caption="Tgl Selesai Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tgl_selesai_sdh"
|
|
caption="Tgl Selesai Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="durasi_response_time_sblm"
|
|
caption="Durasi Respon Time Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatTime"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="durasi_response_time_sdh"
|
|
caption="Durasi Respon Time Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatTime"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="durasi_recovery_time_sblm"
|
|
caption="Durasi Recovery Time Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatTime"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="durasi_recovery_time_sdh"
|
|
caption="Durasi Recovery Time Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatTime"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="kelompok_sblm"
|
|
caption="Kelompok ID Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="kelompok_sdh"
|
|
caption="Kelompok ID Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="sub_kelompok_sblm"
|
|
caption="Sub Kelompok ID Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="sub_kelompok_sdh"
|
|
caption="Sub Kelopok ID Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="fasilitas_id_sblm"
|
|
caption="Fasilitas ID Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="fasilitas_id_sdh"
|
|
caption="Fasilitas ID Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="sub_fasilitas_id_sblm"
|
|
caption="Sub Fasilitas ID Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="sub_fasilitas_id_sdh"
|
|
caption="Sub Fasilitas ID Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="equipment_id_sblm"
|
|
caption="Equipment ID Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="equipment_id_sdh"
|
|
caption="Equipment ID Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="event_damage_sblm"
|
|
caption="Event Damage ID Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="event_damage_sdh"
|
|
caption="Event Damage ID Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="cause_id_sblm"
|
|
caption="Cause ID Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="cause_id_sdh"
|
|
caption="Cause ID Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="cause_group_id_sblm"
|
|
caption="Cause Group ID Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="cause_group_id_sdh"
|
|
caption="Cause Group ID Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="weather_id_sblm"
|
|
caption="Weather ID Sebelum"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="weather_id_sdh"
|
|
caption="Weather ID Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="grup_koreksi"
|
|
caption="Group Koreksi"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="alasan"
|
|
caption="ALASAN"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="idpel_nometer"
|
|
caption="IDPEL/NO METER"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
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_posko"
|
|
caption="Posko"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="tindakan"
|
|
caption="Tindakan"
|
|
css-class="custom-table-column"
|
|
cell-template="formatText"
|
|
/>
|
|
<DxColumn
|
|
:width="150"
|
|
alignment="center"
|
|
data-field="penyebab"
|
|
caption="Penyebab"
|
|
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?.tgl_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">Tgl Lapor Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.tgl_lapor_sblm"
|
|
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 Koreksi:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.tgl_lapor_sdh" 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 Penugasan Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.tgl_penugasan_sblm"
|
|
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 Penugasan Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.tgl_penugasan_sdh"
|
|
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 Perjalanan Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.tgl_perjalanan_sblm"
|
|
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 Perjalanan Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.tgl_perjalanan_sdh"
|
|
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 Pengerjaan Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.tgl_pengerjaan_sblm"
|
|
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 Pengerjaan Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.tgl_pengerjaan_sdh"
|
|
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 Nyala Sementara Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.tgl_nyala_sementara_sblm"
|
|
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 Nyala Sementara Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.tgl_nyala_sementara_sdh"
|
|
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 Nyala Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.tgl_nyala_sblm"
|
|
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 Nyala Koreksi:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.tgl_nyala_sdh" 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 Selesai Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.tgl_selesai_sblm"
|
|
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 Selesai Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.tgl_selesai_sdh"
|
|
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 Respon Time Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="
|
|
parseInt(dataSubSelected?.durasi_response_time_sblm)
|
|
? formatWaktu(dataSubSelected?.durasi_response_time_sblm)
|
|
: '-'
|
|
"
|
|
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 Respon Time Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="
|
|
parseInt(dataSubSelected?.durasi_response_time_sdh)
|
|
? formatWaktu(dataSubSelected?.durasi_response_time_sdh)
|
|
: '-'
|
|
"
|
|
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 Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="
|
|
parseInt(dataSubSelected?.durasi_recovery_time_sblm)
|
|
? formatWaktu(dataSubSelected?.durasi_recovery_time_sblm)
|
|
: '-'
|
|
"
|
|
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 Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="
|
|
parseInt(dataSubSelected?.durasi_recovery_time_sdh)
|
|
? formatWaktu(dataSubSelected?.durasi_recovery_time_sdh)
|
|
: '-'
|
|
"
|
|
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">Kelompok ID Sebelum:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.kelompok_sblm" 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">Kelompok ID Koreksi:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.kelompok_sdh" 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">Sub Kelompok ID Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.sub_kelompok_sblm"
|
|
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">Sub Kelopok ID Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.sub_kelompok_sdh"
|
|
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">Fasilitas ID Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.fasilitas_id_sblm"
|
|
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">Fasilitas ID Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.fasilitas_id_sdh"
|
|
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">Sub Fasilitas ID Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.sub_fasilitas_id_sblm"
|
|
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">Sub Fasilitas ID Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.sub_fasilitas_id_sdh"
|
|
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">Equipment ID Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.equipment_id_sblm"
|
|
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">Equipment ID Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.equipment_id_sdh"
|
|
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">Event Damage ID Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.event_damage_sblm"
|
|
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">Event Damage ID Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.event_damage_sdh"
|
|
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">Cause ID Sebelum:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.cause_id_sblm" 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">Cause ID Koreksi:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.cause_id_sdh" 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">Cause Group ID Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.cause_group_id_sblm"
|
|
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">Cause Group ID Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.cause_group_id_sdh"
|
|
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">Weather ID Sebelum:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.weather_id_sblm"
|
|
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">Weather ID Koreksi:</h3>
|
|
<InputText
|
|
:readonly="true"
|
|
:value="dataSubSelected?.weather_id_sdh"
|
|
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">Group Koreksi:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.grup_koreksi" 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">ALASAN:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.alasan" 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">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">Posko:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.nama_posko" 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">Tindakan:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.tindakan" 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">Penyebab:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.penyebab" class-name="flex-1" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DetailDialog>
|
|
|
|
<BufferDialog v-if="loadingData || loadingSubData" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Filters from '@/components/Form/Filters.vue'
|
|
import Type18 from '@/components/Form/FiltersType/Type18.vue'
|
|
import { onMounted, ref } from 'vue'
|
|
import { DxDataGrid } from 'devextreme-vue'
|
|
import {
|
|
DxColumn,
|
|
DxColumnFixing,
|
|
DxExport,
|
|
DxGroupItem,
|
|
DxGrouping,
|
|
DxPager,
|
|
DxPaging,
|
|
DxScrolling,
|
|
DxSearchPanel,
|
|
DxSelection,
|
|
DxSummary
|
|
} from 'devextreme-vue/data-grid'
|
|
import { queries, requestGraphQl } from '@/utils/api/api.graphql'
|
|
import { formatNumber, formatPercentage, isNumber } from '@/utils/numbers'
|
|
import { formatWaktu } from '@/components/Form/FiltersType/reference'
|
|
import DetailDialog from '@/components/Dialogs/DetailDialog.vue'
|
|
import InputText from '@/components/InputText.vue'
|
|
import { apolloClient } from '@/utils/api/api.graphql'
|
|
import { provideApolloClient } from '@vue/apollo-composable'
|
|
import {
|
|
exportToPDF,
|
|
exportToXLSX,
|
|
exportDetailToPDF,
|
|
exportDetailToXLSX,
|
|
exportToDOCX,
|
|
exportDetailToDOCX
|
|
} from '@/report/Gangguan/Rekap/RGangguan_KTI'
|
|
import { getMonthNumber } from '@/utils/texts'
|
|
import BufferDialog from '@/components/Dialogs/BufferDialog.vue'
|
|
import { getDataRowGroup } from '@/utils/helper'
|
|
|
|
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()
|
|
const dataSubSelected = ref()
|
|
const dialogDetail = ref(false)
|
|
const loadingData = ref(false)
|
|
const loadingSubData = ref(false)
|
|
const monthSelected = ref<any>(null)
|
|
const reportMeta = ref({
|
|
uid: { id: 0, name: 'Semua Unit Induk Distribusi/Wilayah' },
|
|
up3: { id: 0, name: 'Semua Unit Pelaksanaan Pelayanan Pelanggan' },
|
|
posko: { id: 0, name: 'Semua Posko' },
|
|
periode: ''
|
|
})
|
|
const grouping = ref<any[]>([
|
|
{
|
|
data: '',
|
|
caption: 'Semua Unit'
|
|
},
|
|
{
|
|
data: 'nama_regional',
|
|
caption: 'Regional'
|
|
},
|
|
{
|
|
data: 'nama_uid',
|
|
caption: 'UID'
|
|
},
|
|
{
|
|
data: 'nama_up3',
|
|
caption: 'UP3'
|
|
}
|
|
])
|
|
const groupDialog = ref(false)
|
|
const groupData = ref<any>(null)
|
|
const groupIndex = ref(0)
|
|
|
|
const onCellClicked = (e: any) => {
|
|
if (e.rowType == 'group') {
|
|
groupDialog.value = true
|
|
groupIndex.value = e.row.groupIndex
|
|
|
|
setMonth(e.column.caption)
|
|
groupData.value = getDataRowGroup(e.data)
|
|
showDetail()
|
|
} else {
|
|
groupDialog.value = false
|
|
}
|
|
}
|
|
|
|
const setMonth = (month: any) => {
|
|
if (month != '') {
|
|
monthSelected.value = getMonthNumber(month) == 0 ? null : getMonthNumber(month)
|
|
} else {
|
|
monthSelected.value = null
|
|
}
|
|
}
|
|
|
|
const getDetail = async () => {
|
|
loadingSubData.value = true
|
|
const { jenisTransaksi } = filters.value
|
|
const dateValue = filters.value.periode.split(' s/d ')
|
|
const ref = dataSelected.value
|
|
const compDate = dateValue[0].split('-').reverse().join('-').split('-')
|
|
|
|
var 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),
|
|
posko: 0,
|
|
idUid: 0,
|
|
idUp3: 0,
|
|
namaRegional: '',
|
|
bulan: monthSelected.value,
|
|
tahun: parseInt(compDate[0]),
|
|
is_transaksi_individual:
|
|
jenisTransaksi.length == 4 || jenisTransaksi.length == 0
|
|
? 0
|
|
: jenisTransaksi.includes('Koreksi Transaksi Individual')
|
|
? 1
|
|
: 2,
|
|
is_cleansing_transaksi_tm:
|
|
jenisTransaksi.length == 4 || jenisTransaksi.length == 0
|
|
? 0
|
|
: jenisTransaksi.includes('Cleansing Traksaksi TM')
|
|
? 1
|
|
: 2,
|
|
is_koreksi_transaksi_tm:
|
|
jenisTransaksi.length == 4 || jenisTransaksi.length == 0
|
|
? 0
|
|
: jenisTransaksi.includes('Koreksi Transaksi TM')
|
|
? 1
|
|
: 2,
|
|
is_koreksi_gangguan_dan_anev:
|
|
jenisTransaksi.length == 4 || jenisTransaksi.length == 0
|
|
? 0
|
|
: jenisTransaksi.includes('Koreksi Kode Gangguan dan Anev')
|
|
? 1
|
|
: 2
|
|
}
|
|
|
|
if (groupDialog.value) {
|
|
if (grouping.value[groupIndex.value].data == 'nama_regional') {
|
|
query = {
|
|
...query,
|
|
namaRegional: groupData.value?.nama_regional ? groupData.value?.nama_regional : ''
|
|
}
|
|
} else if (grouping.value[groupIndex.value].data == 'nama_uid') {
|
|
query = {
|
|
...query,
|
|
idUid: groupData.value?.id_uid ? groupData.value?.id_uid : 0,
|
|
namaRegional: groupData.value?.nama_regional ? groupData.value?.nama_regional : ''
|
|
}
|
|
} else if (grouping.value[groupIndex.value].data == 'nama_up3') {
|
|
query = {
|
|
...query,
|
|
idUid: groupData.value?.id_uid ? groupData.value?.id_uid : 0,
|
|
idUp3: groupData.value?.id_up3 ? groupData.value?.id_up3 : 0,
|
|
namaRegional: groupData.value?.nama_regional ? groupData.value?.nama_regional : ''
|
|
}
|
|
}
|
|
} else {
|
|
query = {
|
|
...query,
|
|
posko: ref?.id_ulp ? ref?.id_ulp : 0,
|
|
idUid: ref?.id_uid ? ref?.id_uid : 0,
|
|
idUp3: ref?.id_up3 ? ref?.id_up3 : 0
|
|
}
|
|
}
|
|
|
|
loadingSubData.value = true
|
|
await requestGraphQl(queries.gangguan.rekap.gangguanKoreksiTransaksiIndividualDetail, query)
|
|
.then((result) => {
|
|
if (result.data.data != undefined) {
|
|
dataSub.value = result.data.data.detailGangguanKoreksiTransaksiIndividu
|
|
} else {
|
|
dataSub.value = []
|
|
}
|
|
reportMeta.value = filters.value
|
|
})
|
|
.catch((err) => {
|
|
console.error(err)
|
|
})
|
|
.finally(() => {
|
|
loadingSubData.value = false
|
|
dialogDetail.value = true
|
|
})
|
|
}
|
|
|
|
const dataGridRef = ref<DxDataGrid | null>(null)
|
|
const clearSelection = () => {
|
|
const dataGrid = dataGridRef.value!.instance!
|
|
dataGrid.clearSelection()
|
|
}
|
|
const showDetail = () => {
|
|
clearSelection()
|
|
dataSub.value = []
|
|
dataSubSelected.value = null
|
|
if (monthSelected.value != null) {
|
|
getDetail()
|
|
}
|
|
}
|
|
|
|
const closeDialog = () => {
|
|
dialogDetail.value = false
|
|
}
|
|
|
|
const onExporting = (e: any) => {
|
|
if (e.format === 'pdf') {
|
|
exportToPDF(reportMeta.value, data.value)
|
|
} else if (e.format === 'xlsx') {
|
|
exportToXLSX(reportMeta.value, e)
|
|
} else {
|
|
exportToDOCX(reportMeta.value, data.value)
|
|
}
|
|
}
|
|
|
|
const onExportingDetail = (e: any) => {
|
|
if (e.format === 'pdf') {
|
|
exportDetailToPDF(reportMeta.value, dataSub.value)
|
|
} else if (e.format === 'xlsx') {
|
|
exportDetailToXLSX(reportMeta.value, e)
|
|
} else {
|
|
exportDetailToDOCX(reportMeta.value, dataSub.value)
|
|
}
|
|
}
|
|
|
|
const onDataSelectionChanged = ({ selectedRowsData }: any) => {
|
|
if (selectedRowsData[0] != undefined) {
|
|
dataSelected.value = selectedRowsData[0]
|
|
showDetail()
|
|
}
|
|
}
|
|
|
|
const onDataSubSelectionChanged = ({ selectedRowsData }: any) => {
|
|
if (selectedRowsData[0] != undefined) {
|
|
dataSubSelected.value = selectedRowsData[0]
|
|
}
|
|
}
|
|
|
|
const resetData = () => {
|
|
data.value = []
|
|
dataSub.value = []
|
|
}
|
|
|
|
const filterData = async (params: any) => {
|
|
resetData()
|
|
const dateValue = filters.value.periode.split(' s/d ')
|
|
const { uid, up3, posko, jenisTransaksi } = params
|
|
|
|
var groupList: any[] = [
|
|
{
|
|
data: '',
|
|
caption: 'Semua Unit'
|
|
},
|
|
{
|
|
data: 'nama_regional',
|
|
caption: 'Regional'
|
|
},
|
|
{
|
|
data: 'nama_uid',
|
|
caption: 'UID'
|
|
},
|
|
{
|
|
data: 'nama_up3',
|
|
caption: 'UP3'
|
|
}
|
|
]
|
|
|
|
if (uid?.id != 0) {
|
|
groupList.forEach((item, index) => {
|
|
if (item.caption == 'Semua Unit') {
|
|
groupList.splice(index, 1)
|
|
}
|
|
})
|
|
|
|
groupList.forEach((item, index) => {
|
|
if (item.caption == 'Regional') {
|
|
groupList.splice(index, 1)
|
|
}
|
|
})
|
|
|
|
if (up3?.id != 0) {
|
|
groupList.forEach((item, index) => {
|
|
if (item.caption == 'UID') {
|
|
groupList.splice(index, 1)
|
|
}
|
|
})
|
|
|
|
if (posko?.id != 0) {
|
|
groupList.forEach((item, index) => {
|
|
if (item.caption == 'UP3') {
|
|
groupList.splice(index, 1)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
grouping.value = groupList
|
|
|
|
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),
|
|
idPosko: posko ? posko.id : 0,
|
|
idUid: uid ? uid.id : 0,
|
|
idUp3: up3 ? up3.id : 0,
|
|
is_transaksi_individual:
|
|
jenisTransaksi.length == 4 || jenisTransaksi.length == 0
|
|
? 0
|
|
: jenisTransaksi.includes('Koreksi Transaksi Individual')
|
|
? 1
|
|
: 2,
|
|
is_cleansing_transaksi_tm:
|
|
jenisTransaksi.length == 4 || jenisTransaksi.length == 0
|
|
? 0
|
|
: jenisTransaksi.includes('Cleansing Traksaksi TM')
|
|
? 1
|
|
: 2,
|
|
is_koreksi_transaksi_tm:
|
|
jenisTransaksi.length == 4 || jenisTransaksi.length == 0
|
|
? 0
|
|
: jenisTransaksi.includes('Koreksi Transaksi TM')
|
|
? 1
|
|
: 2,
|
|
is_koreksi_gangguan_dan_anev:
|
|
jenisTransaksi.length == 4 || jenisTransaksi.length == 0
|
|
? 0
|
|
: jenisTransaksi.includes('Koreksi Kode Gangguan dan Anev')
|
|
? 1
|
|
: 2
|
|
}
|
|
|
|
loadingData.value = true
|
|
await requestGraphQl(queries.gangguan.rekap.gangguanKoreksiTransaksiIndividual, query)
|
|
.then((result) => {
|
|
if (result.data.data != undefined) {
|
|
data.value = result.data.data.rekapitulasiGangguanKoreksiTransaksiIndividual
|
|
} else {
|
|
data.value = []
|
|
}
|
|
reportMeta.value = filters.value
|
|
})
|
|
.catch((err) => {
|
|
console.error(err)
|
|
})
|
|
.finally(() => {
|
|
loadingData.value = false
|
|
})
|
|
}
|
|
|
|
const filters = ref()
|
|
onMounted(() => {
|
|
if (import.meta.env.DEV) {
|
|
data.value = [
|
|
{
|
|
id: 0,
|
|
id_uid: 2,
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
id_up3: 11,
|
|
nama_up3: 'UP3 JATINEGARA',
|
|
id_ulp: 54410,
|
|
nama_ulp: 'UP3 JATINEGARA',
|
|
month1: 0,
|
|
month2: 1,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 1,
|
|
id_uid: 120,
|
|
nama_uid: 'WILAYAH SUMATERA UTARA',
|
|
id_up3: 12100,
|
|
nama_up3: 'UP3 PEMATANG SIANTAR',
|
|
id_ulp: 12113,
|
|
nama_ulp: 'ULP PARAPAT',
|
|
month1: 0,
|
|
month2: 1,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 2,
|
|
id_uid: 131,
|
|
nama_uid: 'WILAYAH SUMATERA BARAT',
|
|
id_up3: 13100,
|
|
nama_up3: 'UP3 PADANG',
|
|
id_ulp: 13105,
|
|
nama_ulp: 'ULP LUBUK ALUNG',
|
|
month1: 0,
|
|
month2: 4,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 3,
|
|
id_uid: 140,
|
|
nama_uid: 'WILAYAH SUMATERA SELATAN, JAMBI & BENGKULU (S2JB)',
|
|
id_up3: 1404,
|
|
nama_up3: 'UP3 JAMBI',
|
|
id_ulp: 14310,
|
|
nama_ulp: 'ULP KOTA BARU',
|
|
month1: 0,
|
|
month2: 8,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 4,
|
|
id_uid: 110,
|
|
nama_uid: 'WILAYAH ACEH',
|
|
id_up3: 116,
|
|
nama_up3: 'UP3 SIGLI',
|
|
id_ulp: 11660,
|
|
nama_ulp: 'ULP SIGLI',
|
|
month1: 0,
|
|
month2: 17,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 5,
|
|
id_uid: 56,
|
|
nama_uid: 'DISTRIBUSI BANTEN',
|
|
id_up3: 18,
|
|
nama_up3: 'UP3 CIKUPA',
|
|
id_ulp: 56640,
|
|
nama_ulp: 'UP3 CIKUPA',
|
|
month1: 0,
|
|
month2: 7,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 6,
|
|
id_uid: 101,
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
id_up3: 52550,
|
|
nama_up3: 'UP3 DEMAK',
|
|
id_ulp: 52554,
|
|
nama_ulp: 'ULP WIROSARI',
|
|
month1: 0,
|
|
month2: 4,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 7,
|
|
id_uid: 101,
|
|
nama_uid: 'DISTRIBUSI JAWA TENGAH & DIY',
|
|
id_up3: 52050,
|
|
nama_up3: 'UP3 SURAKARTA',
|
|
id_ulp: 52058,
|
|
nama_ulp: 'ULP SRAGEN',
|
|
month1: 0,
|
|
month2: 1,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 8,
|
|
id_uid: 103,
|
|
nama_uid: 'DISTRIBUSI JAWA TIMUR',
|
|
id_up3: 150,
|
|
nama_up3: 'UP3 PAMEKASAN',
|
|
id_ulp: 51715,
|
|
nama_ulp: 'ULP KEPULAUAN KANGEAN',
|
|
month1: 0,
|
|
month2: 2,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 9,
|
|
id_uid: 2,
|
|
nama_uid: 'DISTRIBUSI JAKARTA RAYA',
|
|
id_up3: 23,
|
|
nama_up3: 'UP3 LENTENG AGUNG',
|
|
id_ulp: 54740,
|
|
nama_ulp: 'UP3 LENTENG AGUNG',
|
|
month1: 0,
|
|
month2: 9,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 10,
|
|
id_uid: 180,
|
|
nama_uid: 'WILAYAH RIAU DAN KEPULAUAN RIAU',
|
|
id_up3: 183,
|
|
nama_up3: 'UP3 TANJUNGPINANG',
|
|
id_ulp: 18306,
|
|
nama_ulp: 'ULP TANJUNG BATU',
|
|
month1: 0,
|
|
month2: 1,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 11,
|
|
id_uid: 32,
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
id_up3: 32500,
|
|
nama_up3: 'UP3 PARE PARE',
|
|
id_ulp: 32550,
|
|
nama_ulp: 'ULP PANGSID',
|
|
month1: 0,
|
|
month2: 3,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 12,
|
|
id_uid: 140,
|
|
nama_uid: 'WILAYAH SUMATERA SELATAN, JAMBI & BENGKULU (S2JB)',
|
|
id_up3: 1404,
|
|
nama_up3: 'UP3 JAMBI',
|
|
id_ulp: 14320,
|
|
nama_ulp: 'ULP SEBERANG KOTA',
|
|
month1: 0,
|
|
month2: 1,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 13,
|
|
id_uid: 32,
|
|
nama_uid: 'WILAYAH SULAWESI SELATAN, TENGGARA DAN BARAT',
|
|
id_up3: 32300,
|
|
nama_up3: 'UP3 KENDARI',
|
|
id_ulp: 32320,
|
|
nama_ulp: 'ULP WUA WUA',
|
|
month1: 0,
|
|
month2: 1,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
},
|
|
{
|
|
id: 14,
|
|
id_uid: 110,
|
|
nama_uid: 'WILAYAH ACEH',
|
|
id_up3: 114,
|
|
nama_up3: 'UP3 MEULABOH',
|
|
id_ulp: 11444,
|
|
nama_ulp: 'ULP TEUNOM',
|
|
month1: 0,
|
|
month2: 3,
|
|
month3: 0,
|
|
month4: 0,
|
|
month5: 0,
|
|
month6: 0,
|
|
month7: 0,
|
|
month8: 0,
|
|
month9: 0,
|
|
month10: 0,
|
|
month11: 0,
|
|
month12: 0
|
|
}
|
|
]
|
|
}
|
|
})
|
|
</script>
|