|
|
@ -27,7 +27,7 @@ package com.yxt.anrui.terminal.biz.finance; |
|
|
|
|
|
|
|
|
|
|
|
import com.yxt.anrui.fin.api.fincollectionconfirmation.*; |
|
|
|
import com.yxt.anrui.fin.api.finuncollectedreceivablesdetailed.AppFinUncollectedReceivablesDetailedVo; |
|
|
|
import com.yxt.anrui.fin.api.finuncollectedreceivablesdetailed.*; |
|
|
|
import com.yxt.common.core.query.PagerQuery; |
|
|
|
import com.yxt.common.core.result.ResultBean; |
|
|
|
import com.yxt.common.core.vo.PagerVo; |
|
|
@ -52,6 +52,8 @@ import org.springframework.stereotype.Service; |
|
|
|
public class AppFinCollectionConfirmationService { |
|
|
|
@Autowired |
|
|
|
FinCollectionConfirmationFeign finCollectionConfirmationFeign; |
|
|
|
@Autowired |
|
|
|
FinUncollectedReceivablesDetailedFeign finUncollectedReceivablesDetailedFeign; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
@ -98,7 +100,6 @@ public class AppFinCollectionConfirmationService { |
|
|
|
/** |
|
|
|
* 手机端—删除收款确认单 |
|
|
|
* |
|
|
|
* |
|
|
|
* @param collectionBillSid |
|
|
|
* @return |
|
|
|
*/ |
|
|
@ -115,4 +116,34 @@ public class AppFinCollectionConfirmationService { |
|
|
|
public ResultBean<PagerVo<AppFinUncollectedReceivablesDetailedVo>> getPaymentDetailsList(PagerQuery<AppFinSelectedReceivablesPaymentDetailsQuery> pagerQuery) { |
|
|
|
return finCollectionConfirmationFeign.getPaymentDetailsList(pagerQuery); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* app获取客户账单列表 |
|
|
|
* |
|
|
|
* @param pq |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
public ResultBean<PagerVo<AppCustomerBillSummaryDetailsVo>> getCustomerBillList(PagerQuery<AppFinUncollectedReceivablesDetailedQuery> pq) { |
|
|
|
return finUncollectedReceivablesDetailedFeign.getCustomerBillList(pq); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* app获取客户合同账单列表 |
|
|
|
* |
|
|
|
* @param pq |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
public ResultBean<PagerVo<AppCustomerBillSummaryVo>> getCustomerBill2List(PagerQuery<AppCustomerBillSummaryQuery> pq) { |
|
|
|
return finUncollectedReceivablesDetailedFeign.getCustomerBill2List(pq); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* app获取账单详情 |
|
|
|
* |
|
|
|
* @param paymentSid |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
public ResultBean<PagerVo<AppCustomerBillDetailVo>> getCustomerBillDetail(String paymentSid) { |
|
|
|
return finUncollectedReceivablesDetailedFeign.getCustomerBillDetail(paymentSid); |
|
|
|
} |
|
|
|
} |