Showing
1 changed file
with
10 additions
and
0 deletions
| ... | ... | @@ -360,4 +360,14 @@ public class FlowTaskServiceImpl implements FlowTaskService { |
| 360 | 360 | String id = String.valueOf(i); |
| 361 | 361 | sampleResultTrackingService.updateExamine(id, nodeCode, message); |
| 362 | 362 | } |
| 363 | + | |
| 364 | + @Override | |
| 365 | + public Map<String, Object> findById(String s) { | |
| 366 | + ProductSampleConfirmationSlip slip = productSampleConfirmationSlipService.findById(s); | |
| 367 | + Map<String, Object> map = new HashMap<>(); | |
| 368 | + if (slip != null) { | |
| 369 | + map = JsonUtil.parseMap(JsonUtil.toJsonString(slip), String.class, Object.class); | |
| 370 | + } | |
| 371 | + return map; | |
| 372 | + } | |
| 363 | 373 | } | ... | ... |