Update total duration and response time in Gangguan components
This commit is contained in:
parent
abc0dbdb2a
commit
2ecb430613
@ -1373,6 +1373,10 @@ body {
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.mb-5 {
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.mb-10 {
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
|
@ -409,6 +409,8 @@ const GET_REKAP_JENIS_GANGGUAN = gql`
|
||||
tipe_permasalahan
|
||||
total
|
||||
kode
|
||||
total_durasi_recovery
|
||||
total_durasi_response
|
||||
total_diatas_sla_recovery
|
||||
total_diatas_sla_response
|
||||
total_dibawah_sla_recovery
|
||||
@ -499,7 +501,7 @@ const filterData = (params: any) => {
|
||||
},
|
||||
responseTime: {
|
||||
menit: {
|
||||
total: item.avg_durasi_response,
|
||||
total: item.total_durasi_response,
|
||||
rataRata: item.avg_durasi_response,
|
||||
max: item.max_durasi_response,
|
||||
min: item.min_durasi_response
|
||||
@ -511,7 +513,7 @@ const filterData = (params: any) => {
|
||||
},
|
||||
recoveryTime: {
|
||||
menit: {
|
||||
total: item.avg_durasi_recovery,
|
||||
total: item.total_durasi_recovery,
|
||||
rataRata: item.avg_durasi_recovery,
|
||||
max: item.max_durasi_recovery,
|
||||
min: item.min_durasi_recovery
|
||||
|
@ -510,6 +510,8 @@ const GET_REKAPITULASI_GANGGUAN_PER_POSKO = gql`
|
||||
persen_inproses
|
||||
persen_selesai
|
||||
total
|
||||
total_durasi_recovery
|
||||
total_durasi_response
|
||||
total_diatas_sla_recovery
|
||||
total_diatas_sla_response
|
||||
total_dibawah_sla_recovery
|
||||
@ -596,7 +598,7 @@ const filterData = (params: any) => {
|
||||
},
|
||||
responseTime: {
|
||||
menit: {
|
||||
total: 0,
|
||||
total: item.total_durasi_response,
|
||||
rataRata: item.avg_durasi_response,
|
||||
max: item.max_durasi_response,
|
||||
min: item.min_durasi_response
|
||||
@ -608,7 +610,7 @@ const filterData = (params: any) => {
|
||||
},
|
||||
recoveryTime: {
|
||||
menit: {
|
||||
total: 0,
|
||||
total: item.total_durasi_recovery,
|
||||
rataRata: item.avg_durasi_recovery,
|
||||
max: item.max_durasi_recovery,
|
||||
min: item.min_durasi_recovery
|
||||
|
@ -410,6 +410,8 @@ const GET_REKAPITULASI_GANGGUAN_PER_REGU = gql`
|
||||
persen_selesai
|
||||
nama_posko
|
||||
total
|
||||
total_durasi_recovery
|
||||
total_durasi_response
|
||||
total_diatas_sla_recovery
|
||||
total_diatas_sla_response
|
||||
total_dibawah_sla_recovery
|
||||
@ -498,7 +500,7 @@ const filterData = (params: any) => {
|
||||
},
|
||||
responseTime: {
|
||||
menit: {
|
||||
total: 0,
|
||||
total: item.total_durasi_response,
|
||||
rataRata: item.avg_durasi_response,
|
||||
max: item.max_durasi_response,
|
||||
min: item.min_durasi_response
|
||||
@ -510,7 +512,7 @@ const filterData = (params: any) => {
|
||||
},
|
||||
recoveryTime: {
|
||||
menit: {
|
||||
total: 0,
|
||||
total: item.total_durasi_recovery,
|
||||
rataRata: item.avg_durasi_recovery,
|
||||
max: item.max_durasi_recovery,
|
||||
min: item.min_durasi_recovery
|
||||
|
@ -51,7 +51,7 @@
|
||||
<DxColumn
|
||||
:width="120"
|
||||
alignment="center"
|
||||
data-field="id_uid"
|
||||
data-field="nama_uid"
|
||||
caption="Nama UID"
|
||||
css-class="custom-table-column"
|
||||
group-index="0"
|
||||
@ -115,7 +115,7 @@
|
||||
<DxColumn
|
||||
:width="120"
|
||||
alignment="center"
|
||||
data-field="total_response"
|
||||
data-field="total_durasi_response"
|
||||
data-type="number"
|
||||
caption="Total"
|
||||
css-class="custom-table-column"
|
||||
@ -171,7 +171,7 @@
|
||||
<DxColumn
|
||||
:width="120"
|
||||
alignment="center"
|
||||
data-field="total_recovery"
|
||||
data-field="total_durasi_recovery"
|
||||
data-type="number"
|
||||
caption="Total"
|
||||
css-class="custom-table-column"
|
||||
|
Loading…
x
Reference in New Issue
Block a user