|
|
|
@ -19,21 +19,21 @@
|
|
|
|
|
@click.native="OptionalDocument()"
|
|
|
|
|
>选入预验收入库单
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button size="mini" type="primary" @click.native="saveOrder()"
|
|
|
|
|
<el-button size="mini" type="primary" @click.native="saveOrder()" :loading="saveLoading"
|
|
|
|
|
>草稿保存
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button size="mini" type="primary" @click.native="submit()"
|
|
|
|
|
<el-button size="mini" type="primary" @click.native="submit()" :loading="submitLoading"
|
|
|
|
|
v-if="viewType != 7"
|
|
|
|
|
>立即提交
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
<el-button type="primary" @click="submit(1)"
|
|
|
|
|
<el-button type="primary" @click="submit(1)" :loading="checkLoading"
|
|
|
|
|
v-if="viewType == 7">校验结果提交
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" @click="submit(2)"
|
|
|
|
|
<el-button type="primary" @click="submit(2)" :loading="codeLoading"
|
|
|
|
|
v-if="viewType == 7">扫码结果提交
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button size="mini" type="primary" @click.native="revokeBill()"
|
|
|
|
|
<el-button size="mini" type="primary" @click.native="revokeBill()" :loading="retractLoading"
|
|
|
|
|
v-if="viewType == 7">撤回单据
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
@ -820,7 +820,11 @@ export default {
|
|
|
|
|
checkTipDialogVisible: false,
|
|
|
|
|
checkTip: null,
|
|
|
|
|
enableSick: false,
|
|
|
|
|
|
|
|
|
|
saveLoading: false,
|
|
|
|
|
submitLoading: false,
|
|
|
|
|
checkLoading: false,
|
|
|
|
|
codeLoading: false,
|
|
|
|
|
retractLoading: false,
|
|
|
|
|
|
|
|
|
|
//库存选入
|
|
|
|
|
selectInvProductVisible: false,
|
|
|
|
@ -1473,9 +1477,10 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
let query = {billNo: this.orderFormData.billNo};
|
|
|
|
|
|
|
|
|
|
this.retractLoading = true
|
|
|
|
|
rollbackWaitcheck(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.retractLoading = false
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message.success("撤回成功!");
|
|
|
|
|
this.closeDialog();
|
|
|
|
@ -1484,6 +1489,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.retractLoading = false
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
@ -1498,6 +1504,7 @@ export default {
|
|
|
|
|
//待校验以扫码结果为准
|
|
|
|
|
submitCodeResult(query) {
|
|
|
|
|
submitCodeResult(query).then((response) => {
|
|
|
|
|
this.codeLoading = false
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
@ -1510,6 +1517,7 @@ export default {
|
|
|
|
|
//待校验以正确结果为准
|
|
|
|
|
submitCheckResult(query) {
|
|
|
|
|
submitCheckResult(query).then((response) => {
|
|
|
|
|
this.checkLoading = false
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
@ -1548,8 +1556,27 @@ export default {
|
|
|
|
|
);
|
|
|
|
|
tQuery.orderId = this.orderFormData.billNo;
|
|
|
|
|
console.log(tQuery.orderId);
|
|
|
|
|
if (val == 1){
|
|
|
|
|
//校验btn
|
|
|
|
|
this.checkLoading = true
|
|
|
|
|
}else if (val == 2){
|
|
|
|
|
//扫码btn
|
|
|
|
|
this.codeLoading = true
|
|
|
|
|
}else {
|
|
|
|
|
this.submitLoading = true
|
|
|
|
|
}
|
|
|
|
|
if (this.viewType == 2) { //扫码单据立即提交
|
|
|
|
|
submitCodes(tQuery).then((response) => {
|
|
|
|
|
if (val == 1){
|
|
|
|
|
//校验btn
|
|
|
|
|
this.checkLoading = false
|
|
|
|
|
}else if (val == 2){
|
|
|
|
|
//扫码btn
|
|
|
|
|
this.codeLoading = false
|
|
|
|
|
}else {
|
|
|
|
|
this.submitLoading = false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功,等待处理,请刷新后查看!");
|
|
|
|
|
this.closeDialog();
|
|
|
|
@ -1563,6 +1590,15 @@ export default {
|
|
|
|
|
else
|
|
|
|
|
tQuery.fromVailPi = 1;
|
|
|
|
|
submitBiz(tQuery).then((response) => {
|
|
|
|
|
if (val == 1){
|
|
|
|
|
//校验btn
|
|
|
|
|
this.checkLoading = false
|
|
|
|
|
}else if (val == 2){
|
|
|
|
|
//扫码btn
|
|
|
|
|
this.codeLoading = false
|
|
|
|
|
}else {
|
|
|
|
|
this.submitLoading = false
|
|
|
|
|
}
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
@ -1572,6 +1608,16 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
} else if (this.viewType == 4) {
|
|
|
|
|
submitAllocateBiz(tQuery).then((response) => {
|
|
|
|
|
if (val == 1){
|
|
|
|
|
//校验btn
|
|
|
|
|
this.checkLoading = false
|
|
|
|
|
}else if (val == 2){
|
|
|
|
|
//扫码btn
|
|
|
|
|
this.codeLoading = false
|
|
|
|
|
}else {
|
|
|
|
|
this.submitLoading = false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
@ -1587,9 +1633,11 @@ export default {
|
|
|
|
|
type: "warning",
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.checkLoading = true
|
|
|
|
|
this.submitCheckResult(tQuery);
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.this.checkLoading = false
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
@ -1599,14 +1647,17 @@ export default {
|
|
|
|
|
type: "warning",
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.codeLoading = true
|
|
|
|
|
this.submitCodeResult(tQuery);
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.codeLoading = false
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
} else { //配货拣货后后提交
|
|
|
|
|
submitOrderWeb(tQuery).then((response) => {
|
|
|
|
|
this.submitLoading = false
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
@ -1627,13 +1678,16 @@ export default {
|
|
|
|
|
this.$message.error("请先录入单据信息!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.saveLoading = true
|
|
|
|
|
saveOrderWeb(tQuery).then((response) => {
|
|
|
|
|
this.saveLoading = false
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.saveLoading = false
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|