【数据资产】
1、加工单加工明细新增、修改参数
Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -541,7 +541,8 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris | ... | @@ -541,7 +541,8 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris |
541 | } | 541 | } |
542 | 542 | ||
543 | // 判断业务数据是否有通过 | 543 | // 判断业务数据是否有通过 |
544 | Optional<MfEnterprise> enterpriseOptional = mfEnterprises.stream().filter(item -> ApprovalStateEnum.PASSED.getValue().equals(item.getBizApproveState())).findFirst(); | 544 | Optional<MfEnterprise> enterpriseOptional = mfEnterprises.stream().filter(item -> |
545 | ApprovalStateEnum.PASSED.getValue().equals(item.getBizApproveState()) || "B".equals(item.getBizApproveState())).findFirst(); | ||
545 | if (enterpriseOptional.isEmpty()) { | 546 | if (enterpriseOptional.isEmpty()) { |
546 | return null; | 547 | return null; |
547 | } | 548 | } | ... | ... |
-
Please register or sign in to post a comment