yujian
2019-01-09 075f6eceec6908178ba53b40b7794e2f90f74c92
fanli/src/main/java/com/yeshi/fanli/service/impl/user/ExtractAuditRecordServiceImpl.java
@@ -162,9 +162,9 @@
      if (startTime.equals(endTime)) {
         Map<String, Object> map = list.get(0);
         Object total = map.get("total");
         Object total = map.get("showValue");
         if (total == null) {
            map.put("total", 0);
            map.put("showValue", 0);
         }
         listObject.add(map);
         return listObject;
@@ -186,7 +186,7 @@
            Object createDate = map.get("showDate");
            String month = createDate.toString();
            if (plusDay.equalsIgnoreCase(month)) {
               total = map.get("total");
               total = map.get("showValue");
               break;
            }
         }
@@ -194,7 +194,7 @@
         if (total == null) {
            total = 0;
         }
         mapObject.put("total", total);
         mapObject.put("showValue", total);
         SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
         SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/MM/dd");
@@ -225,7 +225,7 @@
            Object createDate = map.get("showDate");
            String month = createDate.toString();
            if ((i + "").equalsIgnoreCase(month) || i == Integer.parseInt(month)) {
               total = map.get("total");
               total = map.get("showValue");
               break;
            }
         }
@@ -233,7 +233,7 @@
         if (total == null) {
            total = 0;
         }
         mapObject.put("total", total);
         mapObject.put("showValue", total);
         mapObject.put("showDate", i + "月");
@@ -248,12 +248,12 @@
      for (int i = 0; i < list.size(); i++) {
         Map<String, Object> map = list.get(i);
         Object total = map.get("total");
         Object total = map.get("showValue");
         if (total == null) {
            total = 0;
         }
         map.put("total", total);
         map.put("showValue", total);
         listObject.add(map);
      }