2025-05-05 12:54:09 +00:00
|
|
|
|
<template>
|
|
|
|
|
|
<XdPageContainer id="BillPaybackSumQuery1" >
|
|
|
|
|
|
<SearchForm slot="pageHeader" :model="queryParams" ref="queryForm" size="mini" :maxShow="20" label-width="68px" v-show="showSearch" @search="handleQuery" @reset="resetQuery">
|
|
|
|
|
|
<el-row :gutter="0" style="display: flex;flex-wrap: wrap;">
|
|
|
|
|
|
<!-- 查询条件:客户名称、寄件公司、销售联系人、回款联系人、运单号、账单号、账期月、收款时间、收款登记人、 -->
|
|
|
|
|
|
<el-col :span="6">
|
2025-05-05 22:52:47 +00:00
|
|
|
|
<el-form-item label="" prop="queryKey" label-width="80px">
|
2025-05-05 12:54:09 +00:00
|
|
|
|
<div slot="label">
|
|
|
|
|
|
<el-radio-group class="query-label" v-model="queryOrderType">
|
|
|
|
|
|
<el-radio :key="1" label="1">运单号</el-radio>
|
|
|
|
|
|
<el-radio :key="2" label="2">账单号</el-radio>
|
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<XdTextareaInput
|
2025-05-05 22:52:47 +00:00
|
|
|
|
v-model="queryParams.queryKey"
|
2025-05-05 12:54:09 +00:00
|
|
|
|
:placeholder="$t('多个流水号逗号或换行隔开')"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
:rows="2"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="收款时间" prop="createTime" >
|
|
|
|
|
|
<elDateAdvPicker v-model="dateTimeRange" style="z-index:9999;width:200px" ></elDateAdvPicker>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="18">
|
|
|
|
|
|
<el-form-item label="月结客户" prop="custNo">
|
|
|
|
|
|
<AllMonthpayAccountPicker v-model="queryParams.custNo" ></AllMonthpayAccountPicker>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item :label="$t('回款联系人')" prop="payee" label-width="100px">
|
|
|
|
|
|
<PayeePicker :placeholder="$t('回款联系人')" v-model="queryParams.payee" ></PayeePicker>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item :label="$t('销售联系人')" prop="salesmen" label-width="100px">
|
|
|
|
|
|
<SalemanPicker :placeholder="$t('销售联系人')" v-model="queryParams.salesmen" ></SalemanPicker>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="账单月份" prop="billMonth">
|
2025-05-05 22:52:47 +00:00
|
|
|
|
<el-date-picker size="mini" style="width:100%" v-model="queryParams.billMonthScope" type="months" placeholder="账单月份" value-format="yyyy-MM"></el-date-picker>
|
2025-05-05 12:54:09 +00:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item :label="$t('支付方式')" prop="settleType" >
|
|
|
|
|
|
<el-select clearable v-model="queryParams.settleType" placeholder="支付方式" style="width:100%">
|
|
|
|
|
|
<el-option key="1" label="现金" value="1"></el-option>
|
|
|
|
|
|
<el-option key="2" label="月结" value="2"></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
2025-05-05 22:52:47 +00:00
|
|
|
|
<el-form-item label="收款登记人" prop="createBy" label-width="100px">
|
|
|
|
|
|
<SysUserSimplePicker v-model="queryParams.params.payCreateBy" ></SysUserSimplePicker>
|
|
|
|
|
|
</el-form-item>
|
2025-05-05 12:54:09 +00:00
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</SearchForm>
|
|
|
|
|
|
<!-- slot-scope="slotProps"
|
|
|
|
|
|
:height="(slotProps.contentHeight-100)+'px'" -->
|
|
|
|
|
|
|
|
|
|
|
|
<div slot="pageContent">
|
|
|
|
|
|
<xd-table
|
|
|
|
|
|
height="calc(100vh - 20rem)"
|
|
|
|
|
|
|
|
|
|
|
|
ref="refTable"
|
|
|
|
|
|
|
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
|
border
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
|
2025-05-06 23:42:36 +00:00
|
|
|
|
storageName="PayBackStatList_main_2505_04"
|
2025-05-05 12:54:09 +00:00
|
|
|
|
|
|
|
|
|
|
:data="emisStatList"
|
|
|
|
|
|
:showSearch.sync="showSearch"
|
|
|
|
|
|
:queryParams="queryParams"
|
|
|
|
|
|
:total="total"
|
|
|
|
|
|
|
|
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
|
|
@sort-change="handleSortChange"
|
|
|
|
|
|
@row-dblclick="onDblClick"
|
|
|
|
|
|
|
|
|
|
|
|
show-summary
|
|
|
|
|
|
:summary-method="getSummaries"
|
|
|
|
|
|
|
|
|
|
|
|
highlight-current-row
|
|
|
|
|
|
>
|
|
|
|
|
|
<div slot="toolbar">
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
2025-05-14 22:05:11 +00:00
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
plain
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
@click="handleShowCanlender"
|
|
|
|
|
|
>收款日历</el-button>
|
|
|
|
|
|
</el-col>
|
2025-05-05 12:54:09 +00:00
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
type="warning"
|
|
|
|
|
|
plain
|
|
|
|
|
|
icon="el-icon-download"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
@click="handleExport"
|
|
|
|
|
|
>导出</el-button>
|
|
|
|
|
|
</el-col>
|
2025-05-06 00:04:38 +00:00
|
|
|
|
<!-- <el-col :span="1.5">
|
2025-05-05 12:54:09 +00:00
|
|
|
|
<el-button
|
|
|
|
|
|
type="warning"
|
|
|
|
|
|
plain
|
|
|
|
|
|
icon="el-icon-download"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
@click="handleExportDtl"
|
|
|
|
|
|
>导出收款明细</el-button>
|
2025-05-06 00:04:38 +00:00
|
|
|
|
</el-col> -->
|
2025-05-05 12:54:09 +00:00
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 客户名称 寄件公司 账单名称 账单月份 账期 支付方式 开票状态 收款状态 账单金额 账期内收款金额 超期收款金额(70%) 逾期已收金额(60天) 未收款金额 销售联系人 回款联系人 -->
|
|
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
|
<el-table-column :label="$t('账单名称')" align="left" prop="settleBillName" width="200" :show-overflow-tooltip="true"/>
|
|
|
|
|
|
<el-table-column :label="$t('账单月份')" align="center" prop="billMonth" width="80" />
|
|
|
|
|
|
<el-table-column :label="$t('账期(天)')" align="center" prop="creditPeriod" min-width="100" />
|
2025-05-05 22:52:47 +00:00
|
|
|
|
<el-table-column :label="$t('出账时间')" align="center" prop="createTime" min-width="170" />
|
2025-05-05 12:54:09 +00:00
|
|
|
|
<el-table-column :label="$t('最后回款日')" align="center" prop="paymentDueDate" min-width="170" />
|
2025-05-06 09:27:03 +00:00
|
|
|
|
<el-table-column :label="$t('支付方式')" align="center" prop="settleType" width="100" >
|
2025-05-05 12:54:09 +00:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<el-tag v-if="scope.row.settleType=='1'" type="error">现金</el-tag>
|
|
|
|
|
|
<el-tag v-if="scope.row.settleType=='2'" type="success">月结</el-tag>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2025-05-05 22:52:47 +00:00
|
|
|
|
<el-table-column :label="$t('账单金额')" align="center" prop="recMoney" width="150" />
|
2025-05-06 23:42:36 +00:00
|
|
|
|
<el-table-column :label="$t('总票数')" align="center" prop="sendPieceSum" width="80" />
|
2025-05-06 22:54:55 +00:00
|
|
|
|
<el-table-column :label="$t('账期内收款金额(100%)')" align="center" prop="recdMoneyIn" width="180" >
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div class="link-type" @click="handleShowBillList(scope.row,1)">{{ scope.row.recdMoneyIn }}</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column :label="$t('超期收款金额(70%)')" align="center" prop="recdPayMoney60D" width="150" >
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div class="link-type" @click="handleShowBillList(scope.row,2)">{{ scope.row.recdPayMoney60D }}</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column :label="$t('逾期已收金额(60天)')" align="center" prop="recdPayMoneyGreat60D" width="150" >
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div class="link-type" @click="handleShowBillList(scope.row,3)">{{ scope.row.recdPayMoneyGreat60D }}</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column :label="$t('未收款金额')" align="center" prop="noRecMoney" width="150" >
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div class="link-type" @click="handleShowNoPayBillList(scope.row,4)">{{ scope.row.noRecMoney }}</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2025-05-05 22:52:47 +00:00
|
|
|
|
<el-table-column :label="$t('收款状态')" align="center" prop="paymentStatus" width="100" >
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<el-tag v-if="scope.row.paymentStatus=='0'" type="error">未收款</el-tag>
|
|
|
|
|
|
<el-tag v-if="scope.row.paymentStatus=='1'" type="success">已收款</el-tag>
|
|
|
|
|
|
<el-tag v-if="scope.row.paymentStatus=='2'" type="warning">部分收款</el-tag>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column :label="$t('月结客户')" align="center" prop="custName" min-width="150" :show-overflow-tooltip="true">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<span type="normal">{{ scope.row.custName }}</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2025-05-05 12:54:09 +00:00
|
|
|
|
|
2025-05-05 22:52:47 +00:00
|
|
|
|
<el-table-column :label="$t('寄件人')" align="left" prop="customerName" width="200" :show-overflow-tooltip="true"/>
|
|
|
|
|
|
<el-table-column :label="$t('账单编号')" align="center" prop="settleBillNo" width="170" :show-overflow-tooltip="true"/>
|
2025-05-05 12:54:09 +00:00
|
|
|
|
<el-table-column :label="$t('开票状态')" align="center" prop="openBillStatus" width="100" >
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<el-tag v-if="scope.row.openBillStatus=='0'" type="error">未开票</el-tag>
|
|
|
|
|
|
<el-tag v-if="scope.row.openBillStatus=='1'" type="success">已开票</el-tag>
|
|
|
|
|
|
<el-tag v-if="scope.row.openBillStatus=='2'" type="warning">部分开票</el-tag>
|
|
|
|
|
|
<el-tag v-if="scope.row.openBillStatus=='3'" type="warning">不开票</el-tag>
|
|
|
|
|
|
<el-tag v-if="scope.row.openBillStatus=='4'" type="success">已完成</el-tag>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column :label="$t('回款联系人')" align="center" prop="payee" width="100" />
|
|
|
|
|
|
<el-table-column :label="$t('销售联系人')" align="center" prop="salesmen" width="100" />
|
|
|
|
|
|
</xd-table>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</XdPageContainer>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
2025-05-08 05:41:53 +00:00
|
|
|
|
import { queryPayBackStatList } from "@/api/emis/emisSettleBill";
|
2025-05-05 12:54:09 +00:00
|
|
|
|
import elDateAdvPicker from '@/components/DatePickerAdv/elDateAdvPicker';
|
|
|
|
|
|
import AllMonthpayAccountPicker from '@/views/emis/EmisBaseTools/AllMonthpayAccountPicker.vue';
|
|
|
|
|
|
|
2025-05-05 22:52:47 +00:00
|
|
|
|
import SysUserSimplePicker from '@/views/emis/EmisBaseTools/SysUserSimplePicker.vue';
|
|
|
|
|
|
|
2025-05-05 12:54:09 +00:00
|
|
|
|
import PayeePicker from '@/views/emis/EmisBaseTools/PayeePicker.vue';
|
|
|
|
|
|
import SalemanPicker from '@/views/emis/EmisBaseTools/SalemanPicker.vue';
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
2025-05-06 06:09:57 +00:00
|
|
|
|
name: "PayBackStatQuery",
|
2025-05-05 22:52:47 +00:00
|
|
|
|
components: { PayeePicker,SalemanPicker,elDateAdvPicker,AllMonthpayAccountPicker,SysUserSimplePicker},
|
|
|
|
|
|
dicts: ['emis_payment_status'],
|
2025-05-05 12:54:09 +00:00
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
// 调整表格的高度,不允许滚动
|
|
|
|
|
|
tableHeight: 200,
|
|
|
|
|
|
// 遮罩层
|
|
|
|
|
|
loading: false,
|
|
|
|
|
|
// 选中数组
|
|
|
|
|
|
ids: [],
|
|
|
|
|
|
// 非单个禁用
|
|
|
|
|
|
single: true,
|
|
|
|
|
|
// 非多个禁用
|
|
|
|
|
|
multiple: true,
|
|
|
|
|
|
// 显示搜索条件
|
|
|
|
|
|
showSearch: true,
|
|
|
|
|
|
// 创建时间搜索
|
|
|
|
|
|
dateTimeRange:[],
|
2025-05-05 22:52:47 +00:00
|
|
|
|
|
2025-05-05 12:54:09 +00:00
|
|
|
|
// 总条数
|
|
|
|
|
|
total: 0,
|
|
|
|
|
|
recordTotal:0,
|
2025-05-05 22:52:47 +00:00
|
|
|
|
|
2025-05-05 12:54:09 +00:00
|
|
|
|
emisStatList: [],
|
|
|
|
|
|
emisStatRecordList:[],
|
2025-05-05 22:52:47 +00:00
|
|
|
|
selectionList:[],
|
|
|
|
|
|
|
2025-05-05 12:54:09 +00:00
|
|
|
|
// 弹出层标题
|
|
|
|
|
|
title: "",
|
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
|
open: false,
|
|
|
|
|
|
|
|
|
|
|
|
activeName: 'first',
|
|
|
|
|
|
|
|
|
|
|
|
openForm: false,
|
|
|
|
|
|
titleForm: "",
|
|
|
|
|
|
|
2025-05-05 22:52:47 +00:00
|
|
|
|
queryOrderType:null,
|
2025-05-05 12:54:09 +00:00
|
|
|
|
|
|
|
|
|
|
titleEmisElectronicPagApply: "",
|
|
|
|
|
|
openEmisElectronicPagApply: false,
|
|
|
|
|
|
|
|
|
|
|
|
// 显示编辑框更多
|
|
|
|
|
|
moreInputVisible: false,
|
|
|
|
|
|
|
|
|
|
|
|
dataMap:new Map(),
|
|
|
|
|
|
|
|
|
|
|
|
// 弹出展示层
|
|
|
|
|
|
currentId:null,
|
|
|
|
|
|
id:null,
|
|
|
|
|
|
titleView:"",
|
|
|
|
|
|
openView: false,
|
|
|
|
|
|
|
|
|
|
|
|
// 查询参数
|
|
|
|
|
|
queryParams: {
|
|
|
|
|
|
pageNum:1,
|
|
|
|
|
|
pageSize:500,
|
2025-05-05 22:52:47 +00:00
|
|
|
|
queryKey:null,
|
2025-05-05 12:54:09 +00:00
|
|
|
|
settleBillNo: null,
|
|
|
|
|
|
settleType: null,
|
|
|
|
|
|
billMonth: null,
|
2025-05-05 22:52:47 +00:00
|
|
|
|
billMonthScope:[],
|
2025-05-05 12:54:09 +00:00
|
|
|
|
custNo: null,
|
|
|
|
|
|
openBillStatus: null,
|
|
|
|
|
|
paymentStatus: null,
|
|
|
|
|
|
chargeStatus: null,
|
|
|
|
|
|
payee: null,
|
|
|
|
|
|
salesmen: null,
|
2025-05-05 22:52:47 +00:00
|
|
|
|
createBy:null,
|
|
|
|
|
|
params:{
|
|
|
|
|
|
billCode:null,
|
|
|
|
|
|
payCreateBy:null
|
|
|
|
|
|
}
|
2025-05-05 12:54:09 +00:00
|
|
|
|
},
|
|
|
|
|
|
// 表单参数
|
|
|
|
|
|
form: {},
|
|
|
|
|
|
// 表单校验
|
|
|
|
|
|
rules: {
|
|
|
|
|
|
id: [
|
|
|
|
|
|
{ required: true, message: "id不能为空", trigger: "blur" }
|
|
|
|
|
|
],
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
created() {
|
2025-05-05 22:52:47 +00:00
|
|
|
|
this.queryOrderType='1';
|
2025-05-05 12:54:09 +00:00
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
2025-05-05 22:52:47 +00:00
|
|
|
|
initQueryParams(){
|
|
|
|
|
|
|
|
|
|
|
|
let thisQueryParams = {...this.queryParams};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 按运单查询时的处理
|
|
|
|
|
|
if(this.queryOrderType==1){
|
|
|
|
|
|
thisQueryParams.params.billCode=thisQueryParams.queryKey;
|
|
|
|
|
|
thisQueryParams.settleBillNo=null;
|
|
|
|
|
|
}
|
|
|
|
|
|
else if(this.queryOrderType==2){
|
|
|
|
|
|
thisQueryParams.params.billCode=null;
|
|
|
|
|
|
thisQueryParams.settleBillNo=thisQueryParams.queryKey;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
thisQueryParams = this.addDateRange(thisQueryParams, this.dateTimeRange,"tradeDate");
|
|
|
|
|
|
|
|
|
|
|
|
if(thisQueryParams.billMonthScope&&thisQueryParams.billMonthScope.length>0){
|
|
|
|
|
|
thisQueryParams.billMonth=thisQueryParams.billMonthScope.join(",");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return thisQueryParams;
|
|
|
|
|
|
},
|
2025-05-14 22:05:11 +00:00
|
|
|
|
handleShowCanlender(){
|
|
|
|
|
|
this.$router.push(
|
|
|
|
|
|
{
|
|
|
|
|
|
path: '/BIStatData/PayDay',
|
|
|
|
|
|
query: {
|
|
|
|
|
|
action: "queryPayData",
|
|
|
|
|
|
'_t':(new Date()).getTime()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
|
|
|
|
|
},
|
2025-05-06 22:54:55 +00:00
|
|
|
|
handleShowBillList(row,queryDataType){
|
|
|
|
|
|
let item0=row;
|
|
|
|
|
|
this.$router.push(
|
|
|
|
|
|
{
|
|
|
|
|
|
path: '/BIStatData/PayBackRecordList',
|
|
|
|
|
|
query: {
|
|
|
|
|
|
action: "queryBIData",
|
|
|
|
|
|
settleBillNo: item0.settleBillNo,
|
|
|
|
|
|
queryDataType:queryDataType,
|
|
|
|
|
|
'_t':(new Date()).getTime()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
|
|
|
|
|
},
|
|
|
|
|
|
handleShowNoPayBillList(row,queryDataType){
|
|
|
|
|
|
let item0=row;
|
|
|
|
|
|
this.$router.push(
|
|
|
|
|
|
{
|
|
|
|
|
|
path: '/BIStatData/NoPayBackRecordList',
|
|
|
|
|
|
query: {
|
|
|
|
|
|
action: "queryBIData",
|
|
|
|
|
|
settleBillNo: item0.settleBillNo,
|
|
|
|
|
|
queryDataType:queryDataType,
|
|
|
|
|
|
'_t':(new Date()).getTime()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
|
|
|
|
|
},
|
2025-05-05 12:54:09 +00:00
|
|
|
|
/** 查询统计信息 */
|
|
|
|
|
|
getList() {
|
|
|
|
|
|
this.loading = true;
|
2025-05-05 22:52:47 +00:00
|
|
|
|
let tempQueryParams = this.initQueryParams();
|
|
|
|
|
|
|
|
|
|
|
|
queryPayBackStatList(tempQueryParams).then(response => {
|
2025-05-05 12:54:09 +00:00
|
|
|
|
this.emisStatList = response.rows;
|
|
|
|
|
|
this.total = response.total;
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
handleQuery(){
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 查询明细列表 */
|
|
|
|
|
|
onDblClick(row, column, event) {
|
|
|
|
|
|
// this.loading = true;
|
|
|
|
|
|
console.log("===>onDblClick====>",row);
|
2025-05-06 22:54:55 +00:00
|
|
|
|
this.handleShowBillList(row,0);
|
|
|
|
|
|
// this.$emit("onSelect", row);
|
2025-05-05 12:54:09 +00:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
|
resetQuery() {
|
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
|
},
|
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
|
|
this.selectionList=selection;
|
|
|
|
|
|
this.ids = selection.map(item => item.id)
|
|
|
|
|
|
this.single = selection.length!==1
|
|
|
|
|
|
this.multiple = !selection.length
|
|
|
|
|
|
},
|
|
|
|
|
|
// 排序 查询字段是表格中字段名字 动态取值排序顺序
|
|
|
|
|
|
getProperty(obj, str) {
|
|
|
|
|
|
str = str.replace(/\[(\w+)\]/g, ".$1"); // 处理数组下标
|
|
|
|
|
|
let arr = str.split(".");
|
|
|
|
|
|
for (let i in arr) {
|
|
|
|
|
|
obj = obj[arr[i]] || "";
|
|
|
|
|
|
}
|
|
|
|
|
|
return obj;
|
|
|
|
|
|
},
|
|
|
|
|
|
sortFun: function (attr, rev) {
|
|
|
|
|
|
//第一个参数传入info里的prop表示排的是哪一列,第二个参数是升还是降排序
|
|
|
|
|
|
if (rev == undefined||rev==null) {
|
|
|
|
|
|
rev = 1;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
rev = (rev) ? 1 : -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
let that=this;
|
|
|
|
|
|
return function (a, b) {
|
|
|
|
|
|
a = that.getProperty(a,attr);
|
|
|
|
|
|
b = that.getProperty(b,attr);
|
|
|
|
|
|
if (a < b) {
|
|
|
|
|
|
return rev * -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (a > b) {
|
|
|
|
|
|
return rev * 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
// 排序 查询字段是表格中字段名字 动态取值排序顺序
|
|
|
|
|
|
handleSortChange(column) {
|
|
|
|
|
|
this.emisStatList = this.emisStatList.sort(
|
|
|
|
|
|
this.sortFun(column.prop, column.order === 'ascending')
|
|
|
|
|
|
);
|
|
|
|
|
|
},
|
|
|
|
|
|
//指定列求和
|
|
|
|
|
|
getSummaries(param) {
|
|
|
|
|
|
const { columns, data } = param;
|
|
|
|
|
|
const sums = [];
|
|
|
|
|
|
columns.forEach((column, index) => {
|
|
|
|
|
|
if (index === 0) {
|
|
|
|
|
|
sums[index] = '合计';
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (
|
|
|
|
|
|
column.property === 'recMoney'
|
|
|
|
|
|
) {
|
|
|
|
|
|
const values = data.map(item => Number(item.recMoney));
|
|
|
|
|
|
sums[index] = values.reduce((prev, curr) => {
|
|
|
|
|
|
const value = Number(curr);
|
|
|
|
|
|
if (!isNaN(value)) {
|
|
|
|
|
|
return prev + curr;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return prev;
|
|
|
|
|
|
}
|
|
|
|
|
|
}, 0);
|
|
|
|
|
|
sums[index] = sums[index].toFixed(2);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
else if (
|
|
|
|
|
|
column.property === 'recdMoneyIn'
|
|
|
|
|
|
|
|
|
|
|
|
) {
|
|
|
|
|
|
const values = data.map(item => Number(item.recdMoneyIn));
|
|
|
|
|
|
|
|
|
|
|
|
sums[index] = values.reduce((prev, curr) => {
|
|
|
|
|
|
const value = Number(curr);
|
|
|
|
|
|
if (!isNaN(value)) {
|
|
|
|
|
|
return prev + curr;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return prev;
|
|
|
|
|
|
}
|
|
|
|
|
|
}, 0);
|
|
|
|
|
|
sums[index] = sums[index].toFixed(2);
|
|
|
|
|
|
}
|
|
|
|
|
|
else if (
|
|
|
|
|
|
column.property === 'recdPayMoney60D'
|
|
|
|
|
|
|
|
|
|
|
|
) {
|
|
|
|
|
|
const values = data.map(item => Number(item.recdPayMoney60D));
|
|
|
|
|
|
|
|
|
|
|
|
sums[index] = values.reduce((prev, curr) => {
|
|
|
|
|
|
const value = Number(curr);
|
|
|
|
|
|
if (!isNaN(value)) {
|
|
|
|
|
|
return prev + curr;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return prev;
|
|
|
|
|
|
}
|
|
|
|
|
|
}, 0);
|
|
|
|
|
|
sums[index] = sums[index].toFixed(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
else if (
|
|
|
|
|
|
column.property === 'recdPayMoneyGreat60D'
|
|
|
|
|
|
) {
|
|
|
|
|
|
const values = data.map(item => Number(item.recdPayMoneyGreat60D));
|
|
|
|
|
|
sums[index] = values.reduce((prev, curr) => {
|
|
|
|
|
|
const value = Number(curr);
|
|
|
|
|
|
if (!isNaN(value)) {
|
|
|
|
|
|
return prev + curr;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return prev;
|
|
|
|
|
|
}
|
|
|
|
|
|
}, 0);
|
|
|
|
|
|
sums[index] = sums[index].toFixed(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
else if(
|
|
|
|
|
|
column.property === 'noRecMoney'
|
|
|
|
|
|
){
|
|
|
|
|
|
const values = data.map(item => Number(item.noRecMoney));
|
|
|
|
|
|
sums[index] = values.reduce((prev, curr) => {
|
|
|
|
|
|
const value = Number(curr);
|
|
|
|
|
|
if (!isNaN(value)) {
|
|
|
|
|
|
return prev + curr;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return prev;
|
|
|
|
|
|
}
|
|
|
|
|
|
}, 0);
|
|
|
|
|
|
sums[index] = sums[index].toFixed(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
console.log(sums);
|
|
|
|
|
|
return sums
|
|
|
|
|
|
},
|
|
|
|
|
|
handleExportDtl(){
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
|
handleExport() {
|
|
|
|
|
|
const loadingInstance = this.$loading({
|
|
|
|
|
|
text: '正在导出...'
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(this.selectionList&&this.selectionList.length>0){
|
|
|
|
|
|
this.exportData(this.selectionList,loadingInstance);
|
|
|
|
|
|
}
|
|
|
|
|
|
else{
|
2025-05-05 22:52:47 +00:00
|
|
|
|
let qExportParam = this.initQueryParams();;
|
2025-05-05 12:54:09 +00:00
|
|
|
|
qExportParam.pageNum=1;
|
2025-05-06 23:30:40 +00:00
|
|
|
|
qExportParam.pageSize=20000;
|
2025-05-05 12:54:09 +00:00
|
|
|
|
|
|
|
|
|
|
queryPayBackStatList(qExportParam).then(response => {
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
this.exportData(response.rows,loadingInstance);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
exportData(selData,loadingInstance){
|
|
|
|
|
|
const curList =selData
|
|
|
|
|
|
import('@/vendor/Export2Excel').then(excel => {
|
|
|
|
|
|
const exportParam=this.$refs.refTable.getExportParam();
|
|
|
|
|
|
const tHeader = exportParam.header;
|
|
|
|
|
|
const filterVal = exportParam.filter;
|
|
|
|
|
|
const data = this.formatJson(filterVal, curList, selData)
|
|
|
|
|
|
excel.export_json_to_excel({
|
|
|
|
|
|
header: tHeader,
|
|
|
|
|
|
data,
|
2025-05-06 09:27:03 +00:00
|
|
|
|
filename: '收款统计',
|
2025-05-05 12:54:09 +00:00
|
|
|
|
autoWidth: true
|
|
|
|
|
|
})
|
|
|
|
|
|
loadingInstance.close()
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
formatJson(filterVal, jsonData, resData) {
|
|
|
|
|
|
let index = 0
|
|
|
|
|
|
return jsonData.map(v => filterVal.map(j => {
|
|
|
|
|
|
|
|
|
|
|
|
if (j === 'index') {
|
|
|
|
|
|
return ++index
|
|
|
|
|
|
}
|
2025-05-05 22:52:47 +00:00
|
|
|
|
if (j === 'paymentStatus') {
|
|
|
|
|
|
return this.selectDictLabel(this.dict.type.emis_payment_status,v[j]);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (j === 'openBillStatus') {
|
|
|
|
|
|
if(v[j] == 0){
|
|
|
|
|
|
return '未开票';
|
|
|
|
|
|
}
|
|
|
|
|
|
else if(v[j] == 1){
|
|
|
|
|
|
return '已开票';
|
|
|
|
|
|
}
|
|
|
|
|
|
else if(v[j] == 2){
|
|
|
|
|
|
return '部分开票';
|
|
|
|
|
|
}
|
|
|
|
|
|
else if(v[j] == 3){
|
|
|
|
|
|
return '不开票';
|
|
|
|
|
|
}
|
|
|
|
|
|
else{
|
|
|
|
|
|
return '/';
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-05-06 09:27:03 +00:00
|
|
|
|
if (j === 'settleType') {
|
|
|
|
|
|
if(v[j] == 1){
|
|
|
|
|
|
return '现金';
|
|
|
|
|
|
}
|
|
|
|
|
|
else if(v[j] == 2){
|
|
|
|
|
|
return '月结';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-05 12:54:09 +00:00
|
|
|
|
return v[j]
|
|
|
|
|
|
}))
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
.el-divider{
|
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
|
background: 0 0;
|
|
|
|
|
|
border-top: 1px solid #E6EBF5;
|
|
|
|
|
|
}
|
|
|
|
|
|
.el-divider__text {
|
|
|
|
|
|
color: #0955ee;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
.ellipsis {
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|