Merge remote-tracking branch 'origin/fix_20230524' into fix_20230524
This commit is contained in:
+1
-1
@@ -3520,7 +3520,7 @@ public class ParamsCollectManifestEOServiceImpl extends ServiceImpl<ParamsCollec
|
|||||||
paramsCollectManifestEO.setParamsManifestId(paramsManifestId);
|
paramsCollectManifestEO.setParamsManifestId(paramsManifestId);
|
||||||
List<ParamsCollectManifestEO> list = paramsCollectManifestEOMapper.listInfo(paramsCollectManifestEO);
|
List<ParamsCollectManifestEO> list = paramsCollectManifestEOMapper.listInfo(paramsCollectManifestEO);
|
||||||
// 过滤出 状态为:待发起收集,且工程接口人处为空的参数项
|
// 过滤出 状态为:待发起收集,且工程接口人处为空的参数项
|
||||||
list = list.stream().filter(e -> CollectManifestStateEnum.WAIT_COLLECT.getValue().equals(e.getState()) && StringUtils.isBlank(e.getSdt())).collect(Collectors.toList());
|
list = list.stream().filter(e -> CollectManifestStateEnum.WAIT_COLLECT.getValue().equals(e.getState())).collect(Collectors.toList());
|
||||||
|
|
||||||
List<ParamsCollectManifestEO> updateCollectManifestEOList = new ArrayList<>();
|
List<ParamsCollectManifestEO> updateCollectManifestEOList = new ArrayList<>();
|
||||||
if (CollectionUtil.isNotEmpty(list)) {
|
if (CollectionUtil.isNotEmpty(list)) {
|
||||||
|
|||||||
+2
-2
@@ -6,9 +6,9 @@ package com.jero.modules.head.enums;
|
|||||||
* @auth zhn
|
* @auth zhn
|
||||||
*/
|
*/
|
||||||
public enum AffirmFlagEnum {
|
public enum AffirmFlagEnum {
|
||||||
DESIGN_FLAG("设计符合性确认","Design Compliance Check","1"),
|
DESIGN_FLAG("设计符合性确认","Design Compliance Confirmation","1"),
|
||||||
AFFIRM_FLAG("Pre-Homo确认","Pre-Homo Confirmation","2"),
|
AFFIRM_FLAG("Pre-Homo确认","Pre-Homo Confirmation","2"),
|
||||||
VERIFY_FLAG("验证符合性确认","Validation Compliance Check","3");
|
VERIFY_FLAG("验证符合性确认","Validation Compliance Confirmation","3");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user