575 lines
31 KiB
Vue
Executable File
575 lines
31 KiB
Vue
Executable File
<template>
|
|
<Filters :report-button="true" @reset-form="data = []" @run-search="() => filterData(filters)" class="mb-4">
|
|
<Type1 @update:filters="(value) => filters = value" />
|
|
</Filters>
|
|
|
|
<div id="data">
|
|
<DxDataGrid 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">
|
|
<DxSelection mode="single" />
|
|
<DxPaging :page-size="5" :enabled="true" />
|
|
<DxPager :visible="true" :allowed-page-sizes="[5, 10, 20]" display-mode="full" :show-page-size-selector="true"
|
|
:show-info="true" :show-navigation-buttons="true" />
|
|
<DxLoadPanel :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" />
|
|
<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="150" alignment="center" data-field="nama_posko" caption="Nama Unit"
|
|
css-class="custom-table-column" cell-template="cellLeft" />
|
|
|
|
<DxColumn :width="150" alignment="center" data-field="nama_posko" caption="Nama Unit"
|
|
css-class="custom-table-column" cell-template="cellLeft" name="namaUnit" :group-index="0" />
|
|
<DxColumn :width="150" alignment="center" data-field="nama_regional" caption="Regional"
|
|
css-class="custom-table-column" cell-template="cellLeft" :group-index="1" />
|
|
<DxColumn :width="150" alignment="center" data-field="nama_uid" caption="UID" css-class="custom-table-column"
|
|
cell-template="cellLeft" :group-index="2" />
|
|
<DxColumn :width="150" alignment="center" data-field="nama_up3" caption="UP3" css-class="custom-table-column"
|
|
cell-template="cellLeft" :group-index="3" />
|
|
|
|
<DxColumn :width="150" alignment="center" data-field="total" data-type="number" caption="Total"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellRight" />
|
|
<DxColumn :width="150" alignment="center" data-field="total_selesai" caption="Selesai" :allow-resizing="false"
|
|
css-class="custom-table-column" cell-template="cellRight" />
|
|
<DxColumn :width="70" alignment="center" data-field="persen_selesai" data-type="number" caption="%"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellRight" />
|
|
<DxColumn :width="150" alignment="center" data-field="total_inproses" data-type="number" caption="In Progress"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellRight" />
|
|
<DxColumn :width="70" alignment="center" data-field="persen_inproses" data-type="number" caption="%"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellRight" />
|
|
<DxColumn alignment="center" caption="Dispatching Time" css-class="custom-table-column">
|
|
<DxColumn :width="150" alignment="center" data-field="avg_durasi_dispatch" data-type="number"
|
|
caption="Rata-Rata" :allow-resizing="false" css-class="custom-table-column" cell-template="cellRight" />
|
|
<DxColumn :width="150" alignment="center" data-field="max_durasi_dispatch" data-type="number" caption="Max"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="data-waktu" />
|
|
<DxColumn :width="150" alignment="center" data-field="min_durasi_dispatch" data-type="number" caption="Min"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="data-waktu" />
|
|
<DxColumn :width="150" alignment="center" data-field="total_diatas_sla_dispatch" data-type="number"
|
|
caption=">SLA" :allow-resizing="false" css-class="custom-table-column" cell-template="cellRight" />
|
|
<DxColumn :width="150" alignment="center" data-field="total_dibawah_sla_dispatch" data-type="number"
|
|
caption="≤SLA" :allow-resizing="false" css-class="custom-table-column" cell-template="cellRight" />
|
|
</DxColumn>
|
|
<DxColumn alignment="center" caption="Response Time" css-class="custom-table-column">
|
|
<DxColumn :width="150" alignment="center" data-field="avg_durasi_response" data-type="number"
|
|
caption="Rata-Rata" :allow-resizing="false" css-class="custom-table-column" cell-template="cellRight" />
|
|
<DxColumn :width="150" alignment="center" data-field="max_durasi_response" data-type="number" caption="Max"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="data-waktu" />
|
|
<DxColumn :width="150" alignment="center" data-field="min_durasi_response" data-type="number" caption="Min"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="data-waktu" />
|
|
<DxColumn :width="150" alignment="center" data-field="total_diatas_sla_response" data-type="number"
|
|
caption=">SLA" :allow-resizing="false" css-class="custom-table-column" cell-template="cellRight" />
|
|
<DxColumn :width="150" alignment="center" data-field="total_dibawah_sla_response" data-type="number"
|
|
caption="≤SLA" :allow-resizing="false" css-class="custom-table-column" cell-template="cellRight" />
|
|
</DxColumn>
|
|
<DxColumn alignment="center" caption="Recovery Time" css-class="custom-table-column">
|
|
<DxColumn :width="150" alignment="center" data-field="avg_durasi_recovery" data-type="number"
|
|
caption="Rata-Rata" :allow-resizing="false" css-class="custom-table-column" cell-template="cellRight" />
|
|
<DxColumn :width="150" alignment="center" data-field="max_durasi_recovery" data-type="number" caption="Max"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="data-waktu" />
|
|
<DxColumn :width="150" alignment="center" data-field="min_durasi_recovery" data-type="number" caption="Min"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="data-waktu" />
|
|
<DxColumn :width="150" alignment="center" data-field="total_diatas_sla_recovery" data-type="number"
|
|
caption=">SLA" :allow-resizing="false" css-class="custom-table-column" cell-template="cellRight" />
|
|
<DxColumn :width="150" alignment="center" data-field="total_dibawah_sla_recovery" data-type="number"
|
|
caption="≤SLA" :allow-resizing="false" css-class="custom-table-column" cell-template="cellRight" />
|
|
</DxColumn>
|
|
|
|
<template #cellCenter="{ data }">
|
|
<p class="cursor-pointer" @click="showDialogDataSelected()">
|
|
{{ data.text }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #cellLeft="{ data }">
|
|
<p class="text-left cursor-pointer" @click="showDialogDataSelected()">
|
|
{{ data.text }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #cellRight="{ data }">
|
|
<p class="text-right cursor-pointer" @click="showDialogDataSelected()">
|
|
{{ isNumber(data.text) ? data.column.caption == '%' ? formatPercentage(data.text) :
|
|
formatNumber(data.text) :
|
|
data.text }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #data-waktu="{ data }">
|
|
<p @click="showDialogDataSelected()">
|
|
{{ parseInt(data.text) ? formatWaktu(data.text) : '-' }}
|
|
</p>
|
|
</template>
|
|
|
|
<DxSummary>
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="total" summary-type="sum"
|
|
css-class="!text-right" :customize-text="(e: any) => formatNumber(parseFloat(e.value.toString()))" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="total_selesai" summary-type="sum"
|
|
css-class="!text-right" :customize-text="(e: any) => formatNumber(parseFloat(e.value.toString()))" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="persen_selesai" summary-type="avg"
|
|
css-class="!text-right" :customize-text="(e: any) => formatPercentage(parseFloat(e.value.toString()))" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="total_inproses" summary-type="sum"
|
|
css-class="!text-right" :customize-text="(e: any) => formatNumber(parseFloat(e.value.toString()))" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="persen_inproses" summary-type="avg"
|
|
css-class="!text-right" :customize-text="(e: any) => formatPercentage(parseFloat(e.value.toString()))" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="avg_durasi_dispatch"
|
|
summary-type="avg" css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(parseFloat(e.value.toString()))" />
|
|
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="max_durasi_dispatch"
|
|
summary-type="avg" css-class="!text-center"
|
|
:customize-text="(e: any) => parseInt(e.value) ? formatWaktu(e.value) : '-'" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="min_durasi_dispatch"
|
|
summary-type="avg" css-class="!text-center"
|
|
:customize-text="(e: any) => parseInt(e.value) ? formatWaktu(e.value) : '-'" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="total_diatas_sla_dispatch"
|
|
summary-type="sum" css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(parseFloat(e.value.toString()))" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="total_dibawah_sla_dispatch"
|
|
summary-type="sum" css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(parseFloat(e.value.toString()))" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="avg_durasi_response"
|
|
summary-type="avg" css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(parseFloat(e.value.toString()))" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="max_durasi_response"
|
|
summary-type="avg" css-class="!text-center"
|
|
:customize-text="(e: any) => parseInt(e.value) ? formatWaktu(e.value) : '-'" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="min_durasi_response"
|
|
summary-type="avg" css-class="!text-center"
|
|
:customize-text="(e: any) => parseInt(e.value) ? formatWaktu(e.value) : '-'" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="total_diatas_sla_response"
|
|
summary-type="sum" css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(parseFloat(e.value.toString()))" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="total_dibawah_sla_response"
|
|
summary-type="sum" css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(parseFloat(e.value.toString()))" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="avg_durasi_recovery"
|
|
summary-type="avg" css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(parseFloat(e.value.toString()))" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="max_durasi_recovery"
|
|
summary-type="avg" css-class="!text-center"
|
|
:customize-text="(e: any) => parseInt(e.value) ? formatWaktu(e.value) : '-'" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="min_durasi_recovery"
|
|
summary-type="avg" css-class="!text-center"
|
|
:customize-text="(e: any) => parseInt(e.value) ? formatWaktu(e.value) : '-'" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="total_diatas_sla_recovery"
|
|
summary-type="sum" css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(parseFloat(e.value.toString()))" />
|
|
<DxGroupItem :show-in-group-footer="false" :align-by-column="true" column="total_dibawah_sla_recovery"
|
|
summary-type="sum" css-class="!text-right"
|
|
:customize-text="(e: any) => formatNumber(parseFloat(e.value.toString()))" />
|
|
|
|
</DxSummary>
|
|
</DxDataGrid>
|
|
</div>
|
|
|
|
<DetailDialog :open="dialogDataSelected" title="Detail Gangguan All" @on-close="closeDialogDataSelected"
|
|
: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 class="max-h-[calc(100vh-140px)]" :data-source="dummyData.gangguan.rekap.detailGangguan"
|
|
: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="5" :enabled="true" />
|
|
<DxPager :visible="true" :allowed-page-sizes="[5, 10, 20]" display-mode="full" :show-page-size-selector="true"
|
|
:show-info="true" :show-navigation-buttons="true" />
|
|
<DxLoadPanel :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="cellRight" />
|
|
<DxColumn :width="150" alignment="center" data-field="nama_posko" caption="Posko"
|
|
css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="no_laporan" caption="No Lapor"
|
|
css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="waktu_lapor" caption="Tgl/Jam Lapor"
|
|
css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="waktu_response" caption="Tgl/Jam Datang"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="waktu_recovery" caption="Tgl/Jam Nyala"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="durasi_response_time" caption="Durasi Response Time"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="data-waktu" />
|
|
<DxColumn :width="150" alignment="center" data-field="durasi_recovery_time" caption="Durasi Recovery Time"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="data-waktu" />
|
|
<DxColumn :width="150" alignment="center" data-field="" caption="Durasi Penugasan Regu"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="data-waktu" />
|
|
<DxColumn :width="150" alignment="center" data-field="" caption="Durasi Perjalanan Regu"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="data-waktu" />
|
|
<DxColumn :width="150" alignment="center" data-field="jarak_closing" caption="Jarak Closing (m)"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="dispatch_oleh" caption="Dispatch Oleh"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="idpel_nometer" caption="IDPEL/NO METER"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="nama_pelapor" caption="Nama Pelapor"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="200" alignment="center" data-field="alamat_pelapor" caption="Alamat Pelapor"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="no_telp_pelapor" caption="No Telp Pelapor"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="200" alignment="center" data-field="keterangan_pelapor" caption="Keterangan Pelapor"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="pembuat_laporan" caption="Sumber Lapor"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="diselesaikan_oleh" caption="Diselesaikan Oleh"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="status_akhir" caption="Status" :allow-resizing="false"
|
|
css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="referensi_marking" caption="Referensi Marking"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="kode_gangguan" caption="Kode Gangguan"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="jenis_gangguan" caption="Jenis Gangguan"
|
|
:allow-resizing="false" css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="penyebab" caption="Penyebab" :allow-resizing="false"
|
|
css-class="custom-table-column" cell-template="cellLeft" />
|
|
<DxColumn :width="150" alignment="center" data-field="tindakan" caption="Tindakan" :allow-resizing="false"
|
|
css-class="custom-table-column" cell-template="cellLeft" />
|
|
|
|
<template #cellLeft="{ data }">
|
|
<p class="text-left cursor-pointer">
|
|
{{ data.text }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #cellRight="{ data }">
|
|
<p class="text-right cursor-pointer">
|
|
{{ data.text }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #data-waktu="{ 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">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">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/Jam 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">Tgl/Jam Datang:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.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-[135px] text-gray-800">Tgl/Jam Nyala:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.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-[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">Durasi Penugasan Regu:</h3>
|
|
<InputText :readonly="true" class-name="flex-1" :value="parseInt(dataSubSelected?.durasi_recovery_time)
|
|
? formatWaktu(dataSubSelected?.durasi_recovery_time)
|
|
: '-'
|
|
" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between w-full">
|
|
<h3 class="text-sm font-medium w-[135px] text-gray-800">Durasi Perjalanan Regu:</h3>
|
|
<InputText :readonly="true" :value="parseInt(dataSubSelected?.durasi_dispatch_time)
|
|
? formatWaktu(dataSubSelected?.durasi_dispatch_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">Jarak Closing (m):</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.jarak_closing" 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">Dispatch Oleh:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.dispatch_oleh" 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">Sumber Lapor:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.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-[135px] text-gray-800">Diselesaikan Oleh:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.diselesaikan_oleh" 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">Referensi Marking:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.referensi_marking" 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">Kode Gangguan:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.kode_gangguan" 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">Jenis Gangguan:</h3>
|
|
<InputText :readonly="true" :value="dataSubSelected?.jenis_gangguan" 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 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>
|
|
</div>
|
|
|
|
</DetailDialog>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Filters from '@/components/Form/Filters.vue'
|
|
import Type1 from '@/components/Form/FiltersType/Type1.vue'
|
|
import { formatWaktu } from '@/components/Form/FiltersType/reference'
|
|
import { DxDataGrid } from 'devextreme-vue'
|
|
import {
|
|
DxColumn,
|
|
DxExport,
|
|
DxLoadPanel,
|
|
DxPager,
|
|
DxPaging,
|
|
DxSearchPanel,
|
|
DxSelection,
|
|
DxSummary,
|
|
DxGroupItem,
|
|
} from 'devextreme-vue/data-grid'
|
|
import { onMounted, ref, watch } from 'vue'
|
|
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 { queries } from '@/utils/api/api.graphql'
|
|
import { dummyData } from '@/utils/dummy'
|
|
import { formatNumber, formatPercentage, isNumber } from '@/utils/numbers'
|
|
import DetailDialog from '@/components/Dialogs/DetailDialog.vue'
|
|
import InputText from '@/components/InputText.vue'
|
|
|
|
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 dialogDataSelected = ref(false)
|
|
const closeDialogDataSelected = () => dialogDataSelected.value = false
|
|
const loadingData = ref(false)
|
|
const loadingSubData = ref(false)
|
|
|
|
|
|
const filterData = (params: any) => {
|
|
const { onResult, onError, loading, refetch } = useQuery(queries.gangguan.rekap.gangguanAll, {
|
|
dateFrom: new Date().toISOString().slice(0, 10),
|
|
dateTo: new Date().toISOString().slice(0, 10),
|
|
posko: 0,
|
|
idUid: 0,
|
|
idUp3: 0
|
|
})
|
|
|
|
const { posko, uid, up3 } = params
|
|
const dateValue = params.periode.split(' s/d ')
|
|
|
|
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),
|
|
posko: posko ? posko.id : 0,
|
|
idUid: uid ? uid.id : 0,
|
|
idUp3: up3 ? up3.id : 0
|
|
})
|
|
|
|
onResult((queryResult) => {
|
|
if (queryResult.data != undefined) {
|
|
data.value = queryResult.data.rekapitulasiAllGangguan
|
|
}
|
|
console.log(queryResult.loading)
|
|
console.log(queryResult.networkStatus)
|
|
})
|
|
|
|
onError((error) => {
|
|
console.log(error)
|
|
})
|
|
|
|
watch(loading, (value) => {
|
|
loadingData.value = value
|
|
})
|
|
}
|
|
|
|
const getDetail = () => {
|
|
const { onResult, onError, loading, refetch } = useQuery(queries.gangguan.rekap.gangguanAllDetail, {
|
|
dateFrom: new Date().toISOString().slice(0, 10),
|
|
dateTo: new Date().toISOString().slice(0, 10),
|
|
posko: 0,
|
|
idUid: 0,
|
|
idUp3: 0
|
|
})
|
|
|
|
const { posko, uid, up3 } = filters
|
|
const dateValue = params.periode.split(' s/d ')
|
|
|
|
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),
|
|
posko: posko ? posko.id : 0,
|
|
idUid: uid ? uid.id : 0,
|
|
idUp3: up3 ? up3.id : 0
|
|
})
|
|
|
|
onResult((queryResult) => {
|
|
if (queryResult.data != undefined) {
|
|
dataSub.value = queryResult.data.detailGangguan
|
|
}
|
|
})
|
|
|
|
onError((error) => {
|
|
console.log(error)
|
|
})
|
|
|
|
watch(loading, (value) => {
|
|
loadingSubData.value = value
|
|
})
|
|
|
|
dataSub.value = dummyData.gangguan.rekap.detailGangguan
|
|
}
|
|
const showDialogDataSelected = () => {
|
|
dialogDataSelected.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) => {
|
|
const data = selectedRowsData[0]
|
|
dataSelected.value = data
|
|
console.log(data)
|
|
}
|
|
|
|
const onDataSubSelectionChanged = ({ selectedRowsData }: any) => {
|
|
const data = selectedRowsData[0]
|
|
dataSubSelected.value = data
|
|
console.log(data)
|
|
}
|
|
|
|
const filters = ref()
|
|
onMounted(() => {
|
|
data.value = dummyData.gangguan.rekap.rekapitulasiAllGangguan
|
|
})
|
|
</script>
|