Commit 3c513844 by 阳浪

积分优化

parent 3bf55899
......@@ -99,7 +99,7 @@ public class PointListenerController {
map.put("account_id", vo.getAccountId());
List<PointDetails> selectByMap = pointDetailsService.selectByMap(map);
String eventName = vo.getEventName();
if (vo.getOperatingPoint() == null && vo.getOperatingPoint() == 0) {
if (vo.getOperatingPoint() == null || vo.getOperatingPoint() == 0) {
LOGGER.info("不产生0或空的积分,学员ID{},业务单据{}", vo.getAccountId(), vo.getSourceId());
return false;
}
......
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