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

272 lines
11 KiB
Java
Raw Normal View History

2021-08-16 00:13:54 +08:00
<!-- from 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">
2022-04-24 22:22:29 +08:00
<a-col :md="6" :sm="24">
2021-07-14 23:38:31 +08:00
<a-form-item label="商品信息" :labelCol="labelCol" :wrapperCol="wrapperCol">
2021-07-16 00:49:24 +08:00
<a-input placeholder="条码/名称/规格/型号" v-model="queryParam.materialParam"></a-input>
2021-06-10 21:56:14 +08:00
</a-form-item>
</a-col>
2022-04-24 22:22:29 +08:00
<a-col :md="6" :sm="24">
2021-06-10 21:56:14 +08:00
<a-form-item label="单据日期" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-range-picker
2022-04-24 22:22:29 +08:00
style="width: 100%"
2021-06-10 21:56:14 +08:00
v-model="queryParam.createTimeRange"
format="YYYY-MM-DD"
:placeholder="['开始时间', '结束时间']"
@change="onDateChange"
/>
</a-form-item>
</a-col>
2022-04-24 22:22:29 +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>
2022-04-24 22:22:29 +08:00
<a @click="handleToggleSearch" style="margin-left: 8px">
{{ toggleSearchStatus ? '收起' : '展开' }}
<a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
</a>
2021-06-10 21:56:14 +08:00
</span>
</a-col>
<a-col :md="6" :sm="24">
<a-form-item>
<span>入库总数量{{numSumTotalStr}}入库总金额{{priceSumTotalStr}}</span>
</a-form-item>
</a-col>
2022-04-24 22:22:29 +08:00
<template v-if="toggleSearchStatus">
<a-col :md="6" :sm="24">
<a-form-item label="往来单位" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select placeholder="选择往来单位" v-model="queryParam.organId"
:dropdownMatchSelectWidth="false" showSearch allow-clear optionFilterProp="children">
<a-select-option v-for="(item,index) in organList" :key="index" :value="item.id">
{{ item.supplier }}
</a-select-option>
</a-select>
</a-form-item>
</a-col>
2022-04-24 22:22:29 +08:00
<a-col :md="6" :sm="24">
<a-form-item label="仓库" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select
optionFilterProp="children"
showSearch allow-clear style="width: 100%"
placeholder="请选择仓库"
v-model="queryParam.depotId">
<a-select-option v-for="(depot,index) in depotList" :value="depot.id" :key="index">
2022-04-24 22:22:29 +08:00
{{ depot.depotName }}
</a-select-option>
</a-select>
</a-form-item>
</a-col>
<a-col :md="6" :sm="24" v-if="orgaTree.length">
<a-form-item label="机构" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-tree-select style="width:100%" allow-clear :treeData="orgaTree"
v-model="queryParam.organizationId" placeholder="请选择机构">
</a-tree-select>
</a-form-item>
</a-col>
2022-04-24 22:22:29 +08:00
</template>
2021-06-10 21:56:14 +08:00
</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">
</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 { getFormatDate, getNowFormatYear, getPrevMonthFormatDate } from '@/utils/util'
2021-04-07 23:53:57 +08:00
import {getAction} from '@/api/manage'
import {findBySelectOrgan, getAllOrganizationTreeByUser} from '@/api/api'
2021-04-07 23:53:57 +08:00
import JEllipsis from '@/components/jeecg/JEllipsis'
import moment from 'moment'
import Vue from 'vue'
2021-04-07 23:53:57 +08:00
export default {
2021-09-02 22:33:27 +08:00
name: "InMaterialCount",
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: {
organId: '',
materialParam:'',
depotId: '',
organizationId: '',
beginTime: getPrevMonthFormatDate(3),
endTime: getFormatDate(),
createTimeRange: [moment(getPrevMonthFormatDate(3)), moment(getFormatDate())],
type: "入库",
2021-04-07 23:53:57 +08:00
},
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
},
organList: [],
2021-04-07 23:53:57 +08:00
depotList: [],
orgaTree: [],
numSumTotalStr: '0',
priceSumTotalStr: '0',
2021-04-07 23:53:57 +08:00
tabKey: "1",
// 表头
columns: [
{
title: '#', dataIndex: 'rowIndex', width:40, align:"center",
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
}
},
2023-12-25 23:45:03 +08:00
{title: '条码', dataIndex: 'barCode', sorter: (a, b) => a.barCode - b.barCode, width: 120},
{title: '名称', dataIndex: 'mName', width: 120, ellipsis:true},
{title: '规格', dataIndex: 'standard', width: 100, ellipsis:true},
{title: '型号', dataIndex: 'model', width: 100, ellipsis:true},
{title: '类别', dataIndex: 'categoryName', width: 120, ellipsis:true},
{title: '单位', dataIndex: 'materialUnit', width: 120, ellipsis:true},
{title: '入库数量', dataIndex: 'numSum', sorter: (a, b) => a.numSum - b.numSum, width: 120},
{title: '入库金额', dataIndex: 'priceSum', sorter: (a, b) => a.priceSum - b.priceSum, width: 120}
2021-04-07 23:53:57 +08:00
],
url: {
list: "/depotHead/findInOutMaterialCount",
}
}
},
created () {
this.getDepotData()
this.initSupplier()
this.loadAllOrgaData()
2021-04-07 23:53:57 +08:00
},
methods: {
moment,
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;
},
onDateChange: function (value, dateString) {
this.queryParam.beginTime=dateString[0]
this.queryParam.endTime=dateString[1]
if(dateString[0] && dateString[1]) {
this.queryParam.createTimeRange = [moment(dateString[0]), moment(dateString[1])]
}
2021-04-07 23:53:57 +08:00
},
loadData(arg) {
if (arg === 1) {
this.ipagination.current = 1;
}
let params = this.getQueryParams();//查询条件
this.loading = true;
getAction(this.url.list, params).then((res) => {
if (res.code===200) {
this.dataSource = res.data.rows;
this.ipagination.total = res.data.total;
this.numSumTotalStr = res.data.numSumTotal.toFixed(2)
this.priceSumTotalStr = res.data.priceSumTotal.toFixed(2)
this.tableAddTotalRow(this.columns, this.dataSource)
}
if(res.code===510){
this.$message.warning(res.data)
}
this.loading = false;
})
},
2021-04-07 23:53:57 +08:00
initSupplier() {
let that = this;
findBySelectOrgan({}).then((res)=>{
2021-04-07 23:53:57 +08:00
if(res) {
that.organList = res;
2021-04-07 23:53:57 +08:00
}
});
},
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);
}
})
},
loadAllOrgaData(){
let that = this
let params = {}
getAllOrganizationTreeByUser(params).then((res)=>{
if(res){
that.orgaTree = res
}
})
},
searchQuery() {
if(this.queryParam.beginTime == '' || this.queryParam.endTime == ''){
this.$message.warning('请选择单据日期')
} else {
this.loadData(1);
}
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.barCode, ds.mName, ds.standard, ds.model, ds.categoryName, ds.materialUnit, ds.numSum, ds.priceSum)
list.push(item)
2021-09-08 22:33:13 +08:00
}
let tip = '单据日期' + this.queryParam.beginTime + '~' + this.queryParam.endTime
this.handleExportXlsPost('入库汇总', '入库汇总', head, tip, list)
2021-04-07 23:53:57 +08:00
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less'
</style>