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