Merge branch 'develop' of github.com:Frappet/hrms-checkin into develop
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m53s

* 'develop' of github.com:Frappet/hrms-checkin:
  refactor(history): formatDate Colunm checkInTime  checkOutTime
This commit is contained in:
Warunee Tamkoo 2026-04-27 19:21:34 +07:00
commit 42c89c034d
3 changed files with 17 additions and 11 deletions

View file

@ -33,6 +33,7 @@ export const useCheckIn = defineStore('checkin', () => {
editStatus: e.editStatus != '' ? convertEditStatus(e.editStatus) : '',
editReason: e.editReason,
isEdit: e.isEdit,
checkOutDate: e.checkOutDate ? date2Thai(e.checkOutDate) : null,
}))
rows.value = dataList
}