feat: 手动关联

20240912_adapter
chenhc 6 months ago
parent 18d31cf8a9
commit b0db8f8fd3

@ -16,10 +16,10 @@
style="margin-right: 8px;border-radius: 5%;"
>放弃
</el-button>
<el-button size="mini" type="primary" @click.native="submit()" :loading="submitLoading"
style="margin-right: 8px;border-radius: 5%;"
>保存
</el-button>
<!-- <el-button size="mini" type="primary" @click.native="submit()" :loading="submitLoading"-->
<!-- style="margin-right: 8px;border-radius: 5%;"-->
<!-- >保存-->
<!-- </el-button>-->
<el-button size="mini" type="primary" @click.native="submit()" :loading="submitLoading"
style="margin-right: 8px;border-radius: 5%;"
>提交
@ -99,7 +99,7 @@
v-model="relFormData.batchNo"
auto-complete="off"
style="width: 90%"
:disabled="this.parentCode"
:disabled="this.parentCode && this.detailList.length > 0"
clearable
></el-input>
</el-form-item>
@ -113,7 +113,7 @@
clearable
value-format="yyyy-MM-dd HH:mm:ss"
style="width: 90%"
:disabled="this.parentCode"
:disabled="this.parentCode && this.detailList.length > 0"
>
</el-date-picker>
</el-form-item>
@ -127,7 +127,7 @@
clearable
value-format="yyyy-MM-dd HH:mm:ss"
style="width: 90%"
:disabled="this.parentCode"
:disabled="this.parentCode && this.detailList.length > 0"
>
</el-date-picker>
</el-form-item>
@ -140,7 +140,7 @@
clearable
style="width: 90%"
placeholder="请输入备注"
:disabled="this.parentCode"
:disabled="this.parentCode && this.detailList.length > 0"
></el-input>
</el-form-item>
</el-col>
@ -383,20 +383,21 @@
},
//
addCode() {
//
if (this.relFormData.batchNo == null) {
this.$message.warning("请输入批次号!");
return;
}
if (this.relFormData.madeDate == null) {
this.$message.warning("请选择生产日期!");
return;
}
if (this.relFormData.validateDate == null) {
this.$message.warning("请选择失效日期!");
return;
if (this.parentCode != null) {
//
if (this.relFormData.batchNo == null) {
this.$message.warning("请输入批次号!");
return;
}
if (this.relFormData.madeDate == null) {
this.$message.warning("请选择生产日期!");
return;
}
if (this.relFormData.validateDate == null) {
this.$message.warning("请选择失效日期!");
return;
}
}
let tQuery = Object.assign(this.codeFormData);
tQuery.curCode = this.codeFormData.code;
tQuery.parentCode = this.parentCode;
@ -440,7 +441,6 @@
return;
}
}
//
if(data.packLayer == this.relFormData.packLayer) {
//
@ -496,7 +496,6 @@
this.title = "手工关联:" + data.curCode;
this.popParentCode = data.curCode;
}else {
if( this.bhxjsl === this.syxjsl){
this.$confirm("该层级已录入完成, 是否关闭?", "提示", {
confirmButtonText: "确定",
@ -568,25 +567,54 @@
this.$message.warning("请选择失效日期!");
return;
}
this.loading = true;
this.$set(this.relFormData, 'detailList', []);
this.detailList.forEach( item =>{
this.relFormData.detailList.push(item)
});
addRelCode(this.relFormData).then((response) => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("保存成功!");
//
if( this.bhxjsl != this.syxjsl){
this.$confirm("该层级已录入数量与应录入数量不符, 是否继续提交?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.loading = true;
addRelCode(this.relFormData).then((response) => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("保存成功!");
this.clearRel();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
this.clearRel();
});
})
.catch(() => {
});
}else {
this.loading = true;
addRelCode(this.relFormData).then((response) => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("保存成功!");
this.clearRel();
} else {
this.$message.error(response.message);
}
}).catch(() => {
this.loading = false;
this.clearRel();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
this.clearRel();
});
});
}
},
//

@ -16,10 +16,10 @@
style="margin-right: 8px;border-radius: 5%;"
>放弃
</el-button>
<el-button size="mini" type="primary" @click.native="submit()" :loading="submitLoading"
style="margin-right: 8px;border-radius: 5%;"
>保存
</el-button>
<!-- <el-button size="mini" type="primary" @click.native="submit()" :loading="submitLoading"-->
<!-- style="margin-right: 8px;border-radius: 5%;"-->
<!-- >保存-->
<!-- </el-button>-->
<el-button size="mini" type="primary" @click.native="submit()" :loading="submitLoading"
style="margin-right: 8px;border-radius: 5%;"
>提交
@ -455,21 +455,68 @@
this.warnVisible = false;
this.errVisible = false;
},
giveUp() {
this.relFormData = {
productCode: null,
subTypeNo: null,
cascadeRatio: null,
packageSpec: null,
comment: null,
batchNo: null,
madeDate: null,
validateDate: null,
workShop: null,
lineName: null,
lineManager: null,
packUnit: null,
bhxjsl: null,
detailList: []
}
this.detailList = []
this.parentCode = null
this.bhxjsl = 0
this.syxjsl = 0
this.packLayer = null
},
submit() {
addRelCode(this.relFormData).then((response) => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("保存成功!");
this.clearRel();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
this.clearRel();
});
//
if( this.bhxjsl != this.syxjsl){
this.$confirm("该层级已录入数量与应录入数量不符, 是否继续提交?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
addRelCode(this.relFormData).then((response) => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("保存成功!");
this.clearRel();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
this.clearRel();
});
})
.catch(() => {
});
}else {
addRelCode(this.relFormData).then((response) => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("保存成功!");
this.clearRel();
} else {
this.$message.error(response.message);
}
}).catch(() => {
this.loading = false;
this.clearRel();
});
}
},
//

Loading…
Cancel
Save