00c40e4a by xiaojie

【数据资产】

1、加工单加工明细-获取加工单状态和产品名称
1 parent 7a7a0ac5
......@@ -28,4 +28,7 @@ public interface DataProcessBasicFeign {
@PostMapping(value = "/process-order-process-dtl/process-order-list", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
CommonRes<List<ProcessOrderProcessDtlRSVO>> processOrderList(@RequestBody List<String> processOrderGuids);
@PostMapping(value = "/process-order-process-dtl/get-order-state-and-name", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
CommonRes<Map<String, DemandUpdateStateVO>> getOrderStateAndBizName(@RequestBody List<String> bizGuids);
}
......
......@@ -150,7 +150,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService
return null;
}
try{
Map<String, DemandUpdateStateVO> map = dataProcessBasicFeign.getOrderState(guids).getData();
Map<String, DemandUpdateStateVO> map = dataProcessBasicFeign.getOrderStateAndBizName(guids).getData();
return map;
}catch (Exception e){
e.printStackTrace();
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!