7 changed files with 1754 additions and 31 deletions
-
26src/api/qc/Inbound_notification.js
-
23src/views/main-navbar.vue
-
14src/views/modules/qc/FQCResultEntry.vue
-
17src/views/modules/qc/IPQCResultEntry.vue
-
1src/views/modules/qc/OQCResultEntry.vue
-
1698src/views/modules/qc/inboundNotification.vue
-
6src/views/modules/qc/qcPartAttribute.vue
@ -0,0 +1,26 @@ |
|||
import { createAPI } from "@/utils/httpRequest.js"; |
|||
|
|||
// 查询收获入库单
|
|||
export const searchInboundNotification = data => createAPI('/inbound/searchInboundNotification','post',data) |
|||
// 新增收获入库单
|
|||
export const saveInboundNotification = data => createAPI('/inbound/saveInboundNotification','post',data) |
|||
// 删除收获入库单
|
|||
export const deleteInboundNotification = data => createAPI('/inbound/deleteInboundNotification','post',data) |
|||
// 关闭收获入库单
|
|||
export const closeInboundNotification = data => createAPI('/inbound/closeInboundNotification','post',data) |
|||
// 下达收获入库单
|
|||
export const issueInboundNotification = data => createAPI('/inbound/issueInboundNotification','post',data) |
|||
|
|||
// 查询收获入库单明细
|
|||
export const getInboundDetail = data => createAPI('/inbound/getInboundDetail','post',data) |
|||
// 新增收获入库单明细
|
|||
export const saveInboundDetail = data => createAPI('/inbound/saveInboundDetail','post',data) |
|||
// 查物料
|
|||
export const getInboundPartList = data => createAPI('/inbound/getInboundPartList','post',data) |
|||
// 删除收获入库单明细
|
|||
export const deleteInboundDetail = data => createAPI('/inbound/deleteInboundDetail','post',data) |
|||
// 批量编辑明细
|
|||
export const updateInboundDetail = data => createAPI('/inbound/updateInboundDetail','post',data) |
|||
// 获取入库明细
|
|||
export const getInboundDetail2 = data => createAPI('/inbound/getInboundDetail2','post',data) |
|||
|
|||
1698
src/views/modules/qc/inboundNotification.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