From 616f9896be815a60b5c4063116b7d138892dcfaf Mon Sep 17 00:00:00 2001
From: admin <15939171744@163.com>
Date: 星期二, 14 五月 2024 14:59:25 +0800
Subject: [PATCH] -

---
 jcdm-main/src/main/java/com/jcdm/main/restful/qingYan/service/ExternalInterface.java |  154 +++++++++++++++++++++++++++++----------------------
 1 files changed, 87 insertions(+), 67 deletions(-)

diff --git a/jcdm-main/src/main/java/com/jcdm/main/restful/qingYan/service/ExternalInterface.java b/jcdm-main/src/main/java/com/jcdm/main/restful/qingYan/service/ExternalInterface.java
index 15f6ba8..a1a0b2c 100644
--- a/jcdm-main/src/main/java/com/jcdm/main/restful/qingYan/service/ExternalInterface.java
+++ b/jcdm-main/src/main/java/com/jcdm/main/restful/qingYan/service/ExternalInterface.java
@@ -7,12 +7,15 @@
 import cn.hutool.json.JSONUtil;
 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 import com.fasterxml.jackson.core.JsonProcessingException;
+import com.fasterxml.jackson.databind.ObjectMapper;
 import com.jcdm.common.core.domain.AjaxResult;
 import com.jcdm.main.constant.Constants;
 import com.jcdm.main.da.paramCollection.domain.DaParamCollection;
 import com.jcdm.main.da.paramCollection.service.IDaParamCollectionService;
 import com.jcdm.main.da.passingStationCollection.domain.DaPassingStationCollection;
 import com.jcdm.main.da.passingStationCollection.service.IDaPassingStationCollectionService;
+import com.jcdm.main.da.testDeviceInterface.domain.DaTestDeviceInterface;
+import com.jcdm.main.da.testDeviceInterface.service.IDaTestDeviceInterfaceService;
 import com.jcdm.main.om.productionOrde.domain.OmProductionOrdeInfo;
 import com.jcdm.main.om.productionOrde.service.IOmProductionOrdeInfoService;
 import com.jcdm.main.restful.qingYan.doman.ChildVO;
