|
|
@ -286,11 +286,11 @@ public class ActInfoServiceImpl extends BaseServiceImpl<ActInfoDao, ActInfoEntit |
|
|
|
} |
|
|
|
} else if (currentTime.after(actInfoEntity.getSigninStartTime()) && currentTime.before(actInfoEntity.getSigninEndTime())) { |
|
|
|
/*活动打卡时间段内: |
|
|
|
1、当前用户未报名 不显示 |
|
|
|
1、当前用户未报名 不显示:进行中 |
|
|
|
2、当前用户已报名且未打卡 我要打卡 |
|
|
|
3、当前用户已报名且已打卡 更新打卡*/ |
|
|
|
if (null == actUserRelationEntity) { |
|
|
|
|
|
|
|
currentUserStatus = ActUserStatusConstant.ON_GOING; |
|
|
|
} else if (null != actUserRelationEntity |
|
|
|
&& actUserRelationEntity.getStatus().equals("1") |
|
|
|
&& CollUtil.isEmpty(actUserClockLogList)) { |
|
|
|