update ขอโอนรับโอน

This commit is contained in:
Warunee Tamkoo 2023-08-04 22:15:59 +07:00
parent c613d3743e
commit 01f0ef0062
6 changed files with 1947 additions and 333 deletions

View file

@ -2,6 +2,7 @@ import env from "../index";
const placement = `${env.API_PLACEMENT_URI}/placement`;
const orgTree = `${env.API_URI_ORG_TREE}`;
const order = `${env.API_PLACEMENT_URI}`;
const receive = `${env.API_PLACEMENT_URI}/placement/Receive`;
export default {
MainDetail: (year: number) => `${placement}/exam/${year}`,
@ -60,4 +61,8 @@ export default {
deleteOrder:(orderId:string) => `${order}/order/${orderId}`,
typeOrder: () => `${order}/order/order-type`,
examroundOrder: () => `${order}/order/detail/exam-round`,
receiveData: () => `${receive}`,
receiveDataId: (id: string) => `${receive}/${id}`,
receivePosition: (id: string) => `${receive}/position/${id}`,
};