feat(sep): testing vclaim monitoring

This commit is contained in:
riefive
2025-10-17 14:34:21 +07:00
parent b25b463725
commit 90ab600755
7 changed files with 73 additions and 8 deletions
@@ -0,0 +1,9 @@
// Base
import * as base from './_crud-base'
const path = '/api/vclaim/diagnosaprb'
const name = 'diagnose-referral'
export function getList(params: any = null) {
return base.getList(path, params, name)
}
+9
View File
@@ -0,0 +1,9 @@
// Base
import * as base from './_crud-base'
const path = '/api/vclaim/diagnosa'
const name = 'diagnose'
export function getList(params: any = null) {
return base.getList(path, params, name)
}
@@ -0,0 +1,14 @@
// Base
import * as base from './_crud-base'
const path = '/api/vclaim/monitoring/history'
const name = 'monitoring-history'
export function getList(params: any = null) {
let url = path
if (params && params?.nop) {
url += `/${params.nop}`
delete params.nop
}
return base.getList(url, params, name)
}
@@ -0,0 +1,9 @@
// Base
import * as base from './_crud-base'
const path = '/api/vclaim/monitoring/kunjungan'
const name = 'monitoring-visit'
export function getList(params: any = null) {
return base.getList(path, params, name)
}