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

216 lines
7.7 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 :bordered="false">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
<a-col :md="4" :sm="24">
2021-07-14 23:38:31 +08:00
<a-form-item label="客户" :labelCol="labelCol" :wrapperCol="wrapperCol">
2021-07-12 22:01:20 +08:00
<a-select placeholder="选择客户" v-model="queryParam.organId"
:dropdownMatchSelectWidth="false" showSearch optionFilterProp="children">
2021-06-10 21:56:14 +08:00
<a-select-option v-for="(item,index) in supList" :key="index" :value="item.id">
{{ item.supplier }}
</a-select-option>
</a-select>
</a-form-item>
</a-col>
2021-07-06 23:38:53 +08:00
<a-col :md="5" :sm="24">
2021-06-10 21:56:14 +08:00
<a-form-item label="单据日期" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-range-picker
2021-07-06 23:38:53 +08:00
style="width: 210px"
2021-06-10 21:56:14 +08:00
v-model="queryParam.createTimeRange"
:default-value="defaultTimeStr"
format="YYYY-MM-DD"
:placeholder="['开始时间', '结束时间']"
@change="onDateChange"
/>
</a-form-item>
</a-col>
2021-07-08 00:12:19 +08:00
<a-col :md="3" :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>
<a-button style="margin-left: 8px" v-print="'#reportPrint'" type="primary" icon="printer">打印</a-button>
2021-06-10 21:56:14 +08:00
</span>
</a-col>
<a-col :md="8" :sm="24">
<a-form-item>
2021-07-08 00:12:19 +08:00
{{firstTotal}} {{lastTotal}}
2021-06-10 21:56:14 +08:00
</a-form-item>
</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"
:pagination="ipagination"
2021-09-03 23:21:36 +08:00
:scroll="scroll"
:loading="loading"
@change="handleTableChange">
<span slot="numberCustomRender" slot-scope="text, record">
<a @click="myHandleDetail(record)">{{record.number}}</a>
</span>
</a-table>
</section>
2021-06-10 21:56:14 +08:00
<!-- table区域-end -->
<!-- 表单区域 -->
2021-06-17 20:04:05 +08:00
<bill-detail ref="modalBillDetail"></bill-detail>
<financial-detail ref="modalFinancialDetail"></financial-detail>
2021-06-10 21:56:14 +08:00
</a-card>
</a-col>
</a-row>
2021-04-07 23:53:57 +08:00
</template>
<script>
import BillDetail from '../bill/dialog/BillDetail'
2021-06-17 20:04:05 +08:00
import FinancialDetail from '../financial/dialog/FinancialDetail'
2021-04-07 23:53:57 +08:00
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import { getNowFormatMonth } from '@/utils/util';
2021-07-08 00:12:19 +08:00
import { getAction } from '@/api/manage'
import {findBySelectCus, findBillDetailByNumber, findFinancialDetailByNumber} from '@/api/api'
2021-04-07 23:53:57 +08:00
import JEllipsis from '@/components/jeecg/JEllipsis'
import moment from 'moment'
export default {
2021-09-02 22:33:27 +08:00
name: "CustomerAccount",
2021-04-07 23:53:57 +08:00
mixins:[JeecgListMixin],
components: {
BillDetail,
2021-06-17 20:04:05 +08:00
FinancialDetail,
2021-04-07 23:53:57 +08:00
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: {
supType: "客户",
organId: '',
beginTime: getNowFormatMonth() + '-01',
endTime: moment().format('YYYY-MM-DD'),
},
dateFormat: 'YYYY-MM-DD',
currentDay: moment().format('YYYY-MM-DD'),
defaultTimeStr: '',
supList: [],
firstTotal: '',
lastTotal: '',
tabKey: "1",
// 表头
columns: [
{
title: '#',
dataIndex: '',
key:'rowIndex',
width:40,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},
{
title: '单据编号', dataIndex: 'number', width: 140,
scopedSlots: { customRender: 'numberCustomRender' },
},
2021-04-07 23:53:57 +08:00
{title: '类型', dataIndex: 'type', width: 100},
{title: '单位名称', dataIndex: 'supplierName', width: 200},
{title: '单据金额', dataIndex: 'billMoney', width: 80},
{title: '实际支付', dataIndex: 'changeAmount', width: 80},
{title: '本期变化', dataIndex: 'allPrice', width: 80},
{title: '单据日期', dataIndex: 'oTime', width: 160}
],
url: {
list: "/depotHead/findStatementAccount",
}
}
},
created () {
this.initSupplier()
this.defaultTimeStr = [moment(getNowFormatMonth() + '-01', this.dateFormat), moment(this.currentDay, this.dateFormat)]
},
methods: {
getQueryParams() {
let param = Object.assign({}, this.queryParam, this.isorter);
param.field = this.getQueryField();
param.currentPage = this.ipagination.current;
param.pageSize = this.ipagination.pageSize;
return param;
},
initSupplier() {
let that = this;
findBySelectCus({}).then((res)=>{
if(res) {
that.supList = res;
}
});
},
onDateChange: function (value, dateString) {
console.log(dateString[0],dateString[1]);
this.queryParam.beginTime=dateString[0];
this.queryParam.endTime=dateString[1];
},
myHandleDetail(record) {
2021-06-17 20:04:05 +08:00
if(record.type === '收入' || record.type === '收款') {
findFinancialDetailByNumber({ billNo: record.number }).then((res) => {
if (res && res.code === 200) {
this.$refs.modalFinancialDetail.show(res.data, record.type);
this.$refs.modalFinancialDetail.title="详情";
}
})
} else {
findBillDetailByNumber({ number: record.number }).then((res) => {
if (res && res.code === 200) {
this.$refs.modalBillDetail.show(res.data, record.type);
this.$refs.modalBillDetail.title="详情";
}
})
}
},
2021-07-08 00:12:19 +08:00
loadData(arg) {
//加载数据 若传入参数1则加载第一页的内容
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;
if(this.queryParam.organId) {
this.firstTotal = '期初应收' + res.data.firstMoney + ""
this.lastTotal = '期末应收' + res.data.lastMoney
}
}
if(res.code===510){
this.$message.warning(res.data)
}
this.loading = false;
})
},
searchQuery() {
2021-07-08 00:12:19 +08:00
if(this.queryParam.beginTime === '' || this.queryParam.endTime === ''){
this.$message.warning('请选择单据日期')
} else {
this.loadData(1);
}
2021-04-07 23:53:57 +08:00
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less'
</style>