fix: resolve conflict

This commit is contained in:
riefive
2025-10-20 13:56:37 +07:00
parent c5814985d1
commit ad56cf60ac
7 changed files with 73 additions and 8 deletions

No files matched your search

@@ -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)
}