|
|
@ -118,6 +118,10 @@
|
|
|
|
>查询
|
|
|
|
>查询
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="allExport()"
|
|
|
|
|
|
|
|
>导出上货推荐单
|
|
|
|
|
|
|
|
</el-button
|
|
|
|
|
|
|
|
>
|
|
|
|
</el-button-group>
|
|
|
|
</el-button-group>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
@ -237,7 +241,7 @@
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import {executeFuc, getHead} from "@/utils/customConfig";
|
|
|
|
import {executeFuc, getHead} from "@/utils/customConfig";
|
|
|
|
import {convertDate} from "@/utils/date";
|
|
|
|
import {convertDate} from "@/utils/date";
|
|
|
|
import {splitFifoPage} from "@/api/inout/splitInv";
|
|
|
|
import {splitFifoPage,exportExcel} from "@/api/inout/splitInv";
|
|
|
|
import {getInvListByUserOptimize} from "@/api/system/invWarehouse";
|
|
|
|
import {getInvListByUserOptimize} from "@/api/system/invWarehouse";
|
|
|
|
import {filterWorkOptimize, listPage} from '@/api/basic/workPlace/sysWorkplaceManage'
|
|
|
|
import {filterWorkOptimize, listPage} from '@/api/basic/workPlace/sysWorkplaceManage'
|
|
|
|
import {getWorkBindBusTypes, removeBusTypeById} from '@/api/basic/workPlace/sysWorkplaceDocuments'
|
|
|
|
import {getWorkBindBusTypes, removeBusTypeById} from '@/api/basic/workPlace/sysWorkplaceDocuments'
|
|
|
@ -313,6 +317,21 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
components: {},
|
|
|
|
components: {},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
allExport() {
|
|
|
|
|
|
|
|
exportExcel(this.filterQuery).then((response) => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const currentDate = new Date().toISOString().slice(0, 10).replace(/-/g, ''); // 获取当前日期并格式化为YYYYMMDD
|
|
|
|
|
|
|
|
const filename = `上货推荐单_${currentDate}.xlsx`;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let blob = new Blob([response], {type: "application/vnd.ms-excel"});
|
|
|
|
|
|
|
|
let url = window.URL.createObjectURL(blob); // 创建一个临时的url指向blob对象
|
|
|
|
|
|
|
|
let a = document.createElement("a");
|
|
|
|
|
|
|
|
a.download = filename;
|
|
|
|
|
|
|
|
a.href = url;
|
|
|
|
|
|
|
|
a.click();
|
|
|
|
|
|
|
|
this.$message.success("导出文件成功!")
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
changePlace(_this, query) {
|
|
|
|
changePlace(_this, query) {
|
|
|
|
_this.getWorkBindBusTypes(_this, query)
|
|
|
|
_this.getWorkBindBusTypes(_this, query)
|
|
|
|
},
|
|
|
|
},
|
|
|
|