|
@ -108,8 +108,8 @@ public class ScreenExtractServiceImpl implements ScreenExtractService { |
|
|
} else if (StringUtils.isNotBlank(formDTO.getMonthId())) { |
|
|
} else if (StringUtils.isNotBlank(formDTO.getMonthId())) { |
|
|
extractMonthly(customerId, formDTO.getMonthId()); |
|
|
extractMonthly(customerId, formDTO.getMonthId()); |
|
|
} else { |
|
|
} else { |
|
|
String dateId = LocalDate.now().minusMonths(NumConstant.ONE).toString().replace("-", ""); |
|
|
String monthId = LocalDate.now().minusMonths(NumConstant.ONE).toString().replace("-", "").substring(NumConstant.ZERO,NumConstant.SIX); |
|
|
extractMonthly(customerId, dateId); |
|
|
extractMonthly(customerId, monthId); |
|
|
} |
|
|
} |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|