const URL = "/one-api/mockup/receive-item-po/ReceiveItemPoInventaris"; export async function search(params) { try { var resp = await axios.post(URL + '/searchRO', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function getSupplier(params) { try { var resp = await axios.post(URL + '/getSupplier', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function getRuangan(params) { try { var resp = await axios.post(URL + '/getRuangan', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function getPurchaseOrder(params) { try { var resp = await axios.post(URL + '/getPurchaseOrder', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function getWarehouse(params) { try { var resp = await axios.post(URL + '/getWarehouse', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function getItem(params) { try { var resp = await axios.post(URL + '/getItem', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function getItemUpdate(params) { try { var resp = await axios.post(URL + '/getItemUpdate', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function saveRO(params) { try { var resp = await axios.post(URL + '/saveRO', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function confirmRO(params) { try { var resp = await axios.post(URL + '/confirmRO', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function deleteRO(params) { try { var resp = await axios.post(URL + '/deleteRO', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function saveInspeksi(params) { try { var resp = await axios.post(URL + '/saveInspeksi', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function getItemDataInspeksi(params) { try { var resp = await axios.post(URL + '/getItemDataInspeksi', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function getListStaff(params) { try { var resp = await axios.post(URL + "/getListStaff", params) if (resp.status != 200) { return { status: "ERR", message: resp.statusText } } let data = resp.data return data } catch (error) { return { status: "ERR", message: error.message } } } export async function saveEditRO(params) { try { var resp = await axios.post(URL + '/saveEditRO', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function saveHandover(params) { try { var resp = await axios.post(URL + '/saveHandover', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function saveFiles(params) { try { var resp = await axios.post(URL + '/saveFiles', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function getBarcodes(params) { try { var resp = await axios.post(URL + '/getBarcodes', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } } export async function template(params) { try { var resp = await axios.post(URL + '/', params); if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch (error) { return { status: "ERR", message: error.message }; } }