-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
-
- {{ item.name }}
-
-
-
-
-
-
- {{ item.name }}
-
-
-
-
-
-
- {{ item.name }}
-
-
-
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
-
+
创建日期:
-
-
-
-
-
-
- 查询
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ fromTypeMap[scope.row.fromType] }}
-
+
+
+
+
+
+ 查询
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ fromTypeMap[scope.row.fromType] }}
+
-
-
-
-
-
-
-
-
-
-
- {{ scope.row.actDate }}
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ erpCheckStatus[scope.row.contrastStatus] }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 重新校验
-
- 重新提交
-
- 校验信息
-
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.actDate }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ erpCheckStatus[scope.row.contrastStatus] }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 重新校验
+
+ 重新提交
+
+ 校验信息
+
-
-
-
-
- 详情
-
+
+
+
+
+ 详情
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
- 删除
-
- 选择业务单据
-
+ 删除
+
+ 选择业务单据
+
- 撤回
-
-
-
-
+ 撤回
+
+
+
+
-
-
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
- 选择产品
-
- 选择供应商
-
-
-
-
-
-
-
-
-
-
-
-
- 查询
-
- 确定
-
-
-
-
-
+
+ 选择产品
+
+ 选择供应商
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+ 查询
+
+ 确定
+
+
+
- >
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+ >
+
+
+
+
+
-
-
-
-
- {{ errorDetail }}
-
+
+
diff --git a/src/views/inout/IOCheckWaitOrder.vue b/src/views/inout/IOCheckWaitOrder.vue
index 988bfb9..624086e 100644
--- a/src/views/inout/IOCheckWaitOrder.vue
+++ b/src/views/inout/IOCheckWaitOrder.vue
@@ -842,7 +842,7 @@ export default {
.then((response) => {
this.storageList = response.data || [];
if (this.storageList.length > 0) {
- this.invChange();
+ this.getSubInvList();
this.getList();
}
})
@@ -862,6 +862,20 @@ export default {
.catch(() => {
});
},
+
+
+ getSubInvList() {
+ let query = {
+ pcode: this.filterQuery.locStorageCode
+ };
+ filterSubByInv(query)
+ .then((response) => {
+ this.subInvList = response.data || [];
+ })
+ .catch(() => {
+ });
+ },
+
subInvChange() {
this.getBusType();
},
diff --git a/src/views/inout/IOFinishOrder.vue b/src/views/inout/IOFinishOrder.vue
index 7b16557..92781b7 100644
--- a/src/views/inout/IOFinishOrder.vue
+++ b/src/views/inout/IOFinishOrder.vue
@@ -601,8 +601,8 @@ export default {
.then((response) => {
this.storageList = response.data || [];
if (this.storageList.length > 0) {
- this.filterQuery.locStorageCode = this.storageList[0].code;
- this.invChange();
+ // this.filterQuery.locStorageCode = this.storageList[0].code;
+ this.getSubInvList();
this.getList();
}
})
@@ -911,6 +911,19 @@ export default {
.catch(() => {
});
},
+
+ getSubInvList() {
+ let query = {
+ pcode: this.filterQuery.locStorageCode
+ };
+ filterSubByInv(query)
+ .then((response) => {
+ this.subInvList = response.data || [];
+ })
+ .catch(() => {
+ });
+ },
+
subInvChange() {
this.getBusType();
},
diff --git a/src/views/inout/IONewOrder.vue b/src/views/inout/IONewOrder.vue
index cf65b48..eb37126 100644
--- a/src/views/inout/IONewOrder.vue
+++ b/src/views/inout/IONewOrder.vue
@@ -426,7 +426,7 @@ export default {
.then((response) => {
this.storageList = response.data || [];
if (this.storageList.length > 0) {
- this.invChange();
+ this.getSubInvList();
this.getList();
}
})
@@ -668,6 +668,20 @@ export default {
.catch(() => {
});
},
+
+ getSubInvList() {
+ let query = {
+ pcode: this.filterQuery.locStorageCode
+ };
+ filterSubByInv(query)
+ .then((response) => {
+ this.subInvList = response.data || [];
+ })
+ .catch(() => {
+ });
+ },
+
+
subInvChange() {
this.getBusType();
},