mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
update
This commit is contained in:
@@ -27,6 +27,7 @@ import com.jsowell.common.enums.ykc.*;
|
||||
import com.jsowell.common.exception.BusinessException;
|
||||
import com.jsowell.common.util.DateUtils;
|
||||
import com.jsowell.common.util.StringUtils;
|
||||
import com.jsowell.common.util.bean.BeanUtils;
|
||||
import com.jsowell.pile.domain.*;
|
||||
import com.jsowell.pile.dto.*;
|
||||
import com.jsowell.pile.mapper.OrderBasicInfoMapper;
|
||||
@@ -1429,5 +1430,26 @@ public class TempService {
|
||||
public List<StationSplitConfig> queryOrderSplitConfigList(String orderCode) {
|
||||
return orderBasicInfoService.queryOrderSplitConfigList(orderCode);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出财务中心报表以下字段
|
||||
* 日期 总结算金额(元) 电费金额(元) 服务费金额(元) 交易金额(元) 交易手续费(元)
|
||||
* @param dto
|
||||
* @return
|
||||
*/
|
||||
public MerchantOrderReportExportVO exportFinanceCenter(MerchantOrderReportDTO dto) {
|
||||
MerchantOrderReportVO reportVO = settleOrderReportService.getMerchantOrderReportV2(dto);
|
||||
MerchantOrderReportExportVO exportVO = new MerchantOrderReportExportVO();
|
||||
|
||||
if (reportVO != null) {
|
||||
OrderReportDetail detail = reportVO.getMerchantOrderReport();
|
||||
if (detail != null) {
|
||||
BeanUtils.copyProperties(detail, exportVO);
|
||||
}
|
||||
}
|
||||
|
||||
return exportVO;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user