| | |
| | | //todo 空闲房屋数 |
| | | long feeRoomCount = feeStatisticsImpl.getFeeRoomCount(queryStatisticsDto); |
| | | |
| | | //todo 欠费户数 |
| | | int oweRoomCount = feeStatisticsImpl.getOweRoomCount(queryStatisticsDto); |
| | | //todo 已收费户数 |
| | | double monthReceivedRoomCount = feeStatisticsImpl.getReceivedRoomCount(queryStatisticsDto); |
| | | //int oweRoomCount = feeStatisticsImpl.getOweRoomCount(queryStatisticsDto); |
| | | |
| | | JSONObject data = new JSONObject(); |
| | | data.put("hisOweFee", hisOweFee); |
| | |
| | | data.put("receivedFee", receivedFee); |
| | | data.put("roomCount", roomCount); |
| | | data.put("feeRoomCount", feeRoomCount); |
| | | data.put("oweRoomCount", oweRoomCount); |
| | | data.put("oweRoomCount", feeRoomCount-monthReceivedRoomCount); |
| | | data.put("curReceivableFee", curReceivableFee); |
| | | |
| | | JSONArray datas = new JSONArray(); |