【数据资产】
1、加工单加工明细-获取加工单状态和产品名称
Showing
2 changed files
with
4 additions
and
1 deletions
... | @@ -28,4 +28,7 @@ public interface DataProcessBasicFeign { | ... | @@ -28,4 +28,7 @@ public interface DataProcessBasicFeign { |
28 | @PostMapping(value = "/process-order-process-dtl/process-order-list", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE) | 28 | @PostMapping(value = "/process-order-process-dtl/process-order-list", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE) |
29 | CommonRes<List<ProcessOrderProcessDtlRSVO>> processOrderList(@RequestBody List<String> processOrderGuids); | 29 | CommonRes<List<ProcessOrderProcessDtlRSVO>> processOrderList(@RequestBody List<String> processOrderGuids); |
30 | 30 | ||
31 | @PostMapping(value = "/process-order-process-dtl/get-order-state-and-name", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE) | ||
32 | CommonRes<Map<String, DemandUpdateStateVO>> getOrderStateAndBizName(@RequestBody List<String> bizGuids); | ||
33 | |||
31 | } | 34 | } | ... | ... |
... | @@ -150,7 +150,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService | ... | @@ -150,7 +150,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService |
150 | return null; | 150 | return null; |
151 | } | 151 | } |
152 | try{ | 152 | try{ |
153 | Map<String, DemandUpdateStateVO> map = dataProcessBasicFeign.getOrderState(guids).getData(); | 153 | Map<String, DemandUpdateStateVO> map = dataProcessBasicFeign.getOrderStateAndBizName(guids).getData(); |
154 | return map; | 154 | return map; |
155 | }catch (Exception e){ | 155 | }catch (Exception e){ |
156 | e.printStackTrace(); | 156 | e.printStackTrace(); | ... | ... |
-
Please register or sign in to post a comment