|
|
|
@ -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;
|
|
|
|
|
});
|
|
|
|
|