|
|
|
@ -300,6 +300,7 @@ export default {
|
|
|
|
|
if(!this.inputQuery.id){
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.query.setFk = this.inputQuery.id
|
|
|
|
|
this.loading = true;
|
|
|
|
|
listSetDetail(this.query) //查找该单号下的所有条码
|
|
|
|
|
.then((response) => {
|
|
|
|
@ -366,13 +367,31 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
selectProductFunction(){
|
|
|
|
|
if(!this.inputQuery.id){
|
|
|
|
|
if(!this.inputQuery.id){
|
|
|
|
|
if (this.actDateRange !== null) {
|
|
|
|
|
this.inputQuery.startDate = this.actDateRange[0]+" 00:00:00";
|
|
|
|
|
this.inputQuery.endDate = this.actDateRange[1]+" 23:59:59";
|
|
|
|
|
} else {
|
|
|
|
|
this.inputQuery.startDate = null;
|
|
|
|
|
this.inputQuery.endDate = null;
|
|
|
|
|
}
|
|
|
|
|
saveSet(this.inputQuery,"add").then((response) => {
|
|
|
|
|
if(response.code == 20000){
|
|
|
|
|
this.inputQuery.id = response.data.id;
|
|
|
|
|
this.relationId = this.inputQuery.id;
|
|
|
|
|
this.productVisible = true;
|
|
|
|
|
}else{
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.$message.error("请先添加规则");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.relationId = this.inputQuery.id;
|
|
|
|
|
this.productVisible = true;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.$message.error("添加失败");
|
|
|
|
|
});
|
|
|
|
|
}else{
|
|
|
|
|
this.relationId = this.inputQuery.id;
|
|
|
|
|
this.productVisible = true;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
findMethod(query) {
|
|
|
|
|
this.fromOptions = [];
|
|
|
|
@ -404,7 +423,7 @@ export default {
|
|
|
|
|
saveSet(this.inputQuery,"add").then((response) => {
|
|
|
|
|
if(response.code == 20000){
|
|
|
|
|
this.inputQuery.id = response.data.id;
|
|
|
|
|
this.$message.success("保存成功!");
|
|
|
|
|
this.closeDialog()
|
|
|
|
|
}else{
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -416,7 +435,7 @@ export default {
|
|
|
|
|
}else{
|
|
|
|
|
saveSet(this.inputQuery,"edit").then((response) => {
|
|
|
|
|
if(response.code == 20000){
|
|
|
|
|
this.$message.success("修改成功!");
|
|
|
|
|
this.closeDialog()
|
|
|
|
|
}else{
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|