|
|
@ -118,7 +118,7 @@ public class ScreenExtractServiceImpl implements ScreenExtractService { |
|
|
|
if (!CollectionUtils.isEmpty(customerIds)) { |
|
|
|
customerIds.forEach(customerId -> { |
|
|
|
if (StringUtils.isNotBlank(formDTO.getStartMonth()) && StringUtils.isNotBlank(formDTO.getEndMonth())) { |
|
|
|
List<String> daysBetween = DateUtils.getMonthBetween(formDTO.getStartDate(), formDTO.getEndDate()); |
|
|
|
List<String> daysBetween = DateUtils.getMonthBetween(formDTO.getStartMonth(), formDTO.getEndMonth()); |
|
|
|
daysBetween.forEach(monthId -> { |
|
|
|
extractMonthly(customerId, monthId); |
|
|
|
}); |
|
|
|