no message
This commit is contained in:
parent
a51042d48a
commit
3bb8018784
1 changed files with 2 additions and 2 deletions
|
|
@ -22,10 +22,10 @@ export const useChekIn = defineStore('checkin', () => {
|
|||
checkInDateTime: e.checkInDate,
|
||||
checkInTime: e.checkInTime,
|
||||
checkOutTime: e.checkOutTime != '' ? e.checkOutTime : '-',
|
||||
checkInStatus: convertStatus(e.checkInStatus),
|
||||
checkInStatus: e.checkInStatus ? convertStatus(e.checkInStatus) : '-',
|
||||
checkOutStatus:
|
||||
e.checkOutStatus != null ? convertStatus(e.checkOutStatus) : '-',
|
||||
checkInLocation: e.checkInLocation,
|
||||
checkInLocation: e.checkInLocation ? e.checkInLocation : '-',
|
||||
checkOutLocation: e.checkOutLocation != '' ? e.checkOutLocation : '-',
|
||||
editStatus: e.editStatus != '' ? convertEditStatus(e.editStatus) : '',
|
||||
editReason: e.editReason,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue