change dialog form po aset, separate form order / form aset

This commit is contained in:
2026-07-08 17:14:35 +07:00
parent a1aab09ac9
commit 1f5bcfacd5
17 changed files with 1216 additions and 205 deletions

View File

@@ -0,0 +1,20 @@
const URL = "";
async function request(endpoint, param) {
try {
const resp = await axios.post(URL + endpoint, param);
if (resp.status !== 200) {
throw new Error(resp.statusText);
}
return resp.data;
} catch (e) {
return {
status: "ERR",
message: e.message
};
}
}
export async function lookupOrderAssetReceived(param) {
return request("/lookupOrderAssetReceived", param);
}