|
|
|
@ -69,20 +69,15 @@
|
|
|
|
|
<div class="top-right-btn">
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-refresh"
|
|
|
|
|
@click="onReset"
|
|
|
|
|
>重置
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
|
|
|
|
|
>查询
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="optinPrint">选入打印</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="selectPrint">查询打印</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="onSubmit">查询</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</div>
|
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" highlight-current-row border>
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" highlight-current-row borderv @selection-change="handleCheckedChange">
|
|
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="供应商" prop="fromCorpName" width="160" v-if="showSup"></el-table-column>
|
|
|
|
|
<el-table-column label="出入库单号" prop="orderIdFk" width="160"></el-table-column>
|
|
|
|
@ -112,7 +107,8 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {getResultDetailList, getResultOrderList} from '@/api/inout/orderDetailResult'
|
|
|
|
|
import {getResultDetailList, getResultOrderList, verifyTemplateFile, printOrder} from '@/api/inout/orderDetailResult'
|
|
|
|
|
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -135,6 +131,7 @@ export default {
|
|
|
|
|
actionType: "norDetail",
|
|
|
|
|
},
|
|
|
|
|
loading: false,
|
|
|
|
|
orderSelection: [],
|
|
|
|
|
total: 0,
|
|
|
|
|
showSup: false,
|
|
|
|
|
customerId: this.$store.getters.customerId,
|
|
|
|
@ -236,6 +233,77 @@ export default {
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
handleCheckedChange(val) {
|
|
|
|
|
this.orderSelection = val;
|
|
|
|
|
},
|
|
|
|
|
optinPrint() {
|
|
|
|
|
if (this.orderSelection == null || this.orderSelection.length <= 0) {
|
|
|
|
|
return this.$message.error("请选择打印的明细!");
|
|
|
|
|
}
|
|
|
|
|
let query = {id: 4};
|
|
|
|
|
verifyTemplateFile(query).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
let printParams = {
|
|
|
|
|
templateId: res.data,
|
|
|
|
|
list: this.orderSelection
|
|
|
|
|
};
|
|
|
|
|
printOrder(printParams).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。
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
selectPrint(){
|
|
|
|
|
let query = {id: 4};
|
|
|
|
|
verifyTemplateFile(query).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
let printParams = {
|
|
|
|
|
templateId: res.data,
|
|
|
|
|
orderIdFk: this.filterQuery.orderIdFk,
|
|
|
|
|
nameCode: this.filterQuery.nameCode,
|
|
|
|
|
coName: this.filterQuery.coName,
|
|
|
|
|
spec: this.filterQuery.spec,
|
|
|
|
|
batchNo: this.filterQuery.batchNo,
|
|
|
|
|
zczbhhzbapzbh: this.filterQuery.zczbhhzbapzbh,
|
|
|
|
|
manufacturer: this.filterQuery.manufacturer,
|
|
|
|
|
actionType: this.filterQuery.actionType
|
|
|
|
|
};
|
|
|
|
|
if (this.actDateRange !== null) {
|
|
|
|
|
printParams.startAduditTime = this.actDateRange[0];
|
|
|
|
|
printParams.endAduditTime = this.actDateRange[1];
|
|
|
|
|
} else {
|
|
|
|
|
printParams.startAduditTime = null;
|
|
|
|
|
printParams.endAduditTime = null;
|
|
|
|
|
}
|
|
|
|
|
printOrder(printParams).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。
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
mounted() {
|
|
|
|
|