openerp/jshERP-web/src/views/report/StockWarningReport.vue

204 lines
8.8 KiB
Java
Raw Normal View History

2021-08-16 00:13:54 +08:00
<!-- gitee 7 5 2 7 1 8 9 2 0 -->
2021-04-07 23:53:57 +08:00
<template>
2021-06-10 21:56:14 +08:00
<a-row :gutter="24">
<a-col :md="24">
<a-card :style="cardStyle" :bordered="false">
2021-06-10 21:56:14 +08:00
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
2021-07-14 23:38:31 +08:00
<a-col :md="6" :sm="24">
<a-form-item label="仓库" :labelCol="labelCol" :wrapperCol="wrapperCol">
2021-06-10 21:56:14 +08:00
<a-select
optionFilterProp="children"
showSearch allow-clear style="width: 100%"
2021-06-10 21:56:14 +08:00
placeholder="请选择仓库"
v-model="queryParam.depotId">
2024-08-04 23:25:20 +08:00
<a-select-option v-for="(depot,index) in depotList" :value="depot.id" :key="index">
2021-06-10 21:56:14 +08:00
{{ depot.depotName }}
</a-select-option>
</a-select>
</a-form-item>
</a-col>
2021-07-14 23:38:31 +08:00
<a-col :md="6" :sm="24">
<a-form-item label="商品信息" :labelCol="labelCol" :wrapperCol="wrapperCol">
2024-10-08 00:44:49 +08:00
<a-input placeholder="请输入条码、名称、助记码、规格、型号等信息" v-model="queryParam.materialParam"></a-input>
2021-06-10 21:56:14 +08:00
</a-form-item>
</a-col>
2021-07-14 23:38:31 +08:00
<a-col :md="6" :sm="24">
2021-06-10 21:56:14 +08:00
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
<a-button type="primary" @click="searchQuery">查询</a-button>
2021-09-08 22:33:13 +08:00
<a-button style="margin-left: 8px" v-print="'#reportPrint'" icon="printer">打印</a-button>
<a-button style="margin-left: 8px" @click="exportExcel" icon="download">导出</a-button>
2021-06-10 21:56:14 +08:00
</span>
</a-col>
</a-row>
</a-form>
</div>
<!-- table区域-begin -->
<section ref="print" id="reportPrint">
<a-table
bordered
ref="table"
size="middle"
rowKey="id"
:columns="columns"
:dataSource="dataSource"
:components="handleDrag(columns)"
2021-10-15 19:40:57 +08:00
:pagination="false"
2021-09-03 23:21:36 +08:00
:scroll="scroll"
:loading="loading"
@change="handleTableChange">
<span slot="customTitle">
<a-popover trigger="click" placement="right">
<template slot="content">
<a-checkbox-group @change="onColChange" v-model="settingDataIndex" :defaultValue="settingDataIndex">
<a-row style="width: 600px">
<template v-for="(item,index) in defColumns">
<template>
<a-col :span="6">
<a-checkbox :value="item.dataIndex" v-if="item.dataIndex==='rowIndex'" disabled></a-checkbox>
<a-checkbox :value="item.dataIndex" v-if="item.dataIndex!=='rowIndex'">
<j-ellipsis :value="item.title" :length="10"></j-ellipsis>
</a-checkbox>
</a-col>
</template>
</template>
</a-row>
<a-row style="padding-top: 10px;">
<a-col>
恢复默认列配置<a-button @click="handleRestDefault" type="link" size="small">恢复默认</a-button>
</a-col>
</a-row>
</a-checkbox-group>
</template>
<a-icon type="setting" />
</a-popover>
</span>
</a-table>
2021-10-15 19:40:57 +08:00
<a-row :gutter="24" style="margin-top: 8px;text-align:right;">
<a-col :md="24" :sm="24">
<a-pagination @change="paginationChange" @showSizeChange="paginationShowSizeChange"
size="small"
show-size-changer
:showQuickJumper="true"
2021-10-25 22:55:38 +08:00
:current="ipagination.current"
2021-10-15 19:40:57 +08:00
:page-size="ipagination.pageSize"
:page-size-options="ipagination.pageSizeOptions"
:total="ipagination.total"
:show-total="(total, range) => `共 ${total-Math.ceil(total/ipagination.pageSize)} 条`">
2021-10-15 19:40:57 +08:00
<template slot="buildOptionText" slot-scope="props">
<span>{{ props.value-1 }}/</span>
</template>
</a-pagination>
</a-col>
</a-row>
</section>
2021-06-10 21:56:14 +08:00
<!-- table区域-end -->
</a-card>
</a-col>
</a-row>
2021-04-07 23:53:57 +08:00
</template>
<script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import JEllipsis from '@/components/jeecg/JEllipsis'
import {getAction} from '@/api/manage'
import { getMpListShort } from "@/utils/util"
2021-04-07 23:53:57 +08:00
import Vue from 'vue'
export default {
2021-09-02 22:33:27 +08:00
name: "StockWarningReport",
2021-04-07 23:53:57 +08:00
mixins:[JeecgListMixin],
components: {
JEllipsis
},
data () {
return {
2021-07-14 23:38:31 +08:00
labelCol: {
span: 5
},
wrapperCol: {
span: 18,
offset: 1
},
2021-04-07 23:53:57 +08:00
// 查询条件
queryParam: {
materialParam:'',
2024-10-07 01:14:52 +08:00
depotId: undefined,
2021-04-07 23:53:57 +08:00
mpList: getMpListShort(Vue.ls.get('materialPropertyList')) //扩展属性
},
2021-09-08 22:33:13 +08:00
ipagination:{
2021-10-15 19:40:57 +08:00
pageSize: 11,
pageSizeOptions: ['11', '21', '31', '101', '201']
2021-09-08 22:33:13 +08:00
},
2021-04-07 23:53:57 +08:00
depotList: [],
tabKey: "1",
pageName: 'stockWarningReport',
// 默认索引
defDataIndex:['rowIndex','depotName','barCode','mname','mstandard','mmodel','materialOther','materialUnit','currentNumber',
'lowSafeStock','highSafeStock','lowCritical','highCritical'],
// 默认列
defColumns: [
2021-04-07 23:53:57 +08:00
{
dataIndex: 'rowIndex', width:40, align:"center", slots: { title: 'customTitle' },
2021-04-07 23:53:57 +08:00
customRender:function (t,r,index) {
2021-10-15 19:40:57 +08:00
return (t !== '合计') ? (parseInt(index) + 1) : t
2021-04-07 23:53:57 +08:00
}
},
{title: '仓库', dataIndex: 'depotName', width: 100, ellipsis:true},
2023-12-25 23:45:03 +08:00
{title: '条码', dataIndex: 'barCode', sorter: (a, b) => a.barCode - b.barCode, width: 100},
{title: '名称', dataIndex: 'mname', width: 100, ellipsis:true},
{title: '规格', dataIndex: 'mstandard', width: 80, ellipsis:true},
{title: '型号', dataIndex: 'mmodel', width: 80, ellipsis:true},
{title: '扩展信息', dataIndex: 'materialOther', width: 100, ellipsis:true},
{title: '单位', dataIndex: 'materialUnit', width: 60, ellipsis:true},
{title: '库存', dataIndex: 'currentNumber', sorter: (a, b) => a.currentNumber - b.currentNumber, width: 80},
{title: '最低安全库存', dataIndex: 'lowSafeStock', sorter: (a, b) => a.lowSafeStock - b.lowSafeStock, width: 100},
{title: '最高安全库存', dataIndex: 'highSafeStock', sorter: (a, b) => a.highSafeStock - b.highSafeStock, width: 100},
{title: '建议入库量', dataIndex: 'lowCritical', sorter: (a, b) => a.lowCritical - b.lowCritical, width: 80},
{title: '建议出库量', dataIndex: 'highCritical', sorter: (a, b) => a.highCritical - b.highCritical, width: 80}
2021-04-07 23:53:57 +08:00
],
url: {
2021-09-08 22:33:13 +08:00
list: "/depotItem/findStockWarningCount"
2021-04-07 23:53:57 +08:00
}
}
},
created () {
this.getDepotData()
this.initColumnsSetting()
2021-04-07 23:53:57 +08:00
},
methods: {
getQueryParams() {
let param = Object.assign({}, this.queryParam, this.isorter);
param.field = this.getQueryField();
param.currentPage = this.ipagination.current;
2021-10-15 19:40:57 +08:00
param.pageSize = this.ipagination.pageSize-1;
2021-04-07 23:53:57 +08:00
return param;
},
getDepotData() {
2021-04-30 17:49:03 +08:00
getAction('/depot/findDepotByCurrentUser').then((res)=>{
2021-04-07 23:53:57 +08:00
if(res.code === 200){
2021-04-30 17:49:03 +08:00
this.depotList = res.data;
2021-04-07 23:53:57 +08:00
}else{
this.$message.info(res.data);
}
})
2021-09-08 22:33:13 +08:00
},
exportExcel() {
let list = []
let head = '仓库,条码,名称,规格,型号,扩展信息,单位,库存,最低安全库存,最高安全库存,建议入库量,建议出库量'
2021-09-08 22:33:13 +08:00
for (let i = 0; i < this.dataSource.length; i++) {
let item = []
2021-09-08 22:33:13 +08:00
let ds = this.dataSource[i]
item.push(ds.depotName, ds.barCode, ds.mname, ds.mstandard, ds.mmodel, ds.materialOther, ds.materialUnit,
ds.currentNumber, ds.lowSafeStock, ds.highSafeStock, ds.lowCritical, ds.highCritical)
list.push(item)
2021-09-08 22:33:13 +08:00
}
let tip = '库存预警查询'
this.handleExportXlsPost('库存预警', '库存预警', head, tip, list)
2021-04-07 23:53:57 +08:00
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less'
</style>