feat(sep): implement dpjp

This commit is contained in:
riefive
2025-10-20 13:24:43 +07:00
parent c3a7352fb8
commit 499548c770
3 changed files with 53 additions and 25 deletions
+16 -2
View File
@@ -1,9 +1,23 @@
// Base
import * as base from './_crud-base'
const path = '/api/vclaim/dokter-dpjp'
const name = 'doctor-attending'
const path = '/api/vclaim/referensi/dokter-dpjp'
const name = 'doctor-dpjp'
export function getList(params: any = null) {
return base.getList(path, params, name)
}
export async function getValueLabelList(params: any = null): Promise<{ value: string; label: string }[]> {
let data: { value: string; label: string }[] = []
const result = await getList(params)
if (result.success) {
const resultData = result.body?.response?.list || []
const resultUnique = [...new Map(resultData.map((item: any) => [item.kode, item])).values()]
data = resultUnique.map((item: any) => ({
value: item.kode ? String(item.kode) : '',
label: item.nama,
}))
}
return data
}