@@ -37,6 +40,8 @@
 @RequestMapping("/jcdmMes")
 public class ExternalInterface {
     @Autowired
+    private IDaTestDeviceInterfaceService daTestDeviceInterfaceService;
+    @Autowired
     private IDaParamCollectionService daParamCollectionService;
 
     @Resource
@@ -55,74 +60,89 @@
     {
         //淇濆瓨
         //杩囩珯璁板綍
-        String productNum = parentVO.getProductNum();
-        if (StrUtil.isNotBlank(productNum)){
-            List<OmProductionOrdeInfo> list = productionOrdeInfoService.list(new LambdaQueryWrapper<OmProductionOrdeInfo>().eq(OmProductionOrdeInfo::getProductNum, productNum));
-            if (CollUtil.isNotEmpty(list)){
-                OmProductionOrdeInfo omProductionOrdeInfo = list.get(0);
-                DaPassingStationCollection passingStationCollection = new DaPassingStationCollection();
-                passingStationCollection.setWorkOrderNo(omProductionOrdeInfo.getWorkOrderNo());
-                passingStationCollection.setSfcCode(productNum);
-                passingStationCollection.setProductCode(omProductionOrdeInfo.getProductCode());
-                passingStationCollection.setLocationCode(parentVO.getStationCode());
-                passingStationCollection.setOutRsSign(parentVO.getTotalResult());
-                passingStationCollection.setCreateTime(new Date());
-
-                List<ChildVO> checkList = parentVO.getCheckList();
-                if (CollUtil.isNotEmpty(checkList)){
-                    List<String> collect = checkList.stream()
-                            .filter(x -> Constants.IN_BOUND_TIME_CODE.equals(x.getItemCode()))
-                            .map(ChildVO::getItemValue)
-                            .collect(Collectors.toList());
-                    if (CollUtil.isNotEmpty(collect)){
-                        String s = collect.get(0);
-                        if (StrUtil.isNotBlank(s)){
-                            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
-                            try {
-                                Date parse = simpleDateFormat.parse(s);
-                                passingStationCollection.setInboundTime(parse);
-                            } catch (ParseException e) {
-                                throw new RuntimeException(e);
-                            }
-                        }
-                    }
-                    List<String> collect2 = checkList.stream()
-                            .filter(x -> Constants.OUT_BOUND_TIME_CODE.equals(x.getItemCode()))
-                            .map(ChildVO::getItemValue)
-                            .collect(Collectors.toList());
-                    if (CollUtil.isNotEmpty(collect2)){
-                        String s = collect2.get(0);
-                        if (StrUtil.isNotBlank(s)){
-                            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
-                            try {
-                                Date parse = simpleDateFormat.parse(s);
-                                passingStationCollection.setOutboundTime(parse);
-                            } catch (ParseException e) {
-                                throw new RuntimeException(e);
-                            }
-                        }
-                    }
-                    daPassingStationCollectionService.save(passingStationCollection);
-                    //鍙傛暟淇濆瓨
-                    List<DaParamCollection> paramCollectionList = new ArrayList<>();
-                    for (ChildVO childVO : checkList) {
-                        DaParamCollection daParamCollection = new DaParamCollection();
-                        daParamCollection.setWorkOrderNo(omProductionOrdeInfo.getWorkOrderNo());
-                        daParamCollection.setSfcCode(productNum);
-                        daParamCollection.setProductCode(omProductionOrdeInfo.getProductCode());
-                        daParamCollection.setLocationCode(omProductionOrdeInfo.getStationCode());
-                        daParamCollection.setParamCode(childVO.getItemCode());
-                        daParamCollection.setParamValue(childVO.getItemValue());
-                        daParamCollection.setCollectionTime(new Date());
-                        daParamCollection.setParamName(childVO.getItemText());
-                        paramCollectionList.add(daParamCollection);
-                    }
-                    if (CollUtil.isNotEmpty(paramCollectionList)){
-                        daParamCollectionService.insertBatch(paramCollectionList);
-                    }
-                }
-            }
+//        String productNum = parentVO.getProductNum();
+//        if (StrUtil.isNotBlank(productNum)){
+//            List<OmProductionOrdeInfo> list = productionOrdeInfoService.list(new LambdaQueryWrapper<OmProductionOrdeInfo>().eq(OmProductionOrdeInfo::getProductNum, productNum));
+//            if (CollUtil.isNotEmpty(list)){
+//                OmProductionOrdeInfo omProductionOrdeInfo = list.get(0);
+//                DaPassingStationCollection passingStationCollection = new DaPassingStationCollection();
+//                passingStationCollection.setWorkOrderNo(omProductionOrdeInfo.getWorkOrderNo());
+//                passingStationCollection.setSfcCode(productNum);
+//                passingStationCollection.setProductCode(omProductionOrdeInfo.getProductCode());
+//                passingStationCollection.setLocationCode(parentVO.getStationCode());
+//                passingStationCollection.setOutRsSign(parentVO.getTotalResult());
+//                passingStationCollection.setCreateTime(new Date());
+//
+//                List<ChildVO> checkList = parentVO.getCheckList();
+//                if (CollUtil.isNotEmpty(checkList)){
+//                    List<String> collect = checkList.stream()
+//                            .filter(x -> Constants.IN_BOUND_TIME_CODE.equals(x.getItemCode()))
+//                            .map(ChildVO::getItemValue)
+//                            .collect(Collectors.toList());
+//                    if (CollUtil.isNotEmpty(collect)){
+//                        String s = collect.get(0);
+//                        if (StrUtil.isNotBlank(s)){
+//                            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+//                            try {
+//                                Date parse = simpleDateFormat.parse(s);
+//                                passingStationCollection.setInboundTime(parse);
+//                            } catch (ParseException e) {
+//                                throw new RuntimeException(e);
+//                            }
+//                        }
+//                    }
+//                    List<String> collect2 = checkList.stream()
+//                            .filter(x -> Constants.OUT_BOUND_TIME_CODE.equals(x.getItemCode()))
+//                            .map(ChildVO::getItemValue)
+//                            .collect(Collectors.toList());
+//                    if (CollUtil.isNotEmpty(collect2)){
+//                        String s = collect2.get(0);
+//                        if (StrUtil.isNotBlank(s)){
+//                            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+//                            try {
+//                                Date parse = simpleDateFormat.parse(s);
+//                                passingStationCollection.setOutboundTime(parse);
+//                            } catch (ParseException e) {
+//                                throw new RuntimeException(e);
+//                            }
+//                        }
+//                    }
+//                    daPassingStationCollectionService.save(passingStationCollection);
+//                    //鍙傛暟淇濆瓨
+//                    List<DaParamCollection> paramCollectionList = new ArrayList<>();
+//                    for (ChildVO childVO : checkList) {
+//                        DaParamCollection daParamCollection = new DaParamCollection();
+//                        daParamCollection.setWorkOrderNo(omProductionOrdeInfo.getWorkOrderNo());
+//                        daParamCollection.setSfcCode(productNum);
+//                        daParamCollection.setProductCode(omProductionOrdeInfo.getProductCode());
+//                        daParamCollection.setLocationCode(omProductionOrdeInfo.getStationCode());
+//                        daParamCollection.setParamCode(childVO.getItemCode());
+//                        daParamCollection.setParamValue(childVO.getItemValue());
+//                        daParamCollection.setCollectionTime(new Date());
+//                        daParamCollection.setParamName(childVO.getItemText());
+//                        paramCollectionList.add(daParamCollection);
+//                    }
+//                    if (CollUtil.isNotEmpty(paramCollectionList)){
+//                        daParamCollectionService.insertBatch(paramCollectionList);
+//                    }
+//                }
+//            }
+//        }
+        ObjectMapper mapper = new ObjectMapper();
+        List<ChildVO> li = parentVO.getCheckList();
+        String s = null;
+        try {
+            s = mapper.writeValueAsString(li);
+        } catch (JsonProcessingException e) {
+            throw new RuntimeException(e);
         }
+        DaTestDeviceInterface daTestDeviceInterface = new DaTestDeviceInterface();
+        daTestDeviceInterface.setRecordId(parentVO.getRecordId());
+        daTestDeviceInterface.setStationCode(parentVO.getStationCode());
+        daTestDeviceInterface.setProductNum(parentVO.getProductNum());
+        daTestDeviceInterface.setTotalResult(parentVO.getTotalResult());
+        daTestDeviceInterface.setCheckList(s);
+        daTestDeviceInterfaceService.save(daTestDeviceInterface);
         HttpResponse execute = HttpRequest.post(url).body(JSONUtil.toJsonStr(parentVO)).execute();
         return AjaxResult.success(execute.body());
     }

--
Gitblit v1.9.3