const URL = "/one-api/qc/"; export async function save(prm) { try { var resp = await axios.post(URL + 'entry/addnewinstrument', 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 saveall(prm) { try { var resp = await axios.post(URL + 'entry/saveallinstrument', 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 xdelete(token,controlid,instrumentid) { try { var resp = await axios.post(URL + 'entry/deleteinstrument', { controlid: controlid, instrumentid:instrumentid ,token:token}); 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 searchinstrument(prm) { try { var resp = await axios.post(URL + 'entry/searchinstrument',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 searchcity(prm) { try { var resp = await axios.post(URL + 'entry/searchcity',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 searchdistrict(prm) { try { var resp = await axios.post(URL + 'entry/searchdistrict',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 searchkelurahan(prm) { try { var resp = await axios.post(URL + 'entry/searchkelurahan',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(prm) { try { var resp = await axios.post(URL + 'entry/searchcompany',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 searchmou(prm) { try { var resp = await axios.post(URL + 'entry/searchmou',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 searchdoctor(prm) { try { var resp = await axios.post(URL + 'entry/searchdoctor',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 lookupbyname(prm) { try { var resp = await axios.post(URL + 'entry/lookupcontrolbyname', 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 lookupbyid(prm) { try { var resp = await axios.post(URL + 'entry/lookupcontrolbyid', 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 selectaddressdoctor(prm) { try { var resp = await axios.post(URL + 'entry/selectaddressdoctor',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 }; } }