Commit 5e7720a1 by fanjiaxin

推客分佣单入库

parent 05173345
Pipeline #75622 passed with stages
in 1 minute 15 seconds
......@@ -76,7 +76,7 @@ public class CommissionOrderServiceImpl implements ICommissionOrderService {
}
Boolean hasMore = listVO.getHas_more();
nextKey = listVO.getNext_key();
if(null == hasMore || !hasMore || StringUtils.isBlank(nextKey)){
if(StringUtils.isBlank(nextKey) || (null != hasMore && !hasMore)){
return;
}
for (WeChatCommissionOrderItemVO itemVO : listVO.getList()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment