| | |
| | | |
| | | /** |
| | | * 临时车收入 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询退款押金 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 按收款方式统计收入 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | List<Map> infos = reportFeeStatisticsServiceDaoImpl.getObjOweFee(BeanConvertUtil.beanCovertMap(queryStatisticsDto)); |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public long getReceivedRoomCount(@RequestBody QueryStatisticsDto queryStatisticsDto) { |
| | | long info = reportFeeStatisticsServiceDaoImpl.getReceivedRoomCount(BeanConvertUtil.beanCovertMap(queryStatisticsDto)); |
| | | return info; |
| | | } |
| | | |
| | | @Override |
| | | public double getReceivedRoomAmount(@RequestBody QueryStatisticsDto queryStatisticsDto) { |
| | | double info = reportFeeStatisticsServiceDaoImpl.getReceivedRoomAmount(BeanConvertUtil.beanCovertMap(queryStatisticsDto)); |
| | | return info; |
| | | } |
| | | |
| | | @Override |
| | | public long getHisOweReceivedRoomCount(@RequestBody QueryStatisticsDto queryStatisticsDto) { |
| | | long info = reportFeeStatisticsServiceDaoImpl.getHisOweReceivedRoomCount(BeanConvertUtil.beanCovertMap(queryStatisticsDto)); |
| | | return info; |
| | | } |
| | | |
| | | @Override |
| | | public double getHisOweReceivedRoomAmount(@RequestBody QueryStatisticsDto queryStatisticsDto) { |
| | | double info = reportFeeStatisticsServiceDaoImpl.getHisOweReceivedRoomAmount(BeanConvertUtil.beanCovertMap(queryStatisticsDto)); |
| | | return info; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> getObjReceivedFee(@RequestBody QueryStatisticsDto queryStatisticsDto) { |
| | | List<Map> infos = reportFeeStatisticsServiceDaoImpl.getObjReceivedFee(BeanConvertUtil.beanCovertMap(queryStatisticsDto)); |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public long getMonthReceivedDetailCount(@RequestBody QueryStatisticsDto queryStatisticsDto) { |
| | | long info = reportFeeStatisticsServiceDaoImpl.getMonthReceivedDetailCount(BeanConvertUtil.beanCovertMap(queryStatisticsDto)); |
| | | return info; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> getMonthReceivedDetailInfo(@RequestBody QueryStatisticsDto queryStatisticsDto) { |
| | | int page = queryStatisticsDto.getPage(); |
| | | |
| | | if (page != PageDto.DEFAULT_PAGE) { |
| | | queryStatisticsDto.setPage((page - 1) * queryStatisticsDto.getRow()); |
| | | } |
| | | |
| | | List<Map> info = reportFeeStatisticsServiceDaoImpl.getMonthReceivedDetailInfo(BeanConvertUtil.beanCovertMap(queryStatisticsDto)); |
| | | return info; |
| | | } |
| | | |
| | | @Override |
| | | public long getMonthOweDetailCount(@RequestBody QueryStatisticsDto queryStatisticsDto) { |
| | | long info = reportFeeStatisticsServiceDaoImpl.getMonthOweDetailCount(BeanConvertUtil.beanCovertMap(queryStatisticsDto)); |
| | | return info; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> getMonthOweDetailInfo(@RequestBody QueryStatisticsDto queryStatisticsDto) { |
| | | int page = queryStatisticsDto.getPage(); |
| | | |
| | | if (page != PageDto.DEFAULT_PAGE) { |
| | | queryStatisticsDto.setPage((page - 1) * queryStatisticsDto.getRow()); |
| | | } |
| | | |
| | | List<Map> info = reportFeeStatisticsServiceDaoImpl.getMonthOweDetailInfo(BeanConvertUtil.beanCovertMap(queryStatisticsDto)); |
| | | return info; |
| | | } |
| | | |
| | | @Override |
| | | public double getMonthOweDetailAmount(@RequestBody QueryStatisticsDto queryStatisticsDto) { |
| | | double info = reportFeeStatisticsServiceDaoImpl.getMonthOweDetailAmount(BeanConvertUtil.beanCovertMap(queryStatisticsDto)); |
| | | return info; |
| | | } |
| | | |
| | | @Override |
| | | public double getMonthReceivedDetailAmount(@RequestBody QueryStatisticsDto queryStatisticsDto) { |
| | | double info = reportFeeStatisticsServiceDaoImpl.getMonthReceivedDetailAmount(BeanConvertUtil.beanCovertMap(queryStatisticsDto)); |
| | | return info; |
| | | } |
| | | } |