step 1 : download 10.9.9.2 one-process-resultentry-v106

This commit is contained in:
sindhu
2024-02-19 10:06:06 +07:00
parent f78498b779
commit 1ab1a8e6f1
98 changed files with 17776 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
const URL = "/one-api/mockup/process/resultentry-v106/";
export async function update(token, order_detail_id) {
try {
var resp = await axios.post(URL + 're_normal/update', {
token: token,
order_detail_id
});
if (resp.status != 200) {
return {
status: "ERR",
message: resp.statusText
};
}
let data = resp.data;
return data;
} catch(e) {
return {
status: "ERR",
message: e.message
};
}
}