const URL = "/one-api/homeservice/masterdata/"; export async function save(prm) { try { var resp = await axios.post(URL + 'mou/addnewpgbank', 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,id) { try { var resp = await axios.post(URL + 'mou/deletepgbank', { id: id ,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 searchcompany(prm) { try { var resp = await axios.post(URL + 'mou/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 selectmou(token) { try { var resp = await axios.post(URL + 'mou/selectmou',{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 searchmou(prm) { try { var resp = await axios.post(URL + 'mou/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 searchdistrict(prm) { try { var resp = await axios.post(URL + 'mou/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 + 'mou/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 searchdoctor(prm) { try { var resp = await axios.post(URL + 'mou/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 + 'mou/lookuppgbankbyname', 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 + 'mou/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 }; } }