Browse Source

Merge branch 'refs/heads/dev' into warn_rule_20240828

# Conflicts:
#	hz-pm-api/src/main/resources/application-dev.yml
#	hz-pm-api/src/main/resources/application-prod.yml
#	hz-pm-api/src/test/resources/application-dev.yml
tags/24090101
CMM 2 weeks ago
parent
commit
7f817e4534
36 changed files with 409 additions and 129 deletions
  1. +12
    -0
      hz-pm-api/pom.xml
  2. +1
    -3
      hz-pm-api/src/main/java/com/hz/pm/api/common/config/BeanConfig.java
  3. +11
    -13
      hz-pm-api/src/main/java/com/hz/pm/api/common/handler/CpuLoadTask.java
  4. +28
    -2
      hz-pm-api/src/main/java/com/hz/pm/api/common/helper/impl/UserInfoHelperImpl.java
  5. +16
    -0
      hz-pm-api/src/main/java/com/hz/pm/api/common/model/constant/MhUnitConst.java
  6. +8
    -4
      hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/builder/impl/ProjectStateMachineBuilderImpl.java
  7. +9
    -3
      hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/builder/impl/TenderStateMachineBuilderImpl.java
  8. +0
    -1
      hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/builder/impl/XcfhxStateMachineBuilderImpl.java
  9. +46
    -13
      hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/factory/ProjectGuardFactory.java
  10. +20
    -2
      hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/factory/TenderGuardFactory.java
  11. +21
    -7
      hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/AbstractStateMachineUtil.java
  12. +10
    -9
      hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/AdaptStateMachineUtil.java
  13. +21
    -18
      hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/ProjectStateMachineUtil.java
  14. +9
    -6
      hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/SelfTestStateMachineUtil.java
  15. +10
    -6
      hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/TenderStateMachineUtil.java
  16. +1
    -3
      hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/TestValidStateMachineUtil.java
  17. +10
    -7
      hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/XcfhxStateMachineUtil.java
  18. +0
    -2
      hz-pm-api/src/main/java/com/hz/pm/api/common/util/ThreadPoolUtil.java
  19. +9
    -6
      hz-pm-api/src/main/java/com/hz/pm/api/meeting/task/ExpertInviteExecutorConfig.java
  20. +3
    -1
      hz-pm-api/src/main/java/com/hz/pm/api/meeting/task/MsgCallReplyRewriteTask.java
  21. +6
    -0
      hz-pm-api/src/main/java/com/hz/pm/api/meeting/task/RandomInviteProperties.java
  22. +2
    -2
      hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/controller/PurchaseController.java
  23. +14
    -4
      hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/manage/PurchaseManage.java
  24. +1
    -1
      hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/model/req/SubmitPurchaseNoticeReq.java
  25. +15
    -0
      hz-pm-api/src/main/java/com/hz/pm/api/projectlib/mapper/ProjectMapper.xml
  26. +4
    -0
      hz-pm-api/src/main/java/com/hz/pm/api/user/convert/UserInfoConvertor.java
  27. +5
    -5
      hz-pm-api/src/main/java/com/hz/pm/api/user/manage/UserInfoManage.java
  28. +15
    -0
      hz-pm-api/src/main/java/com/hz/pm/api/user/model/vo/ResUserDetailVO.java
  29. +21
    -0
      hz-pm-api/src/main/java/com/hz/pm/api/user/security/model/UserFullInfoDTO.java
  30. +22
    -0
      hz-pm-api/src/main/java/com/hz/pm/api/user/security/model/UserInfoDetails.java
  31. +1
    -1
      hz-pm-api/src/main/java/com/hz/pm/api/workbench/manage/WorkbenchManage.java
  32. +4
    -2
      hz-pm-api/src/main/resources/application-dev.yml
  33. +4
    -2
      hz-pm-api/src/main/resources/application-prod.yml
  34. +46
    -0
      hz-pm-api/src/test/java/com/hz/pm/api/common/StateMachineTest.java
  35. +3
    -5
      hz-pm-api/src/test/resources/application-dev.yml
  36. +1
    -1
      pom.xml

+ 12
- 0
hz-pm-api/pom.xml View File

@@ -12,6 +12,18 @@

<dependencies>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>1.37</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>1.37</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.0.0-jre</version>


+ 1
- 3
hz-pm-api/src/main/java/com/hz/pm/api/common/config/BeanConfig.java View File

@@ -17,14 +17,12 @@ import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.converter.StringHttpMessageConverter;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
import org.springframework.web.client.RestTemplate;

import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;

/**
@@ -55,7 +53,7 @@ public class BeanConfig {
converterList.remove(converterTarget);
}
HttpMessageConverter<?> converter = new StringHttpMessageConverter(StandardCharsets.UTF_8);
converterList.add(1,converter);
converterList.add(1, converter);

MappingJackson2HttpMessageConverter mappingJackson2HttpMessageConverter = new MappingJackson2HttpMessageConverter();
mappingJackson2HttpMessageConverter.setSupportedMediaTypes(Arrays.asList(


+ 11
- 13
hz-pm-api/src/main/java/com/hz/pm/api/common/handler/CpuLoadTask.java View File

@@ -4,8 +4,8 @@ import cn.hutool.core.date.StopWatch;
import cn.hutool.core.util.RandomUtil;
import cn.hutool.system.oshi.OshiUtil;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;
import org.springframework.lang.NonNull;
import org.springframework.scheduling.annotation.Scheduled;

@@ -25,16 +25,21 @@ import java.util.stream.Stream;
* @since 20:30 2024/3/5
*/
@Slf4j
@Profile("prod")
@Configuration
@ConditionalOnExpression("${cpu-load-task.open:false}")
public class CpuLoadTask {

private static final int LIMIT_COUNT = 2000000000;
private final AtomicInteger taskNo = new AtomicInteger(0);
public CpuLoadTask() {
CpuLoadThreadFactory threadFactory = new CpuLoadThreadFactory(Thread.MIN_PRIORITY);
fixedThreadPool = Executors.newFixedThreadPool(1, threadFactory);
}

private final ExecutorService fixedThreadPool;

private static final Integer CPU_LIMIT = 20;
private static final int LIMIT_COUNT = 1000000000;
private final AtomicInteger taskNo = new AtomicInteger(0);

private static final ExecutorService FIXED_THREAD_POOL;

private static class CpuLoadThreadFactory implements ThreadFactory {

@@ -53,13 +58,6 @@ public class CpuLoadTask {

}

static {
int logicalProcessorCount = OshiUtil.getProcessor().getLogicalProcessorCount();
int max = Math.max(logicalProcessorCount * CPU_LIMIT / 100, 1);
CpuLoadThreadFactory threadFactory = new CpuLoadThreadFactory(Thread.MIN_PRIORITY);
FIXED_THREAD_POOL = Executors.newFixedThreadPool(max, threadFactory);
}


@Scheduled(fixedRate = 1, timeUnit = TimeUnit.MINUTES)
public void run() {
@@ -67,7 +65,7 @@ public class CpuLoadTask {
log.info("当前CPU使用率:{}", cpuUsage);
if (cpuUsage < CPU_LIMIT) {
log.info("提交计算任务:{}", taskNo.incrementAndGet());
FIXED_THREAD_POOL.execute(() -> {
fixedThreadPool.execute(() -> {
StopWatch watch = new StopWatch();
watch.start();
long sum = Stream.generate(() -> RandomUtil.randomLong(1, LIMIT_COUNT))


+ 28
- 2
hz-pm-api/src/main/java/com/hz/pm/api/common/helper/impl/UserInfoHelperImpl.java View File

@@ -6,11 +6,14 @@ import com.baomidou.mybatisplus.core.toolkit.StringUtils;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.hz.pm.api.common.helper.UserInfoHelper;
import com.hz.pm.api.common.model.constant.BizConst;
import com.hz.pm.api.common.model.constant.MhUnitConst;
import com.hz.pm.api.common.util.StrUtils;
import com.hz.pm.api.sys.mapper.RoleMapper;
import com.hz.pm.api.sys.model.entity.Role;
import com.hz.pm.api.sys.model.entity.UserRole;
import com.hz.pm.api.sys.service.IUserRoleService;
import com.hz.pm.api.user.helper.MhUnitCache;
import com.hz.pm.api.user.model.dto.UnitDTO;
import com.hz.pm.api.user.model.entity.UserInfo;
import com.hz.pm.api.user.model.enumeration.RoleEnum;
import com.hz.pm.api.user.model.enumeration.UserAvailableEnum;
@@ -38,6 +41,7 @@ public class UserInfoHelperImpl implements UserInfoHelper {
private final IUserInfoService userInfoService;
private final IUserRoleService iUserRoleService;
private final RoleMapper roleMapper;
private final MhUnitCache mhUnitCache;

@Override
public UserFullInfoDTO getUserFullInfoByMhUserIdOrOpenId(String mhUserId) {
@@ -73,6 +77,28 @@ public class UserInfoHelperImpl implements UserInfoHelper {
.collect(Collectors.toList());
userFullInfo.setUserRoleList(roleMapper.selectBatchIds(roleIdList));
}
UnitDTO unit = mhUnitCache.getById(userInfo.getMhUnitId());
if (unit != null && unit.getType() != null) {
userFullInfo.setUnitStrip(unit.getType().getStrip().getCode());
// 是否市属国有企业下用户
List<Long> citySoeUnitIds = mhUnitCache.getViewChildIdsRecursion(MhUnitConst.CITY_SOE_UNIT_ID);
userFullInfo.setIsCitySoeUser(citySoeUnitIds.contains(userInfo.getMhUnitId()));
if (!userFullInfo.getIsCitySoeUser()) {
// 是否关键行业部门下用户
List<Long> keyIndustryUnitIds = mhUnitCache.getViewChildIdsRecursion(MhUnitConst.KEY_INDUSTRY_UNIT_ID);
userFullInfo.setIsKeyIndustryUser(keyIndustryUnitIds.contains(userInfo.getMhUnitId()));
if (!userFullInfo.getIsKeyIndustryUser()) {
// 是否区县部门下用户
List<Long> countyUnitIds = mhUnitCache.getViewChildIdsRecursion(MhUnitConst.COUNTY_PARENT_UNIT_ID);
userFullInfo.setIsCountyUser(countyUnitIds.contains(userInfo.getMhUnitId()));
if (!userFullInfo.getIsCountyUser()) {
// 是否市本级用户
List<Long> cityDistrictUnitIds = mhUnitCache.getViewChildIdsRecursion(MhUnitConst.CITY_DISTRICT_UNIT_ID);
userFullInfo.setIsCityDistrictUser(cityDistrictUnitIds.contains(userInfo.getMhUnitId()));
}
}
}
}

// 装配返回
userFullInfo.setUserId(userInfo.getId());
@@ -105,7 +131,7 @@ public class UserInfoHelperImpl implements UserInfoHelper {
return userInfos.stream().map(this::convert).collect(Collectors.toList());
}

private UserFullInfoDTO convert(UserInfo userInfo){
private UserFullInfoDTO convert(UserInfo userInfo) {
UserFullInfoDTO userFullInfo = new UserFullInfoDTO();
// 装配返回
userFullInfo.setMhUnitName(userInfo.getMhUnitName());
@@ -164,7 +190,7 @@ public class UserInfoHelperImpl implements UserInfoHelper {
.exists("select 1 from nd_user_role nur where nur.user_id = nd_user_info.id" +
" and nur.role_id = {0}", role.getId());
List<UserInfo> userInfos = userInfoService.list(query);
return CollUtils.convert(userInfos,this::convert);
return CollUtils.convert(userInfos, this::convert);
}

@Override


+ 16
- 0
hz-pm-api/src/main/java/com/hz/pm/api/common/model/constant/MhUnitConst.java View File

@@ -16,6 +16,22 @@ public class MhUnitConst {
private MhUnitConst() {
}

/**
* 重点行业
*/
public static final long KEY_INDUSTRY_UNIT_ID = 6788;

/**
* 市级部门
*/
public static final long CITY_DISTRICT_UNIT_ID = 970;
/**
* 市属国有企业
*/
public static final long CITY_SOE_UNIT_ID = 3269;
/**
* 区县部门
*/
public static final long COUNTY_PARENT_UNIT_ID = 1084;

public static final long ROOT_UNIT_ID = 1;


+ 8
- 4
hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/builder/impl/ProjectStateMachineBuilderImpl.java View File

@@ -3,7 +3,7 @@ package com.hz.pm.api.common.statemachine.builder.impl;
import com.hz.pm.api.common.statemachine.builder.BaseStateMachineBuilder;
import com.hz.pm.api.common.statemachine.event.ProjectStateChangeEvent;
import com.hz.pm.api.common.statemachine.factory.ProjectGuardFactory;
import com.hz.pm.api.common.statemachine.factory.ProjectGuardFactory.ProjectPurchaseToFirstAcceptGuard;
import com.hz.pm.api.common.statemachine.factory.ProjectGuardFactory.ProjectPurchaseToAcceptGuard;
import com.hz.pm.api.projectlib.model.entity.Project;
import com.hz.pm.api.projectlib.model.enumeration.status.ProjectStatus;
import lombok.RequiredArgsConstructor;
@@ -32,13 +32,15 @@ import java.util.EnumSet;
*/
@Slf4j
@Component
@EnableStateMachine(name = ProjectStateMachineBuilderImpl.MACHINE_ID)
@RequiredArgsConstructor
@EnableStateMachine(name = ProjectStateMachineBuilderImpl.MACHINE_ID)
public class ProjectStateMachineBuilderImpl implements BaseStateMachineBuilder<Project, ProjectStateChangeEvent, ProjectStatus> {

public static final String MACHINE_ID = "projectDeclareStateMachine";

private final BeanFactory beanFactory;
private final ProjectPurchaseToAcceptGuard projectPurchaseToAcceptGuard;
private final ProjectGuardFactory.ProjectPurchaseToAdaptGuard projectPurchaseToAdaptGuard;

@Override
public StateMachine<ProjectStatus, ProjectStateChangeEvent> build() throws StateMachineException {
@@ -149,13 +151,15 @@ public class ProjectStateMachineBuilderImpl implements BaseStateMachineBuilder<P
.withExternal()
.source(ProjectStatus.ON_PURCHASING)
.target(ProjectStatus.ON_ADAPTING)
.event(ProjectStateChangeEvent.SUBMIT_PURCHASE_CONTRACT_RECORD).and()
.event(ProjectStateChangeEvent.SUBMIT_PURCHASE_CONTRACT_RECORD)
.guard(projectPurchaseToAdaptGuard)
.and()
// 填写试试计划 -> 待初验
.withExternal()
.source(ProjectStatus.ON_PURCHASING)
.target(ProjectStatus.TO_BE_FIRST_INSPECTED)
.event(ProjectStateChangeEvent.SUBMIT_PURCHASE_CONTRACT_RECORD)
.guard(new ProjectPurchaseToFirstAcceptGuard())
.guard(projectPurchaseToAcceptGuard)
.and()
// 填写试试计划 -> 待初验
.withExternal()


+ 9
- 3
hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/builder/impl/TenderStateMachineBuilderImpl.java View File

@@ -3,7 +3,7 @@ package com.hz.pm.api.common.statemachine.builder.impl;
import cn.hutool.core.collection.ListUtil;
import com.hz.pm.api.common.statemachine.builder.BaseStateMachineBuilder;
import com.hz.pm.api.common.statemachine.event.TenderStateChangeEvent;
import com.hz.pm.api.common.statemachine.factory.TenderGuardFactory;
import com.hz.pm.api.common.statemachine.factory.TenderGuardFactory.PurchaseContractRecordToAcceptGuard;
import com.hz.pm.api.projectdeclared.model.entity.Purchase;
import com.hz.pm.api.projectlib.model.enumeration.status.ITenderStatus;
import com.hz.pm.api.projectlib.model.enumeration.status.TenderAdaptStatus;
@@ -26,6 +26,8 @@ import org.springframework.stereotype.Component;
import java.util.HashSet;
import java.util.List;

import static com.hz.pm.api.common.statemachine.factory.TenderGuardFactory.PurchaseContractRecordToOperationGuard;

/**
* <p>
* 标段状态机
@@ -36,13 +38,16 @@ import java.util.List;
*/
@Slf4j
@Component
@EnableStateMachine(name = TenderStateMachineBuilderImpl.MACHINE_ID)
@RequiredArgsConstructor
@EnableStateMachine(name = TenderStateMachineBuilderImpl.MACHINE_ID)
public class TenderStateMachineBuilderImpl implements BaseStateMachineBuilder<Purchase, TenderStateChangeEvent, ITenderStatus> {

public static final String MACHINE_ID = "tenderStateMachine";

private final BeanFactory beanFactory;
private final PurchaseContractRecordToAcceptGuard purchaseContractRecordToAcceptGuard;
private final PurchaseContractRecordToOperationGuard purchaseContractRecordToOperationGuard;


@Override
public StateMachine<ITenderStatus, TenderStateChangeEvent> build() throws StateMachineException {
@@ -81,12 +86,13 @@ public class TenderStateMachineBuilderImpl implements BaseStateMachineBuilder<Pu
.source(TenderMainStatus.TO_BE_SUBMIT_PURCHASE_CONSTRUCTION_INFO)
.target(TenderMainStatus.TO_BE_SUBMIT_OPERATION_PLAN)
.event(TenderStateChangeEvent.SUBMIT_PURCHASE_CONSTRUCTION_INFO)
.guard(purchaseContractRecordToOperationGuard)
.and()
.withExternal()
.source(TenderMainStatus.TO_BE_SUBMIT_PURCHASE_CONSTRUCTION_INFO)
.target(TenderMainStatus.TO_BE_SUBMIT_FIRST_INSPECTED_INFO)
.event(TenderStateChangeEvent.SUBMIT_PURCHASE_CONSTRUCTION_INFO)
.guard(new TenderGuardFactory.PurchaseContractRecordGuard())
.guard(purchaseContractRecordToAcceptGuard)
.and()
// 填写实施计划
.withExternal()


+ 0
- 1
hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/builder/impl/XcfhxStateMachineBuilderImpl.java View File

@@ -4,7 +4,6 @@ import com.hz.pm.api.common.statemachine.builder.BaseStateMachineBuilder;
import com.hz.pm.api.common.statemachine.event.XcfhxStateChangeEvent;
import com.hz.pm.api.projectdeclared.model.entity.Purchase;
import com.hz.pm.api.projectlib.model.enumeration.status.TenderXcfhxApplyStatus;
import com.ningdatech.basic.exception.BizException;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.BeanFactory;


+ 46
- 13
hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/factory/ProjectGuardFactory.java View File

@@ -2,7 +2,6 @@ package com.hz.pm.api.common.statemachine.factory;

import cn.hutool.core.collection.CollUtil;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.hz.pm.api.common.statemachine.action.ProjectStateChangeAction;
import com.hz.pm.api.common.statemachine.event.ProjectStateChangeEvent;
@@ -11,8 +10,9 @@ import com.hz.pm.api.projectdeclared.model.enumerization.BidTypeEnum;
import com.hz.pm.api.projectdeclared.service.IPurchaseService;
import com.hz.pm.api.projectlib.model.entity.Project;
import com.hz.pm.api.projectlib.model.enumeration.status.ProjectStatus;
import com.hz.pm.api.projectlib.model.enumeration.status.TenderMainStatus;
import com.ningdatech.basic.util.SpringUtils;
import lombok.AllArgsConstructor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.statemachine.StateContext;
import org.springframework.statemachine.guard.Guard;

@@ -26,25 +26,58 @@ import java.util.List;
* @author WendyYang
* @since 11:28 2024/8/22
*/
@Configuration
public class ProjectGuardFactory {

private ProjectGuardFactory() {
private final IPurchaseService purchaseService;

public ProjectGuardFactory(IPurchaseService purchaseService) {
this.purchaseService = purchaseService;
}

@AllArgsConstructor
public static class ProjectPurchaseToAcceptGuard implements Guard<ProjectStatus, ProjectStateChangeEvent> {

private IPurchaseService purchaseService;

@Override
public boolean evaluate(StateContext<ProjectStatus, ProjectStateChangeEvent> ctx) {
return !canTurnToAdapt(ctx, purchaseService);
}

}

public static class ProjectPurchaseToFirstAcceptGuard implements Guard<ProjectStatus, ProjectStateChangeEvent> {
@AllArgsConstructor
public static class ProjectPurchaseToAdaptGuard implements Guard<ProjectStatus, ProjectStateChangeEvent> {

private final IPurchaseService purchaseService = SpringUtils.getBean(IPurchaseService.class);
private IPurchaseService purchaseService;

@Override
public boolean evaluate(StateContext<ProjectStatus, ProjectStateChangeEvent> stateContext) {
Project project = ProjectStateChangeAction.getProject(stateContext.getMessage());
Wrapper<Purchase> query = Wrappers.lambdaQuery(Purchase.class)
.select(Purchase::getId, Purchase::getBidType)
.eq(Purchase::getProjectId, project.getId());
List<Purchase> purchases = purchaseService.list(query);
return CollUtil.allMatch(purchases, w -> !BidTypeEnum.BUILD_APP.eq(w.getBidType()));
public boolean evaluate(StateContext<ProjectStatus, ProjectStateChangeEvent> ctx) {
return canTurnToAdapt(ctx, purchaseService);
}
}


private static boolean canTurnToAdapt(StateContext<ProjectStatus, ProjectStateChangeEvent> ctx,
IPurchaseService purchaseService) {
Project project = ProjectStateChangeAction.getProject(ctx.getMessage());
Wrapper<Purchase> query = Wrappers.lambdaQuery(Purchase.class)
.select(Purchase::getId, Purchase::getBidType)
.eq(Purchase::getProjectId, project.getId());
List<Purchase> purchases = purchaseService.list(query);
return CollUtil.anyMatch(purchases, w -> BidTypeEnum.BUILD_APP.eq(w.getBidType()));
}


@Bean
public ProjectPurchaseToAcceptGuard projectPurchaseToAcceptGuard() {
return new ProjectPurchaseToAcceptGuard(purchaseService);
}

@Bean
public ProjectPurchaseToAdaptGuard projectPurchaseToAdaptGuard() {
return new ProjectPurchaseToAdaptGuard(purchaseService);
}

}

+ 20
- 2
hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/factory/TenderGuardFactory.java View File

@@ -5,6 +5,8 @@ import com.hz.pm.api.common.statemachine.event.TenderStateChangeEvent;
import com.hz.pm.api.projectdeclared.model.entity.Purchase;
import com.hz.pm.api.projectdeclared.model.enumerization.BidTypeEnum;
import com.hz.pm.api.projectlib.model.enumeration.status.ITenderStatus;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.statemachine.StateContext;
import org.springframework.statemachine.guard.Guard;

@@ -16,12 +18,28 @@ import org.springframework.statemachine.guard.Guard;
* @author WendyYang
* @since 17:51 2024/8/20
*/
@Configuration
public class TenderGuardFactory {

private TenderGuardFactory() {
@Bean
public PurchaseContractRecordToOperationGuard purchaseContractRecordToOperationGuard() {
return new PurchaseContractRecordToOperationGuard();
}

public static class PurchaseContractRecordGuard implements Guard<ITenderStatus, TenderStateChangeEvent> {
@Bean
public PurchaseContractRecordToAcceptGuard purchaseContractRecordToAcceptGuard() {
return new PurchaseContractRecordToAcceptGuard();
}

public static class PurchaseContractRecordToOperationGuard implements Guard<ITenderStatus, TenderStateChangeEvent> {
@Override
public boolean evaluate(StateContext<ITenderStatus, TenderStateChangeEvent> context) {
Purchase purchase = TenderStateChangeActionUtil.getPurchaseInfo(context.getMessage());
return BidTypeEnum.BUILD_APP.eq(purchase.getBidType());
}
}

public static class PurchaseContractRecordToAcceptGuard implements Guard<ITenderStatus, TenderStateChangeEvent> {
@Override
public boolean evaluate(StateContext<ITenderStatus, TenderStateChangeEvent> context) {
Purchase purchase = TenderStateChangeActionUtil.getPurchaseInfo(context.getMessage());


+ 21
- 7
hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/AbstractStateMachineUtil.java View File

@@ -1,9 +1,10 @@
package com.hz.pm.api.common.statemachine.util;

import cn.hutool.log.Log;
import cn.hutool.log.LogFactory;
import com.hz.pm.api.common.statemachine.event.AbstractStateChangeEvent;
import com.ningdatech.basic.exception.BizException;
import com.wflow.exception.BusinessException;
import org.slf4j.LoggerFactory;

import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
@@ -19,6 +20,8 @@ import java.util.function.Function;
*/
public interface AbstractStateMachineUtil<O, E extends Enum<E> & AbstractStateChangeEvent> {

Log LOG = LogFactory.get(AbstractStateMachineUtil.class);

/**
* 获取状态变更事件类型
*
@@ -29,12 +32,19 @@ public interface AbstractStateMachineUtil<O, E extends Enum<E> & AbstractStateCh
return (Class<E>) ((ParameterizedType) type).getActualTypeArguments()[1];
}

default AbstractStateMachineUtil<O, E> getLockClass() {
LOG.info("acquire state machine lock:{}", this.getClass().getSimpleName());
return this;
}

//通过审核
default void pass(O obj) {
try {
execute(obj, AbstractStateChangeEvent.getPassEvent(eventClass(), statusFunction().apply(obj)));
synchronized (getLockClass()) {
execute(obj, AbstractStateChangeEvent.getPassEvent(eventClass(), statusFunction().apply(obj)));
}
} catch (Exception e) {
LoggerFactory.getLogger(this.getClass()).info("状态机 通过失败", e);
LOG.error("状态机通过失败", e);
throw BizException.wrap("状态机通过失败");
}
}
@@ -43,9 +53,11 @@ public interface AbstractStateMachineUtil<O, E extends Enum<E> & AbstractStateCh
//拒绝
default void reject(O obj) {
try {
execute(obj, AbstractStateChangeEvent.getRejectEvent(eventClass(), statusFunction().apply(obj)));
synchronized (getLockClass()) {
execute(obj, AbstractStateChangeEvent.getRejectEvent(eventClass(), statusFunction().apply(obj)));
}
} catch (Exception e) {
LoggerFactory.getLogger(this.getClass()).info("状态机 拒绝失败 :{}", e.getMessage());
LOG.error("状态机拒绝失败", e);
throw new BusinessException("状态机拒绝失败");
}
}
@@ -53,9 +65,11 @@ public interface AbstractStateMachineUtil<O, E extends Enum<E> & AbstractStateCh
//撤回
default void withDraw(O obj) {
try {
execute(obj, AbstractStateChangeEvent.getWithdrawEvent(eventClass(), statusFunction().apply(obj)));
synchronized (getLockClass()) {
execute(obj, AbstractStateChangeEvent.getWithdrawEvent(eventClass(), statusFunction().apply(obj)));
}
} catch (Exception e) {
LoggerFactory.getLogger(this.getClass()).info("状态机 撤回失败 :{}", e.getMessage());
LOG.error("状态机撤回失败", e);
throw new BusinessException("状态机撤回失败");
}
}


+ 10
- 9
hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/AdaptStateMachineUtil.java View File

@@ -5,10 +5,8 @@ import com.hz.pm.api.common.statemachine.event.AdaptStateChangeEvent;
import com.hz.pm.api.projectdeclared.model.entity.Purchase;
import com.hz.pm.api.projectdeclared.utils.ProjectIdCodeCacheUtil;
import com.hz.pm.api.projectlib.entity.PurchaseStatusChange;
import com.hz.pm.api.projectlib.model.enumeration.status.ITenderStatus;
import com.hz.pm.api.projectlib.model.enumeration.status.TenderAdaptStatus;
import com.hz.pm.api.projectlib.service.IPurchaseStatusChangeService;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.messaging.Message;
import org.springframework.messaging.support.MessageBuilder;
@@ -29,16 +27,23 @@ import java.util.function.Function;
*/
@Slf4j
@Component
@RequiredArgsConstructor
public class AdaptStateMachineUtil implements AbstractStateMachineUtil<Purchase, AdaptStateChangeEvent> {

public static final String PURCHASE = "purchaseInfo";

//==================================================================================================================

private final AdaptStateMachineBuilderImpl adaptStateMachineBuilder;
private final StateMachinePersister<TenderAdaptStatus, AdaptStateChangeEvent, Purchase> stateMachinePersister;
private final StateMachine<TenderAdaptStatus, AdaptStateChangeEvent> stateMachine;
private final IPurchaseStatusChangeService purchaseStatusChangeService;

public AdaptStateMachineUtil(AdaptStateMachineBuilderImpl adaptStateMachineBuilder,
IPurchaseStatusChangeService purchaseStatusChangeService) {
this.purchaseStatusChangeService = purchaseStatusChangeService;
this.stateMachine = adaptStateMachineBuilder.build();
this.stateMachinePersister = adaptStateMachineBuilder.stateMachinePersister();
}

@Override
public Function<Purchase, Integer> statusFunction() {
return Purchase::getAdaptStatus;
@@ -46,8 +51,6 @@ public class AdaptStateMachineUtil implements AbstractStateMachineUtil<Purchase,

@Override
public void execute(Purchase purchase, AdaptStateChangeEvent event) throws Exception {
log.info("调用状态机前的标段状态为:{}", purchase.getStatus());
// 获取TO状态机
PurchaseStatusChange change = new PurchaseStatusChange();
change.setBeforeStatus(purchase.getAdaptStatus());
change.setEvent(event.name());
@@ -55,17 +58,15 @@ public class AdaptStateMachineUtil implements AbstractStateMachineUtil<Purchase,
change.setProjectId(purchase.getProjectId());
change.setProjectCode(ProjectIdCodeCacheUtil.get(purchase.getProjectId()));
change.setCreateOn(LocalDateTime.now());
StateMachine<TenderAdaptStatus, AdaptStateChangeEvent> stateMachine = adaptStateMachineBuilder.build();
Message<AdaptStateChangeEvent> message = MessageBuilder.withPayload(event)
.setHeader(PURCHASE, purchase)
.build();
//初始化状态机
StateMachinePersister<TenderAdaptStatus, AdaptStateChangeEvent, Purchase> stateMachinePersister = adaptStateMachineBuilder.stateMachinePersister();
stateMachinePersister.restore(stateMachine, purchase);
stateMachine.sendEvent(message);
change.setAfterStatus(purchase.getAdaptStatus());
purchaseStatusChangeService.save(change);
log.info("调用状态机后的标段状态为:{}", purchase.getAdaptStatus());
log.info("调用状态机后的标段状态为:{} ==> {}", change.getBeforeStatus(), change.getAfterStatus());
}

}

+ 21
- 18
hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/ProjectStateMachineUtil.java View File

@@ -27,7 +27,6 @@ import java.util.function.Function;
*/
@Slf4j
@Component
@RequiredArgsConstructor
public class ProjectStateMachineUtil implements AbstractStateMachineUtil<Project, ProjectStateChangeEvent> {

private static final String PROJECT_DECLARE = StateMachineConst.PROJECT_DECLARE;
@@ -36,12 +35,20 @@ public class ProjectStateMachineUtil implements AbstractStateMachineUtil<Project

//==================================================================================================================

private final ProjectStateMachineBuilderImpl projectStateMachineBuilder;
private final StateMachinePersister<ProjectStatus, ProjectStateChangeEvent, Project> stateMachinePersister;
private final StateMachine<ProjectStatus, ProjectStateChangeEvent> stateMachine;
private final IProjectStatusChangeService projectStatusChangeService;

private final IProjectApplicationService projectApplicationService;

public ProjectStateMachineUtil(ProjectStateMachineBuilderImpl projectStateMachineBuilder,
IProjectStatusChangeService projectStatusChangeService,
IProjectApplicationService projectApplicationService) {
this.projectStatusChangeService = projectStatusChangeService;
this.projectApplicationService = projectApplicationService;
this.stateMachinePersister = projectStateMachineBuilder.stateMachinePersister();
this.stateMachine = projectStateMachineBuilder.build();
}

@Override
public Function<Project, Integer> statusFunction() {
return Project::getStatus;
@@ -49,29 +56,25 @@ public class ProjectStateMachineUtil implements AbstractStateMachineUtil<Project

@Override
public void execute(Project project, ProjectStateChangeEvent event) throws Exception {
log.info("调用状态机前的项目状态为:{}", project.getStatus());
// 将状态变更记录保存到项目状态变更表中
ProjectStatusChange projectStatusChange = new ProjectStatusChange();
projectStatusChange.setBeforeStatus(project.getStatus());

ProjectStatusChange change = new ProjectStatusChange();
change.setBeforeStatus(project.getStatus());
// 获取TO状态机
StateMachine<ProjectStatus, ProjectStateChangeEvent> stateMachine = projectStateMachineBuilder.build();
Message<ProjectStateChangeEvent> message = MessageBuilder.withPayload(event)
.setHeader(PROJECT_DECLARE, project)
.setHeader(APPLICATION_DECLARE, projectApplicationService.getApplicationsByProject(project))
.build();
//初始化状态机
StateMachinePersister<ProjectStatus, ProjectStateChangeEvent, Project> projectDeclareStateMachinePersister = projectStateMachineBuilder.stateMachinePersister();
projectDeclareStateMachinePersister.restore(stateMachine, project);
stateMachinePersister.restore(stateMachine, project);
stateMachine.sendEvent(message);
projectStatusChange.setProjectId(project.getId());
projectStatusChange.setAfterStatus(project.getStatus());
projectStatusChange.setEvent(event.name());
projectStatusChange.setCreateOn(LocalDateTime.now());
projectStatusChange.setProjectCode(project.getProjectCode());
change.setProjectId(project.getId());
change.setAfterStatus(project.getStatus());
change.setEvent(event.name());
change.setCreateOn(LocalDateTime.now());
change.setProjectCode(project.getProjectCode());
// 插入项目状态变更表中
projectStatusChangeService.save(projectStatusChange);
log.info("调用状态机后的项目状态为:{}", project.getStatus());
projectStatusChangeService.save(change);
log.info("调用状态机后的标段状态为:{} ==> {}", change.getBeforeStatus(), change.getAfterStatus());
}

}

+ 9
- 6
hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/SelfTestStateMachineUtil.java View File

@@ -28,15 +28,21 @@ import java.util.function.Function;
*/
@Slf4j
@Component
@RequiredArgsConstructor
public class SelfTestStateMachineUtil implements AbstractStateMachineUtil<Purchase, SelfTestStateChangeEvent> {

public static final String PURCHASE = "purchaseInfo";

//==================================================================================================================

private final SelfTestStateMachineBuilderImpl selfTestStateMachineBuilder;
private final IPurchaseStatusChangeService purchaseStatusChangeService;
private final StateMachinePersister<TenderSelfTestStatus, SelfTestStateChangeEvent, Purchase> stateMachinePersister;
private final StateMachine<TenderSelfTestStatus, SelfTestStateChangeEvent> stateMachine;

public SelfTestStateMachineUtil(SelfTestStateMachineBuilderImpl selfTestStateMachineBuilder, IPurchaseStatusChangeService purchaseStatusChangeService) {
this.purchaseStatusChangeService = purchaseStatusChangeService;
this.stateMachinePersister = selfTestStateMachineBuilder.stateMachinePersister();
this.stateMachine = selfTestStateMachineBuilder.build();
}

@Override
public Function<Purchase, Integer> statusFunction() {
@@ -45,7 +51,6 @@ public class SelfTestStateMachineUtil implements AbstractStateMachineUtil<Purcha

@Override
public void execute(Purchase purchase, SelfTestStateChangeEvent event) throws Exception {
log.info("调用状态机前的标段状态为:{}", purchase.getSelfTestStatus());
// 获取TO状态机
PurchaseStatusChange change = new PurchaseStatusChange();
change.setBeforeStatus(purchase.getSelfTestStatus());
@@ -54,17 +59,15 @@ public class SelfTestStateMachineUtil implements AbstractStateMachineUtil<Purcha
change.setProjectId(purchase.getProjectId());
change.setProjectCode(ProjectIdCodeCacheUtil.get(purchase.getProjectId()));
change.setCreateOn(LocalDateTime.now());
StateMachine<TenderSelfTestStatus, SelfTestStateChangeEvent> stateMachine = selfTestStateMachineBuilder.build();
Message<SelfTestStateChangeEvent> message = MessageBuilder.withPayload(event)
.setHeader(PURCHASE, purchase)
.build();
//初始化状态机
StateMachinePersister<TenderSelfTestStatus, SelfTestStateChangeEvent, Purchase> stateMachinePersister = selfTestStateMachineBuilder.stateMachinePersister();
stateMachinePersister.restore(stateMachine, purchase);
stateMachine.sendEvent(message);
change.setAfterStatus(purchase.getSelfTestStatus());
purchaseStatusChangeService.save(change);
log.info("调用状态机后的标段状态为:{}", purchase.getSelfTestStatus());
log.info("调用状态机后的标段状态为:{} ==> {}", change.getBeforeStatus(), change.getAfterStatus());
}

}

+ 10
- 6
hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/TenderStateMachineUtil.java View File

@@ -7,6 +7,7 @@ import com.hz.pm.api.projectdeclared.utils.ProjectIdCodeCacheUtil;
import com.hz.pm.api.projectlib.entity.PurchaseStatusChange;
import com.hz.pm.api.projectlib.model.enumeration.status.ITenderStatus;
import com.hz.pm.api.projectlib.service.IPurchaseStatusChangeService;
import com.ningdatech.basic.exception.BizException;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.messaging.Message;
@@ -28,15 +29,21 @@ import java.util.function.Function;
*/
@Slf4j
@Component
@RequiredArgsConstructor
public class TenderStateMachineUtil implements AbstractStateMachineUtil<Purchase, TenderStateChangeEvent> {

public static final String PURCHASE = "purchaseInfo";

//==================================================================================================================

private final TenderStateMachineBuilderImpl tenderStateMachineBuilder;
private final IPurchaseStatusChangeService purchaseStatusChangeService;
private final StateMachinePersister<ITenderStatus, TenderStateChangeEvent, Purchase> stateMachinePersister;
private final StateMachine<ITenderStatus, TenderStateChangeEvent> stateMachine;

public TenderStateMachineUtil(IPurchaseStatusChangeService purchaseStatusChangeService, TenderStateMachineBuilderImpl tenderStateMachineBuilder) {
this.purchaseStatusChangeService = purchaseStatusChangeService;
this.stateMachinePersister = tenderStateMachineBuilder.stateMachinePersister();
this.stateMachine = tenderStateMachineBuilder.build();
}

@Override
public Function<Purchase, Integer> statusFunction() {
@@ -45,7 +52,6 @@ public class TenderStateMachineUtil implements AbstractStateMachineUtil<Purchase

@Override
public void execute(Purchase purchase, TenderStateChangeEvent event) throws Exception {
log.info("调用状态机前的标段状态为:{}", purchase.getStatus());
// 获取TO状态机
PurchaseStatusChange change = new PurchaseStatusChange();
change.setBeforeStatus(purchase.getStatus());
@@ -54,17 +60,15 @@ public class TenderStateMachineUtil implements AbstractStateMachineUtil<Purchase
change.setProjectId(purchase.getProjectId());
change.setProjectCode(ProjectIdCodeCacheUtil.get(purchase.getProjectId()));
change.setCreateOn(LocalDateTime.now());
StateMachine<ITenderStatus, TenderStateChangeEvent> stateMachine = tenderStateMachineBuilder.build();
Message<TenderStateChangeEvent> message = MessageBuilder.withPayload(event)
.setHeader(PURCHASE, purchase)
.build();
//初始化状态机
StateMachinePersister<ITenderStatus, TenderStateChangeEvent, Purchase> stateMachinePersister = tenderStateMachineBuilder.stateMachinePersister();
stateMachinePersister.restore(stateMachine, purchase);
stateMachine.sendEvent(message);
change.setAfterStatus(purchase.getStatus());
purchaseStatusChangeService.save(change);
log.info("调用状态机后的标段状态为:{}", purchase.getStatus());
log.info("调用状态机后的标段状态为:{} ==> {}", change.getBeforeStatus(), change.getAfterStatus());
}

}

+ 1
- 3
hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/TestValidStateMachineUtil.java View File

@@ -45,8 +45,6 @@ public class TestValidStateMachineUtil implements AbstractStateMachineUtil<Purch

@Override
public void execute(Purchase purchase, TestValidStateChangeEvent event) throws Exception {
log.info("调用状态机前的标段状态为:{}", purchase.getStatus());
// 获取TO状态机
PurchaseStatusChange change = new PurchaseStatusChange();
change.setBeforeStatus(purchase.getTestValidStatus());
change.setEvent(event.name());
@@ -64,7 +62,7 @@ public class TestValidStateMachineUtil implements AbstractStateMachineUtil<Purch
stateMachine.sendEvent(message);
change.setAfterStatus(purchase.getTestValidStatus());
purchaseStatusChangeService.save(change);
log.info("调用状态机后的标段状态为:{}", purchase.getStatus());
log.info("调用状态机后的标段状态为:{} ==> {}", change.getBeforeStatus(), change.getAfterStatus());
}

}

+ 10
- 7
hz-pm-api/src/main/java/com/hz/pm/api/common/statemachine/util/XcfhxStateMachineUtil.java View File

@@ -28,15 +28,22 @@ import java.util.function.Function;
*/
@Slf4j
@Component
@RequiredArgsConstructor
public class XcfhxStateMachineUtil implements AbstractStateMachineUtil<Purchase, XcfhxStateChangeEvent> {

public static final String PURCHASE = "purchaseInfo";

//==================================================================================================================

private final XcfhxStateMachineBuilderImpl xcfhxStateMachineBuilder;
private final IPurchaseStatusChangeService purchaseStatusChangeService;
private final StateMachinePersister<TenderXcfhxApplyStatus, XcfhxStateChangeEvent, Purchase> stateMachinePersister;
private final StateMachine<TenderXcfhxApplyStatus, XcfhxStateChangeEvent> stateMachine;

public XcfhxStateMachineUtil(XcfhxStateMachineBuilderImpl xcfhxStateMachineBuilder,
IPurchaseStatusChangeService purchaseStatusChangeService) {
this.purchaseStatusChangeService = purchaseStatusChangeService;
this.stateMachine = xcfhxStateMachineBuilder.build();
this.stateMachinePersister = xcfhxStateMachineBuilder.stateMachinePersister();
}

@Override
public Function<Purchase, Integer> statusFunction() {
@@ -45,8 +52,6 @@ public class XcfhxStateMachineUtil implements AbstractStateMachineUtil<Purchase,

@Override
public void execute(Purchase purchase, XcfhxStateChangeEvent event) throws Exception {
log.info("调用状态机前的标段状态为:{}", purchase.getXcfhxApplyStatus());
// 获取TO状态机
PurchaseStatusChange change = new PurchaseStatusChange();
change.setBeforeStatus(purchase.getXcfhxApplyStatus());
change.setEvent(event.name());
@@ -54,17 +59,15 @@ public class XcfhxStateMachineUtil implements AbstractStateMachineUtil<Purchase,
change.setProjectId(purchase.getProjectId());
change.setProjectCode(ProjectIdCodeCacheUtil.get(purchase.getProjectId()));
change.setCreateOn(LocalDateTime.now());
StateMachine<TenderXcfhxApplyStatus, XcfhxStateChangeEvent> stateMachine = xcfhxStateMachineBuilder.build();
Message<XcfhxStateChangeEvent> message = MessageBuilder.withPayload(event)
.setHeader(PURCHASE, purchase)
.build();
//初始化状态机
StateMachinePersister<TenderXcfhxApplyStatus, XcfhxStateChangeEvent, Purchase> stateMachinePersister = xcfhxStateMachineBuilder.stateMachinePersister();
stateMachinePersister.restore(stateMachine, purchase);
stateMachine.sendEvent(message);
change.setAfterStatus(purchase.getXcfhxApplyStatus());
purchaseStatusChangeService.save(change);
log.info("调用状态机后的标段状态为:{}", purchase.getXcfhxApplyStatus());
log.info("调用状态机后的标段状态为:{} ==> {}", change.getBeforeStatus(), change.getAfterStatus());
}

}

+ 0
- 2
hz-pm-api/src/main/java/com/hz/pm/api/common/util/ThreadPoolUtil.java View File

@@ -28,7 +28,6 @@ public class ThreadPoolUtil {

static {
ThreadPoolUtilProperties properties = SpringUtil.getBean(ThreadPoolUtilProperties.class);
log.info("ThreadPoolUtilProperties:{}", properties);
ThreadPoolProperties requestProps = properties.getRequest();
REQUEST = new MDCThreadPoolTaskExecutor();
REQUEST.setCorePoolSize(requestProps.getCorePoolSize());
@@ -47,7 +46,6 @@ public class ThreadPoolUtil {
SCHEDULER.setPoolSize(schedulerProps.getCorePoolSize());
SCHEDULER.setThreadPriority(Thread.NORM_PRIORITY - 1);
SCHEDULER.setWaitForTasksToCompleteOnShutdown(schedulerProps.getWaitForTasksToCompleteOnShutdown());
SCHEDULER.setThreadNamePrefix("scheduler-");
SCHEDULER.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
SCHEDULER.initialize();
}


+ 9
- 6
hz-pm-api/src/main/java/com/hz/pm/api/meeting/task/ExpertInviteExecutorConfig.java View File

@@ -1,5 +1,7 @@
package com.hz.pm.api.meeting.task;

import com.hz.pm.api.common.config.ThreadPoolUtilProperties.ThreadPoolProperties;
import com.hz.pm.api.common.util.MDCThreadPoolTaskScheduler;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
@@ -16,13 +18,14 @@ import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
public class ExpertInviteExecutorConfig {

@Bean(name = "expertInviteScheduler")
public ThreadPoolTaskScheduler threadPoolTaskScheduler() {
ThreadPoolTaskScheduler scheduler = new ThreadPoolTaskScheduler();
scheduler.setPoolSize(3);
public ThreadPoolTaskScheduler threadPoolTaskScheduler(RandomInviteProperties properties) {
ThreadPoolProperties threadPoolProperties = properties.getThreadPoolProperties();
MDCThreadPoolTaskScheduler scheduler = new MDCThreadPoolTaskScheduler();
scheduler.setPoolSize(threadPoolProperties.getCorePoolSize());
scheduler.setThreadGroupName("expert-invite");
scheduler.setThreadNamePrefix("invite-executor-");
scheduler.setAwaitTerminationSeconds(60);
scheduler.setWaitForTasksToCompleteOnShutdown(true);
scheduler.setThreadNamePrefix(threadPoolProperties.getThreadNamePrefix());
scheduler.setAwaitTerminationSeconds(120);
scheduler.setWaitForTasksToCompleteOnShutdown(threadPoolProperties.getWaitForTasksToCompleteOnShutdown());
return scheduler;
}



+ 3
- 1
hz-pm-api/src/main/java/com/hz/pm/api/meeting/task/MsgCallReplyRewriteTask.java View File

@@ -48,13 +48,15 @@ public class MsgCallReplyRewriteTask {
static {
// 初始化线程池
EXECUTOR = new MDCThreadPoolTaskExecutor();
EXECUTOR.setBeanName("msgCallReplyRewriteExecutor");
EXECUTOR.setCorePoolSize(2);
EXECUTOR.setMaxPoolSize(4);
EXECUTOR.setQueueCapacity(100);
EXECUTOR.setKeepAliveSeconds(120);
EXECUTOR.setThreadPriority(Thread.NORM_PRIORITY);
EXECUTOR.setThreadPriority(Thread.NORM_PRIORITY - 1);
EXECUTOR.setWaitForTasksToCompleteOnShutdown(true);
EXECUTOR.setThreadNamePrefix("callRewriteExecutor-");
EXECUTOR.setAllowCoreThreadTimeOut(true);
EXECUTOR.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
}



+ 6
- 0
hz-pm-api/src/main/java/com/hz/pm/api/meeting/task/RandomInviteProperties.java View File

@@ -1,7 +1,10 @@
package com.hz.pm.api.meeting.task;

import com.hz.pm.api.common.config.ThreadPoolUtilProperties;
import com.hz.pm.api.common.config.ThreadPoolUtilProperties.ThreadPoolProperties;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.NestedConfigurationProperty;
import org.springframework.stereotype.Component;

/**
@@ -56,4 +59,7 @@ public class RandomInviteProperties {

private Integer inviteEndHour = 20;

@NestedConfigurationProperty
private ThreadPoolProperties threadPoolProperties;

}

+ 2
- 2
hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/controller/PurchaseController.java View File

@@ -88,8 +88,8 @@ public class PurchaseController {

@GetMapping("/adaptionProgressStatistics")
@ApiOperation("获取采购进度统计")
public AdaptionProgressStatVO adaptionProgressStatistics() {
return purchaseManage.adaptionProgressStatistics();
public AdaptionProgressStatVO adaptionProgressStatistics(PurchaseAdaptionListReq req) {
return purchaseManage.adaptionProgressStatistics(req);
}

@GetMapping("/pageAdaption")


+ 14
- 4
hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/manage/PurchaseManage.java View File

@@ -152,7 +152,7 @@ public class PurchaseManage {
w -> CollUtil.anyMatch(w, x -> TenderMainStatus.TO_BE_SUBMIT_PURCHASE_CONSTRUCTION_INFO.eq(x.getStatus()))));
stat.setToBePurchaseCount(CollUtil.count(projectPurchaseMap.values(), Collection::isEmpty));
stat.setPurchaseFinishedCount(CollUtil.count(projectPurchaseMap.values(),
w -> CollUtil.anyMatch(w, x -> !TenderMainStatus.TO_BE_SUBMIT_PURCHASE_CONSTRUCTION_INFO.eq(x.getStatus()))));
w -> !w.isEmpty() && CollUtil.allMatch(w, x -> !TenderMainStatus.TO_BE_SUBMIT_PURCHASE_CONSTRUCTION_INFO.eq(x.getStatus()))));
stat.setTotalCount(projects.size());
return stat;
}
@@ -180,8 +180,8 @@ public class PurchaseManage {
query.exists(ExistsSqlConst.PROJECT_EXISTS_PURCHASE +
" and np.status = {0} ", req.getTabStatus());
} else if (TenderMainStatus.PURCHASE_FINISHED.eq(req.getTabStatus())) {
query.exists(ExistsSqlConst.PROJECT_EXISTS_PURCHASE_STATUS_CHANGE +
" and npsc.event = {0} ", TenderStateChangeEvent.SUBMIT_PURCHASE_CONSTRUCTION_INFO);
query.exists(ExistsSqlConst.PROJECT_EXISTS_STATUS_CHANGE +
" and npsc.event = {0} ", ProjectStateChangeEvent.SUBMIT_PURCHASE_CONTRACT_RECORD);
} else if (ProjectStatus.TO_BE_PURCHASED.eq(req.getTabStatus())) {
query.eq(Project::getStatus, ProjectStatus.TO_BE_PURCHASED.getCode());
} else {
@@ -540,7 +540,7 @@ public class PurchaseManage {
projectService.updateById(project);
}

public AdaptionProgressStatVO adaptionProgressStatistics() {
public AdaptionProgressStatVO adaptionProgressStatistics(PurchaseAdaptionListReq req) {
LambdaQueryWrapper<Purchase> query = Wrappers.lambdaQuery(Purchase.class)
.select(Purchase::getStatus, Purchase::getId)
.eq(Purchase::getBidType, BidTypeEnum.BUILD_APP.getCode())
@@ -554,6 +554,16 @@ public class PurchaseManage {
if (!purchaseService.buildPurchaseQueryPermission(query, user)) {
return null;
}
if (req.hasProjectQuery()) {
List<Long> projectIds = filterProjectIdsForPurchase(req);
if (projectIds.isEmpty()) {
return null;
}
query.in(Purchase::getProjectId, projectIds);
}
query.like(StrUtil.isNotBlank(req.getBidName()), Purchase::getBidName, req.getBidName())
.le(req.getCreateOnMax() != null, Purchase::getCreateOn, req.getCreateOnMax())
.ge(req.getCreateOnMin() != null, Purchase::getCreateOn, req.getCreateOnMin());
List<Purchase> purchases = purchaseService.list(query);
return adaptionProgressStatistics(purchases);
}


+ 1
- 1
hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/model/req/SubmitPurchaseNoticeReq.java View File

@@ -69,7 +69,7 @@ public class SubmitPurchaseNoticeReq {
private String purchaseMethod;

@ApiModelProperty("是否发布信创云图")
public Boolean publishMhNotice;
private Boolean publishMhNotice;

@ApiModelProperty("采购范围:1 公开采购、2 非公开采购")
private Integer purchaseScope;


+ 15
- 0
hz-pm-api/src/main/java/com/hz/pm/api/projectlib/mapper/ProjectMapper.xml View File

@@ -359,6 +359,21 @@
<if test="req.status != null">
and p.status = #{req.status}
</if>
<if test="req.stage != null">
and p.stage = #{req.stage}
</if>
<if test="req.statusList != null and req.statusList.size > 0">
and p.status in
<foreach collection="req.statusList" open="(" close=")" separator="," item="statusItem">
#{statusItem}
</foreach>
</if>
<if test="req.stageList != null and req.stageList.size > 0">
and p.stage in
<foreach collection="req.stageList" open="(" close=")" separator="," item="stageItem">
#{stageItem}
</foreach>
</if>
<if test="req.projectYear != null">
and p.project_year = #{req.projectYear}
</if>


+ 4
- 0
hz-pm-api/src/main/java/com/hz/pm/api/user/convert/UserInfoConvertor.java View File

@@ -29,6 +29,10 @@ public class UserInfoConvertor {
userInfoDetails.setMhUnitName(userFullInfo.getMhUnitName());
userInfoDetails.setMobile(userFullInfo.getMobile());
userInfoDetails.setMhUserId(userFullInfo.getMhUserId());
userInfoDetails.setIsCountyUser(userFullInfo.getIsCountyUser());
userInfoDetails.setIsCitySoeUser(userFullInfo.getIsCitySoeUser());
userInfoDetails.setIsCityDistrictUser(userFullInfo.getIsCityDistrictUser());
userInfoDetails.setIsKeyIndustryUser(userFullInfo.getIsKeyIndustryUser());
return userInfoDetails;
}



+ 5
- 5
hz-pm-api/src/main/java/com/hz/pm/api/user/manage/UserInfoManage.java View File

@@ -280,10 +280,7 @@ public class UserInfoManage {
resUserDetail.setStatus(userInfo.getAvailable());
resUserDetail.setEmployeeCode(userInfo.getEmployeeCode());
resUserDetail.setMhUnitId(userInfo.getMhUnitId());
UnitDTO unit = mhUnitCache.getById(userInfo.getMhUnitId());
if (unit != null && unit.getType() != null) {
resUserDetail.setUnitStrip(unit.getType().getStrip().getCode());
}
resUserDetail.setUnitStrip(userDetail.getUnitStrip());
resUserDetail.setMhUnitName(userInfo.getMhUnitName());

// 装配用户角色信息列表
@@ -300,7 +297,10 @@ public class UserInfoManage {
}).collect(Collectors.toList());
resUserDetail.setUserRoleInfoList(userRoles);
}
resUserDetail.setIsCountyUser(userDetail.isCountyUser());
resUserDetail.setIsCountyUser(userDetail.getIsCountyUser());
resUserDetail.setIsCityDistrictUser(userDetail.getIsCityDistrictUser());
resUserDetail.setIsCityDistrictUser(userDetail.getIsCitySoeUser());
resUserDetail.setIsKeyIndustryUser(userDetail.getIsKeyIndustryUser());
return resUserDetail;
}



+ 15
- 0
hz-pm-api/src/main/java/com/hz/pm/api/user/model/vo/ResUserDetailVO.java View File

@@ -54,4 +54,19 @@ public class ResUserDetailVO {
@ApiModelProperty("是否是区县用户")
private Boolean isCountyUser;

/**
* 是否是市属国有企业用户
*/
private Boolean isCitySoeUser;

/**
* 是否是市级单位用户
*/
private Boolean isCityDistrictUser;

/**
* 是否是重点行业用户
*/
private Boolean isKeyIndustryUser;

}

+ 21
- 0
hz-pm-api/src/main/java/com/hz/pm/api/user/security/model/UserFullInfoDTO.java View File

@@ -51,6 +51,27 @@ public class UserFullInfoDTO {
*/
private UserAvailableEnum available;

/**
* 是否是区县用户
*/
private Boolean isCountyUser;

/**
* 是否是市属国有企业
*/
private Boolean isCitySoeUser;

/**
* 是否是市级单位
*/
private Boolean isCityDistrictUser;

/**
* 是否是重点行业
*/
private Boolean isKeyIndustryUser;

private Integer unitStrip;

/**
* 取最高的权限


+ 22
- 0
hz-pm-api/src/main/java/com/hz/pm/api/user/security/model/UserInfoDetails.java View File

@@ -57,6 +57,28 @@ public class UserInfoDetails extends AbstractLoginUser implements UserDetails {

private String mobile;

/**
* 是否是区县用户
*/
private Boolean isCountyUser;

/**
* 是否是市属国有企业
*/
private Boolean isCitySoeUser;

/**
* 是否是市级单位
*/
private Boolean isCityDistrictUser;

/**
* 是否是重点行业
*/
private Boolean isKeyIndustryUser;

private Integer unitStrip;

public String getUserIdStr() {
return String.valueOf(getUserId());
}


+ 1
- 1
hz-pm-api/src/main/java/com/hz/pm/api/workbench/manage/WorkbenchManage.java View File

@@ -424,7 +424,7 @@ public class WorkbenchManage {
currStat.setTargetCount(systemReplaceCount.getValue());
List<String> projectCodes = CollUtils.convert(projectIds, ProjectIdCodeCacheUtil::get);
currStat.setStoppedCount(stoppedProjectCount(projectStatusChangeMap, projectCodes));
if (!purchases.isEmpty()) {
if (!projectIds.isEmpty()) {
Wrapper<PurchaseStatusChange> pQuery = Wrappers.lambdaQuery(PurchaseStatusChange.class)
.select(PurchaseStatusChange::getEvent, PurchaseStatusChange::getProjectId)
.in(PurchaseStatusChange::getProjectId, projectIds)


+ 4
- 2
hz-pm-api/src/main/resources/application-dev.yml View File

@@ -225,5 +225,7 @@ thread-pool-util:
scheduler:
core-pool-size: 2
thread-name-prefix: scheduler-executor-
early-warning-without-submit:
open: true
random-invite:
thread-pool-properties:
core-pool-size: 2
thread-name-prefix: expert-invite-executor-

+ 4
- 2
hz-pm-api/src/main/resources/application-prod.yml View File

@@ -248,5 +248,7 @@ wflow-thread-pool-util:
queue-capacity: 300
keep-alive-seconds: 120
max-pool-size: 8
early-warning-without-submit:
open: true
random-invite:
thread-pool-properties:
core-pool-size: 3
thread-name-prefix: expert-invite-executor-

+ 46
- 0
hz-pm-api/src/test/java/com/hz/pm/api/common/StateMachineTest.java View File

@@ -0,0 +1,46 @@
package com.hz.pm.api.common;

import com.hz.pm.api.AppTests;
import com.hz.pm.api.common.statemachine.util.TenderStateMachineUtil;
import com.hz.pm.api.common.statemachine.util.XcfhxStateMachineUtil;
import com.hz.pm.api.common.util.ThreadPoolUtil;
import com.hz.pm.api.projectdeclared.model.entity.Purchase;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;

import java.util.concurrent.CountDownLatch;

/**
* <p>
* StateMachineTest
* </p>
*
* @author WendyYang
* @since 19:43 2024/8/29
*/
public class StateMachineTest extends AppTests {

@Autowired
private TenderStateMachineUtil tenderStateMachineUtil;
@Autowired
private XcfhxStateMachineUtil xcfhxStateMachineUtil;

@Test
public void test() {
CountDownLatch count = new CountDownLatch(1000);
for (int j = 0; j < 100; j++) {
ThreadPoolUtil.REQUEST.execute(() -> {
Purchase purchase = new Purchase();
purchase.setProjectId(3496L);
for (int i = 0; i < 5; i++) {
purchase.setBidType(i % 2 == 0 ? 2 : 1);
purchase.setStatus(101);
purchase.setXcfhxApplyStatus(301);
xcfhxStateMachineUtil.pass(purchase);
}
count.countDown();
});
}
}

}

+ 3
- 5
hz-pm-api/src/test/resources/application-dev.yml View File

@@ -217,13 +217,11 @@ mh-system-replace-sync:

thread-pool-util:
request:
core-pool-size: 2
max-pool-size: 4
core-pool-size: 5
max-pool-size: 10
queue-capacity: 100
keep-alive-seconds: 120
thread-name-prefix: request-executor-
scheduler:
core-pool-size: 2
thread-name-prefix: scheduler-executor-
early-warning-without-submit:
open: true
thread-name-prefix: scheduler-executor-

+ 1
- 1
pom.xml View File

@@ -103,7 +103,7 @@
<dependency>
<groupId>org.springframework.statemachine</groupId>
<artifactId>spring-statemachine-core</artifactId>
<version>2.0.1.RELEASE</version>
<version>2.2.0.RELEASE</version>
</dependency>
<dependency>
<groupId>com.github.oshi</groupId>


Loading…
Cancel
Save