Update version.json to 0.0.138-vm
This commit is contained in:
@ -775,7 +775,7 @@
|
||||
<DxColumn
|
||||
:width="150"
|
||||
alignment="center"
|
||||
data-field=""
|
||||
data-field="durasi_dispatch_time"
|
||||
caption="Durasi Penugasan Regu"
|
||||
:allow-resizing="false"
|
||||
css-class="custom-table-column"
|
||||
@ -784,7 +784,7 @@
|
||||
<DxColumn
|
||||
:width="150"
|
||||
alignment="center"
|
||||
data-field=""
|
||||
data-field="durasi_perjalanan_time"
|
||||
caption="Durasi Perjalanan Regu"
|
||||
:allow-resizing="false"
|
||||
css-class="custom-table-column"
|
||||
@ -1013,8 +1013,8 @@
|
||||
:readonly="true"
|
||||
class-name="flex-1"
|
||||
:value="
|
||||
parseInt(dataSubSelected?.durasi_recovery_time)
|
||||
? formatWaktu(dataSubSelected?.durasi_recovery_time)
|
||||
parseInt(dataSubSelected?.durasi_dispatch_time)
|
||||
? formatWaktu(dataSubSelected?.durasi_dispatch_time)
|
||||
: '-'
|
||||
"
|
||||
/>
|
||||
@ -1025,8 +1025,8 @@
|
||||
<InputText
|
||||
:readonly="true"
|
||||
:value="
|
||||
parseInt(dataSubSelected?.durasi_dispatch_time)
|
||||
? formatWaktu(dataSubSelected?.durasi_dispatch_time)
|
||||
parseInt(dataSubSelected?.durasi_perjalanan_time)
|
||||
? formatWaktu(dataSubSelected?.durasi_perjalanan_time)
|
||||
: '-'
|
||||
"
|
||||
class-name="flex-1"
|
||||
|
@ -442,6 +442,7 @@ import {
|
||||
DxExport,
|
||||
DxGroupItem,
|
||||
DxGrouping,
|
||||
DxPager,
|
||||
DxPaging,
|
||||
DxScrolling,
|
||||
DxSearchPanel,
|
||||
|
@ -483,6 +483,14 @@
|
||||
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"
|
||||
@ -847,8 +855,8 @@
|
||||
<InputText
|
||||
:readonly="true"
|
||||
:value="
|
||||
parseInt(dataSelected?.durasi_response_time_sblm)
|
||||
? formatWaktu(dataSelected?.durasi_response_time_sblm)
|
||||
parseInt(dataSubSelected?.durasi_response_time_sblm)
|
||||
? formatWaktu(dataSubSelected?.durasi_response_time_sblm)
|
||||
: '-'
|
||||
"
|
||||
class-name="flex-1"
|
||||
@ -860,8 +868,21 @@
|
||||
<InputText
|
||||
:readonly="true"
|
||||
:value="
|
||||
parseInt(dataSelected?.durasi_response_time_sdh)
|
||||
? formatWaktu(dataSelected?.durasi_response_time_sdh)
|
||||
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"
|
||||
@ -873,8 +894,8 @@
|
||||
<InputText
|
||||
:readonly="true"
|
||||
:value="
|
||||
parseInt(dataSelected?.durasi_recovery_time_sdh)
|
||||
? formatWaktu(dataSelected?.durasi_recovery_time_sdh)
|
||||
parseInt(dataSubSelected?.durasi_recovery_time_sdh)
|
||||
? formatWaktu(dataSubSelected?.durasi_recovery_time_sdh)
|
||||
: '-'
|
||||
"
|
||||
class-name="flex-1"
|
||||
|
@ -470,7 +470,7 @@
|
||||
caption="ID Pelanggan"
|
||||
:allow-resizing="false"
|
||||
css-class="custom-table-column"
|
||||
cell-template="formatNumber"
|
||||
cell-template="formatText"
|
||||
/>
|
||||
<DxColumn
|
||||
:width="150"
|
||||
|
@ -2245,6 +2245,7 @@ export const queries = {
|
||||
durasi_dispatch_time
|
||||
durasi_response_time
|
||||
durasi_recovery_time
|
||||
durasi_perjalanan_time
|
||||
status_akhir
|
||||
is_marking
|
||||
referensi_marking
|
||||
|
Reference in New Issue
Block a user