|
@@ -0,0 +1,62 @@
|
|
|
|
|
+package com.java110.report.cmd.dataReport;
|
|
|
|
|
+
|
|
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
|
|
+import com.java110.core.annotation.Java110Cmd;
|
|
|
|
|
+import com.java110.core.context.ICmdDataFlowContext;
|
|
|
|
|
+import com.java110.core.event.cmd.Cmd;
|
|
|
|
|
+import com.java110.core.event.cmd.CmdEvent;
|
|
|
|
|
+import com.java110.dto.report.QueryStatisticsDto;
|
|
|
|
|
+import com.java110.report.statistics.IFeeStatistics;
|
|
|
|
|
+import com.java110.utils.exception.CmdException;
|
|
|
|
|
+import com.java110.utils.util.Assert;
|
|
|
|
|
+import com.java110.utils.util.StringUtil;
|
|
|
|
|
+import com.java110.vo.ResultVo;
|
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
+
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
|
+import java.text.ParseException;
|
|
|
|
|
+import java.util.ArrayList;
|
|
|
|
|
+import java.util.List;
|
|
|
|
|
+import java.util.Map;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 查询收款方式统计
|
|
|
|
|
+ */
|
|
|
|
|
+@Java110Cmd(serviceCode = "dataReport.queryReceivedWayStatistics")
|
|
|
|
|
+public class QueryReceivedWayStatisticsCmd extends Cmd {
|
|
|
|
|
+
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private IFeeStatistics feeStatisticsImpl;
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public void validate(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException, ParseException {
|
|
|
|
|
+ Assert.hasKeyAndValue(reqJson, "communityId", "未包含小区");
|
|
|
|
|
+ String startDate = reqJson.getString("startDate");
|
|
|
|
|
+ String endDate = reqJson.getString("endDate");
|
|
|
|
|
+ if (!StringUtil.isEmpty(startDate) && !startDate.contains(":")) {
|
|
|
|
|
+ startDate += " 00:00:00";
|
|
|
|
|
+ reqJson.put("startDate", startDate);
|
|
|
|
|
+ }
|
|
|
|
|
+ if (!StringUtil.isEmpty(endDate) && !endDate.contains(":")) {
|
|
|
|
|
+ endDate += " 23:59:59";
|
|
|
|
|
+ reqJson.put("endDate", endDate);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public void doCmd(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException, ParseException {
|
|
|
|
|
+ QueryStatisticsDto queryStatisticsDto = new QueryStatisticsDto();
|
|
|
|
|
+ queryStatisticsDto.setCommunityId(reqJson.getString("communityId"));
|
|
|
|
|
+ queryStatisticsDto.setStartDate(reqJson.getString("startDate"));
|
|
|
|
|
+ queryStatisticsDto.setEndDate(reqJson.getString("endDate"));
|
|
|
|
|
+
|
|
|
|
|
+ List<Map> datas = null;
|
|
|
|
|
+ // todo 根据缴费方式统计
|
|
|
|
|
+ datas = feeStatisticsImpl.getReceivedFeeByPrimeRate(queryStatisticsDto);
|
|
|
|
|
+
|
|
|
|
|
+ context.setResponseEntity(ResultVo.createResponseEntity(datas));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+}
|