Commit aeb9ed32 authored by zhoutong's avatar zhoutong

修复空运无法进行出货操作

parent fe17dcad
...@@ -144,6 +144,7 @@ export default { ...@@ -144,6 +144,7 @@ export default {
return; return;
} }
if (currIndex > this.currIndex) { if (currIndex > this.currIndex) {
console.log(currIndex,this.currIndex)
this.$message.error(this.errorMsg); this.$message.error(this.errorMsg);
return; return;
} }
...@@ -240,15 +241,14 @@ export default { ...@@ -240,15 +241,14 @@ export default {
continue; continue;
} }
//合包非必须步骤
if (type === "tally"){
++nodeIndex;
}
const { start, wait, end } = status; const { start, wait, end } = status;
if (start.includes(val[keyName])) { if (start.includes(val[keyName])) {
node.currStatus = "start"; node.currStatus = "start";
if (type === "mergePkg"){
++nodeIndex;
continue;
}
} }
if (start.includes(val[keyName]) && val[voName]) { if (start.includes(val[keyName]) && val[voName]) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment