|
|
|
@ -132,8 +132,9 @@
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" width="60">
|
|
|
|
|
<el-table-column label="操作" width="90">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="printOrder(scope.row)">打印</el-button>
|
|
|
|
|
<el-button type="text" @click.native.stop="deleteDialog(scope.row)">删除</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
@ -182,7 +183,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
import pureApplyDetail from "./pureApplyDetailDialog";
|
|
|
|
|
import {delApply, auditOrder, listApplyDetail, auditListApply} from "@/api/purchase/purApply";
|
|
|
|
|
import {delApply, auditOrder, listApplyDetail, auditListApply, printOrder} from "@/api/purchase/purApply";
|
|
|
|
|
import {filterAll, getInvListByUser} from "@/api/system/invWarehouse";
|
|
|
|
|
import {getDeptListByUser} from "@/api/auth/authDept";
|
|
|
|
|
import {filterGroupBySpuse, filterSubAll} from "@/api/system/invSubWarehouse";
|
|
|
|
@ -456,6 +457,22 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
},
|
|
|
|
|
printOrder(row) {
|
|
|
|
|
printOrder(row)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
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.getList();
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
newDistributionForm(index, row) {
|
|
|
|
|