|
|
|
@ -287,6 +287,7 @@
|
|
|
|
|
>
|
|
|
|
|
<countOrderCodes
|
|
|
|
|
:codeQuery="codeQuery"
|
|
|
|
|
:getCountOrderDetail="getCountOrderDetail"
|
|
|
|
|
></countOrderCodes>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
@ -371,7 +372,8 @@ export default {
|
|
|
|
|
codesNum: 0,
|
|
|
|
|
codeQuery: {
|
|
|
|
|
productId: null,
|
|
|
|
|
orderIdFk: null
|
|
|
|
|
orderIdFk: null,
|
|
|
|
|
edit: true
|
|
|
|
|
},
|
|
|
|
|
codesVisible: false
|
|
|
|
|
};
|
|
|
|
@ -399,6 +401,7 @@ export default {
|
|
|
|
|
let detailData = {
|
|
|
|
|
orderIdFk: this.formData.orderId,
|
|
|
|
|
productId: product.relIdFk,
|
|
|
|
|
nameCode: product.nameCode,
|
|
|
|
|
batchNo: product.batchNo,
|
|
|
|
|
produceDate: product.productionDate,
|
|
|
|
|
expireDate: product.expireDate
|
|
|
|
@ -512,10 +515,11 @@ export default {
|
|
|
|
|
this.selectInvProductVisible = false;
|
|
|
|
|
},
|
|
|
|
|
deleteOrderDetail(index, row) {
|
|
|
|
|
if (isBlank(row.id)) {
|
|
|
|
|
//未添加到数据库中,页面移除即可
|
|
|
|
|
this.codeArray.splice(index, 1);
|
|
|
|
|
} else {
|
|
|
|
|
this.$confirm('此操作将删除单据详情, 是否继续?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
//此单据详情已经添加到数据库中,需要在数据库中
|
|
|
|
|
let params = {id: row.id}
|
|
|
|
|
deleteCountOrderDetail(params).then((res) => {
|
|
|
|
@ -528,16 +532,18 @@ export default {
|
|
|
|
|
this.codeArray = result.data.list || [];
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.data);
|
|
|
|
|
this.$message.error(res.data.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
showCodes(row) {
|
|
|
|
|
this.codesVisible = true;
|
|
|
|
|
this.codeQuery = {
|
|
|
|
|
orderIdFk: this.formData.orderId,
|
|
|
|
|
productId: row.productId
|
|
|
|
|
productId: row.productId,
|
|
|
|
|
edit: true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
getInputFocus(event) {
|
|
|
|
@ -559,7 +565,8 @@ export default {
|
|
|
|
|
this.codeArray = res.data.list || [];
|
|
|
|
|
this.detailTotal = res.data.total || 0;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
this.getCountOrderCodesNum();
|
|
|
|
|
},
|
|
|
|
|
addCode() {
|
|
|
|
|
this.formData.code.trim();
|
|
|
|
|