|
|
|
@ -175,6 +175,13 @@
|
|
|
|
|
>打印
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native="printOrderDetailPDF(scope.row)"
|
|
|
|
|
>报表打印
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
@ -477,7 +484,11 @@ import {selectSysParamByKey} from "@/api/param/systemParamConfig";
|
|
|
|
|
import {getResultDetailList} from "@/api/inout/orderDetailResult";
|
|
|
|
|
import {getCodeDetailList} from "@/api/inout/orderDetailCode";
|
|
|
|
|
import {getCodeList} from "@/api/inout/code";
|
|
|
|
|
import {inspectionOrderPDFFromTemplateFile, orderPDFFromTemplateFile} from "@/api/itextpdf/orderPrint"
|
|
|
|
|
import {
|
|
|
|
|
inspectionOrderPDFFromStatemenTemplateFile,
|
|
|
|
|
inspectionOrderPDFFromTemplateFile, orderPDFFromStatemenTemplateFile,
|
|
|
|
|
orderPDFFromTemplateFile
|
|
|
|
|
} from '@/api/itextpdf/orderPrint'
|
|
|
|
|
import AcceptOrder from "@/views/inout/DialogReviewOrder";
|
|
|
|
|
import DialogCheck from "@/views/inout/DialogCheck";
|
|
|
|
|
|
|
|
|
@ -975,6 +986,37 @@ export default {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
printOrderDetailPDF(row) {
|
|
|
|
|
let tQuery = {
|
|
|
|
|
labelId: 5,
|
|
|
|
|
orderIdFk: row.billNo
|
|
|
|
|
};
|
|
|
|
|
this.loading = true;
|
|
|
|
|
inspectionOrderPDFFromStatemenTemplateFile(tQuery).then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
orderPDFFromStatemenTemplateFile(tQuery).then((response) => {
|
|
|
|
|
//将pdf文件转换为url。
|
|
|
|
|
const binaryData = [];
|
|
|
|
|
binaryData.push(response);
|
|
|
|
|
//获取blob链接。
|
|
|
|
|
let url = window.URL.createObjectURL(
|
|
|
|
|
new Blob(binaryData, {type: "application/pdf"})
|
|
|
|
|
);
|
|
|
|
|
this.loading = false;
|
|
|
|
|
window.open(url);//打开新标签页,预览pdf。
|
|
|
|
|
this.getOrderQRCodeTextList();
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onResultReset() {
|
|
|
|
|
this.resultQuery = {
|
|
|
|
|
orderId: null,
|
|
|
|
|