Merge branch 'dev' into feat/surat-kontrol-135
This commit is contained in:
@@ -31,7 +31,7 @@ export async function getValueLabelList(params: any = null): Promise<{ value: st
|
||||
const resultData = result.body?.data || []
|
||||
data = resultData.map((item: any) => ({
|
||||
value: item.id ? Number(item.id) : item.code,
|
||||
label: item.name,
|
||||
label: item.person.name,
|
||||
}))
|
||||
}
|
||||
return data
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
// Base
|
||||
import type { CheckInFormData } from '~/schemas/encounter.schema'
|
||||
import * as base from './_crud-base'
|
||||
|
||||
// Constants
|
||||
@@ -46,3 +47,16 @@ export function getValueLabelListConstants() {
|
||||
.filter(([key]) => allowed.includes(key))
|
||||
.map(([key, value]) => ({ value: key, label: value }))
|
||||
}
|
||||
|
||||
export async function checkIn(id: number, data: CheckInFormData) {
|
||||
try {
|
||||
const resp = await xfetch(`${path}/${id}/check-in`, 'PATCH', data)
|
||||
const result: any = {}
|
||||
result.success = resp.success
|
||||
result.body = (resp.body as Record<string, any>) || {}
|
||||
return result
|
||||
} catch (error) {
|
||||
console.error(`Error putting ${name}:`, error)
|
||||
throw new Error(`Failed to put ${name}`)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user