Commit 3064bb2670e5e8dc217ec6f6262b25796110dae3

Authored by 房远帅
1 parent 9e84c894

试样订单:确认单-审核问题处理

... ... @@ -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 }
... ...