|
|
@ -16,7 +16,6 @@ import com.epmet.service.stats.*; |
|
|
|
import com.epmet.util.DimIdGenerator; |
|
|
|
import com.epmet.util.ModuleConstant; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import oracle.sql.NUMBER; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
import org.springframework.beans.BeanUtils; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
@ -63,7 +62,7 @@ public class StatsGroupServiceImpl implements StatsGroupService { |
|
|
|
Integer pageSize = NumConstant.ONE_HUNDRED; |
|
|
|
List<String> customerIds; |
|
|
|
do { |
|
|
|
customerIds = dimCustomerService.selectCustomerIdPage(pageNo,pageSize); |
|
|
|
customerIds = dimCustomerService.selectCustomerIdPage(pageNo++,pageSize); |
|
|
|
DimIdGenerator.DimIdBean dimIdBean = this.getDimIdBean(formDTO); |
|
|
|
if (customerIds.size() != NumConstant.ZERO){ |
|
|
|
customerIds.forEach(customerId -> { |
|
|
|