fix: daftar gangguan dialihkan posko lain, daftar keluhan lapor lebih dari 1 kali, keluhan selesai di cc

This commit is contained in:
kur0nek-o 2024-05-09 17:39:29 +07:00
parent 3f53f68257
commit 8e7a3caab8
3 changed files with 25 additions and 4 deletions

View File

@ -312,7 +312,7 @@
</div> </div>
<div class="flex flex-row items-center justify-between w-full"> <div class="flex flex-row items-center justify-between w-full">
<h3 class="text-sm font-medium w-[170px] text-gray-800">Pembuat Laporan:</h3> <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" /> <InputText :readonly="true" :value="dataSelected?.no_telp_pelapor" class-name="flex-1" />
</div> </div>
@ -327,7 +327,7 @@
</div> </div>
<div class="flex flex-row items-center justify-between w-full"> <div class="flex flex-row items-center justify-between w-full">
<h3 class="text-sm font-medium w-[170px] text-gray-800">Posko:</h3> <h3 class="text-sm font-medium w-[170px] text-gray-800">Unit Layanan Pelanggan:</h3>
<InputText :readonly="true" :value="dataSelected?.nama_posko_lama" class-name="flex-1" /> <InputText :readonly="true" :value="dataSelected?.nama_posko_lama" class-name="flex-1" />
</div> </div>
</div> </div>

View File

@ -195,7 +195,7 @@
<DetailDialog <DetailDialog
:open="dialogDetail" :open="dialogDetail"
:title="detailType == 'table' ? 'Daftar Lapor ULang' : 'Detail Gangguan'" :title="detailType == 'table' ? 'Daftar Lapor Ulang' : 'Detail Keluhan'"
@on-close="closeDialog" @on-close="closeDialog"
:full-width="detailType == 'table'" :full-width="detailType == 'table'"
> >

View File

@ -75,6 +75,14 @@
css-class="custom-table-column !align-top" css-class="custom-table-column !align-top"
cell-template="formatText" cell-template="formatText"
/> />
<DxColumn
:width="170"
alignment="center"
data-field="nama_up3"
caption="UP3"
css-class="custom-table-column !align-top"
cell-template="formatText"
/>
<DxColumn <DxColumn
:width="170" :width="170"
alignment="center" alignment="center"
@ -141,6 +149,14 @@
css-class="custom-table-column !align-top" css-class="custom-table-column !align-top"
cell-template="formatText" cell-template="formatText"
/> />
<DxColumn
:width="170"
alignment="center"
data-field="waktu_lapor"
caption="Tgl Lapor"
css-class="custom-table-column !align-top"
cell-template="formatText"
/>
<DxColumn <DxColumn
:width="170" :width="170"
alignment="center" alignment="center"
@ -215,7 +231,7 @@
<div class="flex flex-row items-center justify-between w-full"> <div class="flex flex-row items-center justify-between w-full">
<h3 class="text-sm font-medium w-[170px] text-gray-800">Contact Center:</h3> <h3 class="text-sm font-medium w-[170px] text-gray-800">Contact Center:</h3>
<InputText :readonly="true" :value="dataSelected?.media" class-name="flex-1" /> <InputText :readonly="true" :value="dataSelected?.nama_ulp" class-name="flex-1" />
</div> </div>
<div class="flex flex-row items-center justify-between w-full"> <div class="flex flex-row items-center justify-between w-full">
@ -294,6 +310,11 @@
<h3 class="text-sm font-medium w-[170px] text-gray-800">Jumlah Lapor Ulang:</h3> <h3 class="text-sm font-medium w-[170px] text-gray-800">Jumlah Lapor Ulang:</h3>
<InputText :readonly="true" :value="dataSelected?.jumlah_lapor" class-name="flex-1" /> <InputText :readonly="true" :value="dataSelected?.jumlah_lapor" class-name="flex-1" />
</div> </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> </div>
</DetailDialog> </DetailDialog>
</template> </template>