Commit a5ceced0b052906fbb9a816ab01f2a9d57462e49

Authored by 房远帅
1 parent 8868f13a

试样订单-跟踪单-流程变量条件不能为空处理

... ... @@ -142,6 +142,9 @@ public class SampleResultTrackingServiceImpl extends BaseMpServiceImpl<SampleRes
142 142 OpLogUtil.setExtra(vo);
143 143 //开启审核
144 144 SampleResultTracking result = getBaseMapper().findById(vo.getId());
  145 + if (StringUtil.isBlank(result.getSampleResult())) {
  146 + result.setSampleResult("TEST");
  147 + }
145 148 flowInstanceWrapperService.startInstance(BPM_FLAG, result.getId(), BPM_FLAG, result);
146 149 }
147 150
... ...