Commit 9746098a by 徐高华

Merge branch 'feature/xgh/202506迭代' into 'developer'

Feature/xgh/202506迭代

See merge request !3048
parents 4e3bb4a1 faa714af
...@@ -79,6 +79,9 @@ public class QwMomentPlanAttendServiceImpl implements QwMomentPlanAttendService ...@@ -79,6 +79,9 @@ public class QwMomentPlanAttendServiceImpl implements QwMomentPlanAttendService
// 0已失效 1待完成 2已完成 // 0已失效 1待完成 2已完成
Integer sendStatus = qdto.getSendStatus() ; Integer sendStatus = qdto.getSendStatus() ;
TabQwMomentPlan plan = this.qwMomentPlanMapper.getById(qdto.getPlanId()) ; TabQwMomentPlan plan = this.qwMomentPlanMapper.getById(qdto.getPlanId()) ;
if(null == plan) {
return ServiceResponse.failure("9999","活动不存在") ;
}
boolean isEnd = plan.getStatusFlag()==2 || plan.getEndDate().getTime() <= System.currentTimeMillis() ; boolean isEnd = plan.getStatusFlag()==2 || plan.getEndDate().getTime() <= System.currentTimeMillis() ;
if(null != sendStatus && isEnd && sendStatus==1) { if(null != sendStatus && isEnd && sendStatus==1) {
return ServiceResponse.success(new Page<>()); return ServiceResponse.success(new Page<>());
......
...@@ -320,7 +320,7 @@ public class GroupChatHmController { ...@@ -320,7 +320,7 @@ public class GroupChatHmController {
if(null != storeDTO) { if(null != storeDTO) {
vo.setStoreName(storeDTO.getStoreName()); vo.setStoreName(storeDTO.getStoreName());
vo.setStoreCode(storeDTO.getStoreCode()); vo.setStoreCode(storeDTO.getStoreCode());
if(null != storeDTO.getStatus() && storeDTO.getStatus()!=0) { if(null != storeDTO.getStatus() && storeDTO.getStatus()!=0 && storeDTO.getStatus()!=-3) {
vo.setStoreStatus(1); vo.setStoreStatus(1);
} }
} }
......
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