Commit 7c4b972fc3429fa3d5cd1302bece98aab77cef65

Authored by litao
1 parent c8c6ee5ae5
Exists in master and in 1 other branch dev

导出

Showing 1 changed file with 3 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java View file @ 7c4b972
... ... @@ -1040,15 +1040,15 @@
1040 1040 Integer type = (Integer) param.get("type");
1041 1041 if(exportType == 1 && type == 1) { /** 孕期发放人数 */
1042 1042 exportPregnancy(userSendInfos, response);
1043   - } else if(exportType == 1 && type == 3) { /** 孕期使用券数 */
  1043 + } else if(exportType == 1 && type == 4) { /** 孕期使用券数 */
1044 1044 exportPregnancyUsedInfo(couponInfos, response);
1045 1045 } else if(exportType == 2 && type == 1) { /** 产后发放统计 */
1046 1046 exportPostpartumSendInfo(userSendInfos, response);
1047   - } else if(exportType == 2 && type == 3) { /** 产后使用 */
  1047 + } else if(exportType == 2 && type == 4) { /** 产后使用 */
1048 1048 exportPostpartumUsedInfo(userSendInfos, response);
1049 1049 } else if(exportType == 3 && type == 1) {/** 儿童发放 */
1050 1050 exportChildSendInfo(userSendInfos, response);
1051   - } else if(exportType == 3 && type == 3) {/** 儿童使用 */
  1051 + } else if(exportType == 3 && type == 4) {/** 儿童使用 */
1052 1052 exportChildUsedInfo(userSendInfos, response);
1053 1053 }
1054 1054