Merge remote-tracking branch 'origin/master-jdk17' into master-jdk17
commit
95936e4a0b
|
@ -262,7 +262,9 @@ public class BpmModelServiceImpl implements BpmModelService {
|
|||
}
|
||||
|
||||
private Model getModelByKey(String key) {
|
||||
return repositoryService.createModelQuery().modelKey(key).singleResult();
|
||||
return repositoryService.createModelQuery()
|
||||
.modelTenantId(FlowableUtils.getTenantId())
|
||||
.modelKey(key).singleResult();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -79,7 +79,9 @@ public class BpmProcessDefinitionServiceImpl implements BpmProcessDefinitionServ
|
|||
|
||||
@Override
|
||||
public ProcessDefinition getActiveProcessDefinition(String key) {
|
||||
return repositoryService.createProcessDefinitionQuery().processDefinitionKey(key).active().singleResult();
|
||||
return repositoryService.createProcessDefinitionQuery()
|
||||
.processDefinitionTenantId(FlowableUtils.getTenantId())
|
||||
.processDefinitionKey(key).active().singleResult();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -172,6 +174,7 @@ public class BpmProcessDefinitionServiceImpl implements BpmProcessDefinitionServ
|
|||
@Override
|
||||
public PageResult<ProcessDefinition> getProcessDefinitionPage(BpmProcessDefinitionPageReqVO pageVO) {
|
||||
ProcessDefinitionQuery query = repositoryService.createProcessDefinitionQuery();
|
||||
query.processDefinitionTenantId(FlowableUtils.getTenantId());
|
||||
if (StrUtil.isNotBlank(pageVO.getKey())) {
|
||||
query.processDefinitionKey(pageVO.getKey());
|
||||
}
|
||||
|
|
|
@ -30,7 +30,8 @@ public interface ProductSpuMapper extends BaseMapperX<ProductSpuDO> {
|
|||
.likeIfPresent(ProductSpuDO::getName, reqVO.getName())
|
||||
.eqIfPresent(ProductSpuDO::getCategoryId, reqVO.getCategoryId())
|
||||
.betweenIfPresent(ProductSpuDO::getCreateTime, reqVO.getCreateTime())
|
||||
.orderByDesc(ProductSpuDO::getSort);
|
||||
.orderByDesc(ProductSpuDO::getSort)
|
||||
.orderByDesc(ProductSpuDO::getId);
|
||||
appendTabQuery(tabType, queryWrapper);
|
||||
return selectPage(reqVO, queryWrapper);
|
||||
}
|
||||
|
|
|
@ -290,7 +290,7 @@ public class BrokerageUserServiceImpl implements BrokerageUserService {
|
|||
*/
|
||||
private boolean isNewRegisterUser(Long userId) {
|
||||
MemberUserRespDTO user = memberUserApi.getUser(userId).getCheckedData();
|
||||
return user != null && LocalDateTimeUtils.beforeNow(user.getCreateTime().plusSeconds(30));
|
||||
return user != null && LocalDateTimeUtils.afterNow(user.getCreateTime().plusSeconds(30));
|
||||
}
|
||||
|
||||
private void validateCanBindUser(BrokerageUserDO user, Long bindUserId) {
|
||||
|
|
Loading…
Reference in New Issue