This commit is contained in:
linfso 2025-05-06 07:19:59 +08:00
parent 1501c847fd
commit af215cf63a
3 changed files with 17 additions and 5 deletions

View File

@ -17,6 +17,7 @@ export function queryPayBackStatList(query) {
})
}
export function queryBillPayStatInfoList(query) {
return request({
url: '/emis/emisSettleBill/queryBillPayStatInfoList',

View File

@ -10,6 +10,16 @@ export function listEmisSettlePayRecord(query) {
}
// 统计收款记录明细
export function queryPayBackRecordList(query) {
return request({
url: '/emis/emisSettlePayRecord/queryPayBackRecordList',
method: 'get',
params: query
})
}
// 查询账单收退款记录详细
export function getEmisSettlePayRecord(id) {

View File

@ -12,7 +12,7 @@
ref="refTable"
storageName="waringEmisSettleBillList_custbill_query_main"
storageName="paybackrecord_query_main_250501"
:data="emisSettleBillList"
:showSearch.sync="showSearch"
:queryParams="queryParams"
@ -38,9 +38,10 @@
</el-row>
</div>
<!-- 账单名称 账单月份 账期 运单号 客户名称 支付方式 付款方式 开票状态 开票金额 收款状态 账单金额 账单退款金额 理赔金额 折让金额 抵扣金额 其他收费 收款金额 收款时间 收款登记人 销售联系人 回款联系人 寄件公司 件数 重量 实际重量 体积 结算重量 线路 产品类型 收款登记备注 -->
<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="settleBillNo" width="170" :show-overflow-tooltip="true"/>
<el-table-column :label="$t('账单月份')" align="center" prop="billMonth" width="80" />
<el-table-column :label="$t('账单期间')" align="center" prop="billMonthRange" width="200" :show-overflow-tooltip="true">
<template slot-scope="scope">
@ -126,11 +127,11 @@
</template>
<script>
import { listEmisSettleBill } from "@/api/emis/emisSettleBill";
import { queryPayBackRecordList } from "@/api/emis/emisSettlePayRecord";
export default {
name: "EmisSettleBillQuery",
name: "PayBackRecordList",
props:{
queryInfo:{
type:Object
@ -240,7 +241,7 @@ export default {
this.queryParams.openBillStatus=0;
}
listEmisSettleBill(this.queryParams).then(response => {
queryPayBackRecordList(this.queryParams).then(response => {
this.emisSettleBillList = response.rows;
this.total = response.total;
this.loading = false;