|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
<template> |
|
|
|
|
<basic-container> |
|
|
|
|
<div class="avue-crud"> |
|
|
|
|
<div class="avue-crud" v-loading="loadingObj.pageLoading"> |
|
|
|
|
<div v-h5uShow="!search"> |
|
|
|
|
<!-- 查询模块 --> |
|
|
|
|
<el-form :inline="true" :model="query" class="header_search"> |
|
|
|
@ -25,12 +25,18 @@
|
|
|
|
|
<!-- 头部左侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__left"> |
|
|
|
|
<!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd">新 增</el-button>--> |
|
|
|
|
<el-button type="danger" icon="el-icon-plus" @click="handleImport" plain |
|
|
|
|
>导 入</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="danger" icon="el-icon-bottom" @click="handleExportInfo" plain |
|
|
|
|
>导出 |
|
|
|
|
<!-- 导入 --> |
|
|
|
|
<el-button type="danger" icon="el-icon-plus" @click="handleImport" plain> |
|
|
|
|
导 入 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
<!-- 导出 --> |
|
|
|
|
<el-button type="danger" icon="el-icon-bottom" @click="handleExportInfo" plain> |
|
|
|
|
导出 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
<!-- 打印 --> |
|
|
|
|
<el-button type="primary" icon="Printer" @click="handlePrint"> 打 印 </el-button> |
|
|
|
|
<!-- <el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain>删 除</el-button>--> |
|
|
|
|
</div> |
|
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
@ -197,6 +203,10 @@
|
|
|
|
|
</el-drawer> |
|
|
|
|
</div> |
|
|
|
|
</basic-container> |
|
|
|
|
|
|
|
|
|
<!-- 打印 --> |
|
|
|
|
<MyPrint :html="html" v-model="PrintVisted" width="80%" :isShowExport="false" /> |
|
|
|
|
|
|
|
|
|
<edittablehead |
|
|
|
|
@closce="showdrawer" |
|
|
|
|
:drawerShow="drawerShow" |
|
|
|
@ -213,13 +223,14 @@ import {
|
|
|
|
|
update, |
|
|
|
|
remove, |
|
|
|
|
$_getBillLadingExport, |
|
|
|
|
postWarehouseWarehousingEntryPrintBatch, |
|
|
|
|
} from '@/api/warehouse/warehouseWarehousingEntry'; |
|
|
|
|
import option from '@/option/warehouse/warehouseWarehousingEntry'; |
|
|
|
|
import { mapGetters, mapMutations } from 'vuex'; |
|
|
|
|
import WarehouseWarehousingDetailSub from '@/views/warehouse/warehousingentry/warehouseWarehousingDetailSub.vue'; |
|
|
|
|
import { exportBlob } from '@/api/common'; |
|
|
|
|
import { getToken } from '@/utils/auth'; |
|
|
|
|
import { downloadXls, handleClearTableQuery, setNodeHeight } from '@/utils/util'; |
|
|
|
|
import { downloadXls, handleClearTableQuery, setNodeHeight, getObjType } from '@/utils/util'; |
|
|
|
|
import dayjs from 'dayjs'; |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
|
|
|
|
|
@ -484,6 +495,14 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
/** loading */ |
|
|
|
|
loadingObj: { |
|
|
|
|
/** 页面loading */ |
|
|
|
|
pageLoading: false, |
|
|
|
|
}, |
|
|
|
|
/** 打印 */ |
|
|
|
|
html: '', |
|
|
|
|
PrintVisted: false, |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
watch: { |
|
|
|
@ -515,33 +534,72 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
// 导出功能 |
|
|
|
|
handleExportInfo() { |
|
|
|
|
let row = {}; |
|
|
|
|
// console.log(this.stockupDate); |
|
|
|
|
// if (this.query.startDate) { |
|
|
|
|
// row.startDate = this.query.startDate[0]; //开始时间 |
|
|
|
|
// row.endDate = this.query.startDate[1]; //结束时间 |
|
|
|
|
// } |
|
|
|
|
// if (this.query.serviceNumber) { |
|
|
|
|
// row.serviceNumber = this.query.serviceNumber; //服务号 |
|
|
|
|
// } |
|
|
|
|
// 日库批次 |
|
|
|
|
if (this.query.receiptBatch) { |
|
|
|
|
row.receiptBatch = this.query.receiptBatch; |
|
|
|
|
} |
|
|
|
|
// 日期 |
|
|
|
|
if (this.query.receiptDate) { |
|
|
|
|
row.receiptDate = this.query.receiptDate; |
|
|
|
|
async handleExportInfo() { |
|
|
|
|
try { |
|
|
|
|
this.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
let row = {}; |
|
|
|
|
// console.log(this.stockupDate); |
|
|
|
|
// if (this.query.startDate) { |
|
|
|
|
// row.startDate = this.query.startDate[0]; //开始时间 |
|
|
|
|
// row.endDate = this.query.startDate[1]; //结束时间 |
|
|
|
|
// } |
|
|
|
|
// if (this.query.serviceNumber) { |
|
|
|
|
// row.serviceNumber = this.query.serviceNumber; //服务号 |
|
|
|
|
// } |
|
|
|
|
// 日库批次 |
|
|
|
|
if (this.query.receiptBatch) { |
|
|
|
|
row.receiptBatch = this.query.receiptBatch; |
|
|
|
|
} |
|
|
|
|
// 日期 |
|
|
|
|
if (this.query.receiptDate) { |
|
|
|
|
row.receiptDate = this.query.receiptDate; |
|
|
|
|
} |
|
|
|
|
if (!!this.ids) { |
|
|
|
|
row.ids = this.ids; //根据DI来查询 |
|
|
|
|
} else { |
|
|
|
|
row.ids = ''; //查询全部 |
|
|
|
|
} |
|
|
|
|
const res = await $_getBillLadingExport(row); |
|
|
|
|
|
|
|
|
|
if (res.status !== 200) return; |
|
|
|
|
|
|
|
|
|
downloadXls(res.data, '入库数据.xlsx'); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
this.loadingObj.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
if (!!this.ids) { |
|
|
|
|
row.ids = this.ids; //根据DI来查询 |
|
|
|
|
} else { |
|
|
|
|
row.ids = ''; //查询全部 |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
/** 打印 */ |
|
|
|
|
async handlePrint() { |
|
|
|
|
if (this.selectionList.length === 0) return this.$message.warning('请选择需要打印的数据'); |
|
|
|
|
try { |
|
|
|
|
this.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
this.html = ''; |
|
|
|
|
|
|
|
|
|
const res = await postWarehouseWarehousingEntryPrintBatch({ |
|
|
|
|
ids: this.selectionList.map(val => val.id).join(','), |
|
|
|
|
type: 1, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const { code, data } = res.data; |
|
|
|
|
if (code !== 200 || getObjType(data) !== 'array' || data.length === 0) return; |
|
|
|
|
|
|
|
|
|
for (let i = 0; i < data.length; i++) { |
|
|
|
|
const value = data[i]; |
|
|
|
|
this.html += value.templateHtml; |
|
|
|
|
} |
|
|
|
|
console.log('data :>> ', data); |
|
|
|
|
this.PrintVisted = true; |
|
|
|
|
console.log('this.html :>> ', this.html); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
this.loadingObj.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
$_getBillLadingExport(row).then(res => { |
|
|
|
|
console.log(res.data); |
|
|
|
|
downloadXls(res.data, '入库数据.xlsx'); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
showdrawer(value) { |
|
|
|
|