|
|
|
@ -427,7 +427,6 @@ export default {
|
|
|
|
|
|
|
|
|
|
submitOrderWeb(tQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
console.log(response)
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
@ -594,7 +593,6 @@ export default {
|
|
|
|
|
tQuery.orderId = this.idQuery.id;
|
|
|
|
|
tQuery.actDate = parseTime(this.formData.actDate, '{y}-{m}-{d} {h}:{i}:{s}');
|
|
|
|
|
tQuery.action = tQuery.billType
|
|
|
|
|
console.log("tQuery = " + tQuery)
|
|
|
|
|
this.addCodeSubmit(tQuery);
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
|
},
|
|
|
|
@ -687,7 +685,6 @@ export default {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
deleteCode(index, row) {
|
|
|
|
|
console.log(row.id)
|
|
|
|
|
this.$confirm("是否确定移除一个条码?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
@ -811,13 +808,11 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
actionChange(item) {
|
|
|
|
|
this.curAction = this.getActionItem(item);
|
|
|
|
|
console.log( this.curAction.codeFillCheck)
|
|
|
|
|
this.$set(this.formData, "codeFillCheck", this.curAction.codeFillCheck);
|
|
|
|
|
// this.formData.locStorageCode = this.curAction.storageCode;
|
|
|
|
|
},
|
|
|
|
|
//绑定数据
|
|
|
|
|
bindRl(val) {
|
|
|
|
|
console.log("curRow.erpId = " + val.id);
|
|
|
|
|
this.curRow = val;
|
|
|
|
|
this.selectRlVisible = true;
|
|
|
|
|
},
|
|
|
|
@ -828,7 +823,6 @@ export default {
|
|
|
|
|
id: this.curRow.id,
|
|
|
|
|
relId: row.id,
|
|
|
|
|
};
|
|
|
|
|
console.log("row.relId = " + row.id);
|
|
|
|
|
updateCodeBindSup(query).then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message.success("绑定成功");
|
|
|
|
@ -850,7 +844,6 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
closeBindDialog(val) {
|
|
|
|
|
console.log("closeBindDialog" + val);
|
|
|
|
|
this.selectRlVisible = false;
|
|
|
|
|
this.dialogTableVisible = false;
|
|
|
|
|
},
|
|
|
|
|