4 changed files with 1779 additions and 18 deletions
-
2src/api/qc/Inbound_notification.js
-
28src/api/qc/outbound_notification.js
-
60src/views/modules/qc/inboundNotification.vue
-
1707src/views/modules/qc/outboundNotification.vue
@ -0,0 +1,28 @@ |
|||
import { createAPI } from "@/utils/httpRequest.js"; |
|||
|
|||
// 查询拣货出库单
|
|||
export const searchOutboundNotification = data => createAPI('/outbound/searchOutboundNotification','post',data) |
|||
// 新增拣货出库单
|
|||
export const saveOutboundNotification = data => createAPI('/outbound/saveOutboundNotification','post',data) |
|||
// 编辑拣货出库单
|
|||
export const updateOutboundNotification = data => createAPI('/outbound/updateOutboundNotification','post',data) |
|||
// 删除拣货出库单
|
|||
export const deleteOutboundNotification = data => createAPI('/outbound/deleteOutboundNotification','post',data) |
|||
// 关闭拣货出库单
|
|||
export const closeOutboundNotification = data => createAPI('/outbound/closeOutboundNotification','post',data) |
|||
// 下达拣货出库单
|
|||
export const issueOutboundNotification = data => createAPI('/outbound/issueOutboundNotification','post',data) |
|||
|
|||
// 查询拣货出库单明细
|
|||
export const getOutboundDetail = data => createAPI('/outbound/getOutboundDetail','post',data) |
|||
// 新增拣货出库单明细
|
|||
export const saveOutboundDetail = data => createAPI('/outbound/saveOutboundDetail','post',data) |
|||
// 查物料
|
|||
export const getOutboundPartList = data => createAPI('/outbound/getOutboundPartList','post',data) |
|||
// 删除拣货出库单明细
|
|||
export const deleteOutboundDetail = data => createAPI('/outbound/deleteOutboundDetail','post',data) |
|||
// 批量编辑明细
|
|||
export const updateOutboundDetail = data => createAPI('/outbound/updateOutboundDetail','post',data) |
|||
// 获取出库明细
|
|||
export const getOutboundDetail2 = data => createAPI('/outbound/getOutboundDetail2','post',data) |
|||
|
|||
1707
src/views/modules/qc/outboundNotification.vue
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
Write
Preview
Loading…
Cancel
Save
Reference in new issue