修改单据bug

prod
郑明梁 2 years ago
parent b3ff5d4374
commit 444d12d594

@ -558,15 +558,17 @@ export default {
let selectData = this.multipleUdiSelection;
let selected = null;
if (this.multipleUdiSelection.length == 0) {
this.$message.warning('请选入产品!');
if (this.relId != null) {
this.combineQuery.relId = this.relId;
this.combineQuery.keys.push(this.currentRow.uuid);
if (this.currentRow.check) {
selected = this.currentRow;
}
} else
} else{
this.$message.warning('请选入产品!');
return;
}
} else {
selectData.forEach((obj) => {

@ -39,7 +39,7 @@
auto-complete="off"
style="width: 90%"
clearable
:disabled="corpOrderIdDisabled"
:disabled="true"
></el-input>
</el-form-item>
</el-col>
@ -643,6 +643,24 @@ export default {
this.$message.warning("请选择单据类型!");
return;
}
if(this.curAction.corpType === 0 || this.curAction.corpType === 2 || (this.curAction.corpType === 1 && !this.curAction.genUnit)){
if(this.$isBlank(this.orderFormData.fromCorp)){
this.$message.warning("请选择往来单位!");
return;
}
}
if(this.curAction.corpType == 3){
if(this.$isBlank(this.orderFormData.fromInvCode)){
this.$message.warning("请选择往来单位!");
return;
}
}
if(this.curAction.corpType === 1 && this.curAction.genUnit){
if(this.$isBlank(this.orderFormData.fromCorp)){
this.$message.warning("请选择往来单位!");
return;
}
}
if (this.$isBlank(this.orderFormData.corpOrderId)) {
let date = new Date();
this.orderFormData.corpOrderId =

@ -459,6 +459,8 @@ export default {
this.invCodeList = response.data || [];
if (this.invCodeList != null && this.invCodeList.length == 1) {
this.formData.invCode = this.invCodeList[0].code;
this.formData.deptCode = this.invCodeList[0].parentId;
}
})
.catch(() => {

Loading…
Cancel
Save