diff --git a/src/api/wms/instockOrder/index.ts b/src/api/wms/instockOrder/index.ts index e8009dc..d26e0e6 100644 --- a/src/api/wms/instockOrder/index.ts +++ b/src/api/wms/instockOrder/index.ts @@ -51,6 +51,18 @@ export const updateInstockOrder = (data: InstockOrderForm) => { }); }; +/** + * 入库单审批 + * @param data + */ +export const approveInstockOrder = (data: InstockOrderForm) => { + return request({ + url: '/wms/instockOrder/approveInstockOrder', + method: 'put', + data: data + }); +}; + /** * 删除入库单 * @param instockId diff --git a/src/views/wms/configuration/index.vue b/src/views/wms/configuration/index.vue index 8e3c53a..760d571 100644 --- a/src/views/wms/configuration/index.vue +++ b/src/views/wms/configuration/index.vue @@ -4,9 +4,9 @@
- + @@ -14,7 +14,9 @@ - + + + @@ -24,11 +26,20 @@ - - + + + + - + + + 搜索 @@ -60,7 +71,7 @@ - + @@ -80,6 +91,7 @@ +