Flatten nested repos

This commit is contained in:
sas.fajri
2026-04-27 10:13:31 +07:00
parent 01c2963a43
commit 8347aef8f4
17935 changed files with 5015229 additions and 3 deletions

View File

@@ -0,0 +1,85 @@
const URL = "/one-api/klinik/setting/";
export async function searchmou(token,companyid,search) {
try {
var resp = await axios.post(URL + 'searchmou', {
token: token,
companyid: companyid,
search: search
});
if (resp.status != 200) {
return {
status: "ERR",
message: resp.statusText
}
}
let data = resp.data;
return data;
} catch (e) {
return {
status: "ERR",
message: e.message
};
}
}
export async function savesetting(prm) {
try {
var resp = await axios.post(URL + 'savesetting',prm);
if (resp.status != 200) {
return {
status: "ERR",
message: resp.statusText
};
}
let data = resp.data;
return data;
} catch (e) {
return {
status: "ERR",
message: e.message
};
}
}
export async function searchcompany(token,search) {
try {
var resp = await axios.post(URL + 'searchcompany', {
token: token,
search: search
});
if (resp.status != 200) {
return {
status: "ERR",
message: resp.statusText
}
}
let data = resp.data;
return data;
} catch (e) {
return {
status: "ERR",
message: e.message
};
}
}
export async function get_data(prm) {
try {
var resp = await axios.post(URL + 'get_data', prm);
if (resp.status != 200) {
return {
status: "ERR",
message: resp.statusText
}
}
let data = resp.data;
return data;
} catch (e) {
return {
status: "ERR",
message: e.message
};
}
}