内部码打印代码提交

ywj_dev
郑明梁 2 years ago
parent e2b95ab3d7
commit 8fcb57f02e

@ -63,7 +63,7 @@
<el-table-column
label="时间"
width="200"
prop="create_time"
prop="createTime"
show-overflow-tooltip
>
<template slot-scope="scope">
@ -288,17 +288,19 @@ export default {
},
printStockOrderDetailPDF(row) {
let tQuery = {
id: 1
queryId: null,
orderId: null,
countList: [],
labelId:1
};
// if (row == null) {
// tQuery.orderId = this.formData.id;
// } else {
if (row == null) {
tQuery.orderId = this.query.orderIdFk;
} else {
if (row.reCount <= 0) {
return this.$message.error('数量错误');
}
tQuery.queryId = row.id;
// }
}
this.loading = true;
inspectionStockQRCodeTextPDFFromTemplateFile(tQuery).then((response) => {
if (response.code === 20000) {
@ -356,6 +358,7 @@ export default {
);
this.loading = false;
window.open(url);//pdf
this.getOrderQRCodeTextList();
}).catch(() => {
this.loading = false;
});

Loading…
Cancel
Save