|
|
|
@@ -170,11 +170,11 @@ public class CouponSendSchedule { |
|
|
|
return count; |
|
|
|
}).reduce(Integer::sum).get(); |
|
|
|
|
|
|
|
|
|
|
|
int remainSend = (int) (sendCount - sentCount); |
|
|
|
logger.info("定时发券:给[" + cu.getNickName() + |
|
|
|
"]总共已发送券" + sentCount + "张,还需发" + (sendCount - sentCount) + "张"); |
|
|
|
"]总共已发送券" + sentCount + "张,还需发" + remainSend + "张"); |
|
|
|
|
|
|
|
for (int count = 0; count < sendCount - sentCount; count++) { |
|
|
|
for (int count = 0; count < remainSend; count++) { |
|
|
|
boolean sent = false; |
|
|
|
for (int couponIndex = 0; couponIndex < couponSendList.size(); couponIndex++) { |
|
|
|
WxCouponSendVo cs = couponSendList.get(couponIndex); |
|
|
|
|