From 7b72d43503aa5df4c152b777777085d3cd5e2132 Mon Sep 17 00:00:00 2001
From: skyouc <creaycat@gmail.com>
Date: 星期六, 06 十二月 2025 15:49:25 +0800
Subject: [PATCH] Merge branch 'jsxswms' of http://47.97.1.152:5880/r/zy-asrs into jsxswms

---
 src/main/java/com/zy/asrs/service/impl/MobileServiceImpl.java |  506 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 492 insertions(+), 14 deletions(-)

diff --git a/src/main/java/com/zy/asrs/service/impl/MobileServiceImpl.java b/src/main/java/com/zy/asrs/service/impl/MobileServiceImpl.java
index c02566b..e26145d 100644
--- a/src/main/java/com/zy/asrs/service/impl/MobileServiceImpl.java
+++ b/src/main/java/com/zy/asrs/service/impl/MobileServiceImpl.java
@@ -8,16 +8,25 @@
 import com.core.exception.CoolException;
 import com.zy.asrs.entity.*;
 import com.zy.asrs.entity.param.*;
+import com.zy.asrs.entity.result.ForwardAGVTaskDTO;
+import com.zy.asrs.entity.result.HIKApiDTO;
+import com.zy.asrs.entity.result.HIKResultDTO;
+import com.zy.asrs.enums.*;
+import com.zy.asrs.enums.OrderSettle;
+import com.zy.asrs.enums.LocAreaType;
 import com.zy.asrs.enums.LocStsType;
 import com.zy.asrs.mapper.LocMastMapper;
 import com.zy.asrs.mapper.ManLocDetlMapper;
 import com.zy.asrs.service.*;
 import com.zy.asrs.utils.MatUtils;
 import com.zy.asrs.utils.OrderInAndOutUtil;
+import com.zy.common.constant.HIKApiConstant;
 import com.zy.common.constant.MesConstant;
 import com.zy.common.entity.Parameter;
 import com.zy.common.model.DetlDto;
+import com.zy.common.model.LocDetlDto;
 import com.zy.common.model.MesCombParam;
+import com.zy.common.model.enums.IoWorkType;
 import com.zy.common.model.enums.WorkNoType;
 import com.zy.common.service.CommonService;
 import com.zy.common.utils.HttpHandler;
@@ -28,6 +37,8 @@
 import org.springframework.transaction.annotation.Transactional;
 
 import javax.annotation.Resource;
+import java.math.BigDecimal;
+import java.math.RoundingMode;
 import java.util.*;
 import java.util.stream.Collectors;
 
@@ -107,6 +118,14 @@
 
     @Autowired
     private TaskDetlService taskDetlService;
+    @Autowired
+    private BasStationService basStationService;
+    @Autowired
+    private BasContainerService basContainerService;
+    @Autowired
+    private BasAreasService basAreasService;
+    @Autowired
+    private StationRelaService stationRelaService;
 
     @Override
     @Transactional
@@ -578,7 +597,6 @@
         }
 
         Date now = new Date();
-
         // 鏃犲崟缁勬墭
         if (Cools.isEmpty(param.getOrderNo())) {
             // 鐢熸垚鍏ュ簱閫氱煡妗�
@@ -595,19 +613,27 @@
                 }
             });
 
-
             for (DetlDto detlDto : detlDtos) {
                 Mat mat = matService.selectByMatnr(detlDto.getMatnr());
                 if (Cools.isEmpty(mat)) {
                     throw new CoolException(detlDto.getMatnr() + "鍟嗗搧妗f涓嶅瓨鍦�");
                 }
+                if (mat.getUpQty().compareTo(detlDto.getAnfme()) < 0) {
+                    throw new CoolException("鐗╂枡锛�" + detlDto.getMatnr() + "鍗曟鏈�澶х粍鎵樹笂闄愪负锛�" + mat.getUpQty());
+                }
                 WaitPakin waitPakin = new WaitPakin();
                 BeanUtils.copyProperties(mat, waitPakin);
                 waitPakin.setBatch(detlDto.getBatch());
-                waitPakin.setZpallet(param.getBarcode());   // 鎵樼洏鐮�
-                waitPakin.setIoStatus("N");     // 鍏ュ嚭鐘舵��
-                waitPakin.setAnfme(detlDto.getAnfme());  // 鏁伴噺
-                waitPakin.setStatus("Y");    // 鐘舵��
+                waitPakin.setZpallet(param.getBarcode());
+                waitPakin.setIoStatus("N");
+                waitPakin.setAnfme(detlDto.getAnfme());
+                waitPakin.setStatus("Y");
+                waitPakin.setStandby1(detlDto.getStandby1());
+                waitPakin.setStandby2(detlDto.getStandby2());
+                waitPakin.setStandby3(detlDto.getStandby3());
+                waitPakin.setBoxType1(detlDto.getBoxType1());
+                waitPakin.setBoxType2(detlDto.getBoxType2());
+                waitPakin.setBoxType3(detlDto.getBoxType3());
                 waitPakin.setAppeUser(userId);
                 waitPakin.setAppeTime(now);
                 waitPakin.setModiUser(userId);
@@ -638,7 +664,7 @@
                 }
 
                 if (elem.getAnfme() > detls.getEnableQty()) {
-                    throw new CoolException(detls.getMatnr() + "鍏ュ簱鏁伴噺涓嶅悎娉�");
+                    throw new CoolException(detls.getMatnr() + "鍏ュ簱鏁伴噺涓嶅悎瑙勫垯");
                 }
                 OrderInAndOutUtil.increaseWorkQty(Boolean.TRUE, order.getId(), elem.getMatnr(), elem.getBatch(), elem.getBrand(), elem.getStandby1(), elem.getStandby2(), elem.getStandby3(),
                         elem.getBoxType1(), elem.getBoxType2(), elem.getBoxType3(), elem.getAnfme());
@@ -654,11 +680,40 @@
                     detlDtos.add(detlDto);
                 }
             });
+
+            BasContainer container = basContainerService.selectOne(new EntityWrapper<BasContainer>().eq("barcode", param.getBarcode()));
+            if (Objects.isNull(container)) {
+                throw new CoolException("鏁版嵁閿欒锛氬鍣ㄧ爜涓嶅瓨鍦紒锛�");
+            }
+            if (container.getMixMax() < detlDtos.size()) {
+                throw new CoolException("瓒呭嚭瀹瑰櫒鏈�澶ф贩瑁呮暟閲忥紝褰撳墠瀹瑰櫒鏈�澶ф暟閲忎负锛�" + container.getMixMax() + "!!");
+            }
+            Set<String> matnrs = detlDtos.stream().map(DetlDto::getMatnr).collect(Collectors.toSet());
+            List<Mat> mats = matService.selectList(new EntityWrapper<Mat>().in("matnr", matnrs));
+            Set<Long> tagIds = mats.stream().map(Mat::getTagId).collect(Collectors.toSet());
+            if (tagIds.size() > 1) {
+                throw new CoolException("缁勬墭鐗╂枡绫诲瀷涓嶄竴鑷达紝鍙湁鐩稿悓鐨勭墿鏂欏垎绫绘墠鍙互缁勬墭锛侊紒");
+            }
+            //杩樺彲浠ユ斁鍏ュ灏戠鐗╂枡
+            Integer suplus = container.getMixMax();
             for (DetlDto detlDto : detlDtos) {
                 Mat mat = matService.selectByMatnr(detlDto.getMatnr());
                 if (Cools.isEmpty(mat)) {
                     throw new CoolException(detlDto.getMatnr() + "鍟嗗搧妗f涓嶅瓨鍦�");
                 }
+                //鏈�澶氬彲鏀炬暟閲�
+                Double singleMax = mat.getUpQty() * suplus;
+                if (singleMax.compareTo(detlDto.getAnfme()) < 0) {
+                    throw new CoolException("鐗╂枡锛�" + detlDto.getMatnr() + "鍗曟缁勬墭涓婇檺涓猴細" + mat.getUpQty() + ",褰撳墠鎬婚噺瓒呭嚭鎵樼洏瑁呰浇涓婇檺!!");
+                }
+                BigDecimal decimal = new BigDecimal(detlDto.getAnfme() / mat.getUpQty());
+                //褰撳墠鐗╂枡闇�瑕佸崰鐢ㄦ枡绠辨牸鏁�
+                Integer curr = decimal.setScale(0, RoundingMode.CEILING).intValue();
+                suplus = suplus - curr;
+                if (suplus < 0) {
+                    throw new CoolException("鐗╂枡锛�" + detlDto.getMatnr() + ", 瓒呭嚭褰撳墠鎵樼洏瑁呰浇涓婇檺锛侊紒");
+                }
+
                 WaitPakin waitPakin = new WaitPakin();
                 BeanUtils.copyProperties(mat, waitPakin);
 //                waitPakin.sync(mat);
@@ -919,7 +974,6 @@
                         log.error("", e);
                     }
                 }
-
             }
 
             // 鐢熸垚鍏ュ簱鍗曟嵁
@@ -1147,13 +1201,12 @@
                 .eq("frozen", 0)
                 .ne("full_plt", "Y")
                 .eq("loc_sts", LocStsType.LOC_STS_TYPE_O.type).orderAsc(Arrays.asList("row1"))));
-
     }
 
     /**
      * @author Ryan
      * @date 2025/9/22
-     * @description: 鍛煎彨AGV鎼繍
+     * @description: 鍛煎彨绌鸿溅
      * @version 1.0
      */
     @Override
@@ -1209,6 +1262,356 @@
 
     /**
      * @author Ryan
+     * @date 2025/9/24
+     * @description: AGV鍛煎彨鎼繍
+     * @version 1.0
+     */
+    @Override
+    public R OutCallAgv(AgvCallParams params, Long userId) {
+        /**鑾峰彇鍏ュ簱鏈�鏃╃殑涓�鏉℃暟鎹�**/
+        LocCache locCaches = locCacheService.selectOne(new EntityWrapper<LocCache>()
+                .eq("loc_sts", LocStsType.LOC_STS_TYPE_F.type)
+                .eq("frozen", 0)
+                .orderDesc(Arrays.asList("sort", "first_time"))
+                .last("OFFSET 0 ROWS FETCH NEXT 1 ROWS ONLY"));
+        if (Objects.isNull(locCaches)) {
+            throw new CoolException("鏆傛棤婊¤冻闇�姹傚簱浣嶏紒");
+        }
+        BasStation station = basStationService.selectOne(new EntityWrapper<BasStation>()
+                .eq("loc_sts", LocStsType.LOC_STS_TYPE_O.type)
+                .eq("dev_no", params.getTarSite()));
+        if (Objects.isNull(station)) {
+            throw new CoolException("绔欑偣姝e湪鎵ц浠诲姟锛侊紒");
+        }
+
+        /**鐢熸垚缂撳瓨鍖哄嚭搴撲换鍔�*/
+        generateCacheOutTask(station, locCaches, userId);
+
+//        /**鐢熸垚绔嬪簱鍑哄簱浠诲姟*/
+        generateCRNOutTask(station, locCaches, userId);
+
+        return R.ok();
+    }
+
+    @Override
+    public R callEmptyCar(AgvCallParams params, Long userId) {
+
+        BasAreas basAreas = basAreasService.selectOne(new EntityWrapper<BasAreas>().eq("name", params.getOrgSite()));
+
+
+        List<LocCache> locCaches = locCacheService.selectList(new EntityWrapper<LocCache>()
+                .eq("loc_sts", LocStsType.LOC_STS_TYPE_D.type)
+                .eq("area_id", basAreas.getId())
+        );
+        if (locCaches.isEmpty()){
+            throw new CoolException("鏆傛棤绌烘澘搴撲綅");
+        }
+
+        BasStation station = basStationService.selectOne(new EntityWrapper<BasStation>()
+                .eq("loc_sts", LocStsType.LOC_STS_TYPE_O.type)
+                .eq("dev_no", params.getTarSite()));
+        if (Objects.isNull(station)) {
+            throw new CoolException("绔欑偣姝e湪鎵ц浠诲姟锛侊紒");
+        }
+        generateCacheOutTask(station, locCaches.get(0), userId);
+
+
+//        HIKApiDTO hikApiDTO =new HIKApiDTO()
+//                .setOrg(locCaches.get(0).getLocNo())
+//                .setOrgType("05")
+//                .setTar(params.getTarSite())
+//                .setTarType("05")
+//                .setTaskType("GT5")
+//                .setPriority("1")
+//                .setCtnrType("2")
+//                ;
+//        HIKResultDTO hikResultDTO = sendAgvTask(hikApiDTO, HIKApiConstant.AGV_CALL_IN_PATH);
+//        if (!hikResultDTO.isSuccess()){
+//            return R.error(hikResultDTO.getMessage());
+//        }
+
+        return R.ok();
+    }
+
+    @Override
+//    @Transactional(rollbackFor = Exception.class)
+    public R collectionInCall(AgvCallParams params, Long userId) {
+        if (Objects.isNull(params.getOrgSite())) {
+            throw new CoolException("婧愮珯鐐逛笉鑳戒负绌猴紒锛�");
+        }
+
+        List<Task> tasks = taskService.selectList(new EntityWrapper<Task>().eq("barcode", params.getBarcode()));
+        if (!tasks.isEmpty()){
+            throw new CoolException("鎵樼洏鐮佸凡鐢熸垚浠诲姟");
+        }
+
+        BasAreas basAreas = basAreasService.selectOne(new EntityWrapper<BasAreas>().eq("name", params.getTarSite()));
+
+        List<LocCache> locCaches = locCacheService.selectList(new EntityWrapper<LocCache>()
+                .in("loc_sts", LocStsType.LOC_STS_TYPE_O.type, LocStsType.LOC_STS_TYPE_D.type)
+                .eq("area_id", basAreas.getId())
+        );
+        if (locCaches.isEmpty()) {
+            throw new CoolException("褰撳墠鏆傛棤绌哄簱浣嶏紒锛�");
+        }
+
+        generateAgvTask("agv", locCaches.get(0), params.getOrgSite(), params.getBarcode(), userId);
+
+        return R.ok();
+    }
+
+    /**
+     * 鐢熸垚绔嬪簱鍑哄簱浠诲姟
+     * @author Ryan
+     * @date 2025/12/3 8:06
+     * @param locCaches
+     */
+    @Override
+    @Transactional(rollbackFor = Exception.class)
+    public void generateCRNOutTask(BasStation station, LocCache locCaches, Long userId) {
+        if (Objects.isNull(locCaches)) {
+            throw new CoolException("搴撲綅涓嶈兘涓虹┖锛侊紒");
+        }
+        //鑾峰彇缂撳瓨鍖轰俊鎭�
+        BasAreas basAreas = basAreasService.selectOne(new EntityWrapper<BasAreas>().eq("whs_type_id", LocAreaType.LOC_AREA_TYPE_IN_CACHE.type));
+        if (Objects.isNull(basAreas)) {
+            throw new CoolException("搴撳尯涓嶅瓨鍦紒锛�");
+        }
+        List<LocDetl> locDetls = locDetlService.selectList(new EntityWrapper<LocDetl>()
+                .eq("area_id", basAreas.getId())
+                .eq("loc_id", locCaches.getId()));
+        if (Objects.isNull(locDetls)) {
+            throw new CoolException("搴撳瓨鏄庣粏涓嶅瓨鍦紒锛�");
+        }
+        //鑾峰彇绔嬪簱鍖轰俊鎭�
+        BasAreas one = basAreasService.selectOne(new EntityWrapper<BasAreas>().eq("whs_type_id", LocAreaType.LOC_AREA_TYPE_CRN.type));
+        if (Objects.isNull(one)) {
+            throw new CoolException("鏁版嵁閿欒锛氬簱鍖轰笉瀛樺湪锛侊紒");
+        }
+
+        List<StationRela> relas = stationRelaService.selectList(new EntityWrapper<StationRela>().eq("agv_sta", station.getDevNo()));
+        if (Objects.isNull(relas) || relas.isEmpty()) {
+            throw new CoolException("绔欑偣鏈叧鑱斿爢鍨涙満浣滀笟绔欑偣锛侊紒");
+        }
+
+        Set<String> crnStas = relas.stream().map(StationRela::getCrnSta).collect(Collectors.toSet());
+
+        List<BasDevp> devps = basDevpService.selectList(new EntityWrapper<BasDevp>().in("dev_no", crnStas).eq("loading", CommonStation.COMMON_STATION_Y.type));
+        if (Objects.isNull(devps) || devps.isEmpty()) {
+            throw new CoolException("鏃犵珯鐐瑰彲鐢紒");
+        }
+        Collections.shuffle(devps);
+        BasDevp basDevp = devps.stream().findFirst().get();
+
+        List<LocMast> locMasts = new ArrayList<>();
+        Map<String, List<LocDetl>> listMap = locDetls.stream().collect(Collectors.groupingBy(LocDetl::getMatnr));
+        listMap.forEach((matnr, detls) -> {
+            //鏍规嵁supId(渚涘簲鍟�)鍒嗙被锛屽緱鍒板嚭搴撴�绘暟
+            Map<String, List<LocDetl>> supIds = detls.stream().collect(Collectors.groupingBy(LocDetl::getStandby1));
+            supIds.forEach((supId, sups) -> {
+                Double sum = sups.stream().mapToDouble(LocDetl::getAnfme).sum();
+                //鑾峰彇褰撳墠渚涘簲鍟�+ 鐗╂枡鍦ㄥ簱
+                List<LocDetl> detlList = locDetlService.selectList(new EntityWrapper<LocDetl>()
+                        .eq("matnr", matnr)
+                        .eq("area_id", one.getId())
+                        .eq("standby1", supId).orderAsc(Arrays.asList("appe_time")));
+                //TODO銆� 鍒ゆ柇鏄惁鏈夋柊搴撲綅锛屾病鏈夋柊搴撲綅锛屽啀鎵炬湁绌烘牸鐨勪綅缃斁   1. 鍒ゆ柇褰撳墠鐗╂枡鏄惁鏈夊簱瀛� 2. 娌℃湁浣欐枡鏌ヨ鏂板簱浣�
+
+                if (!Objects.isNull(detlList) && !detlList.isEmpty()) {
+                    Map<String, List<LocDetl>> locMaps = detlList.stream().collect(Collectors.groupingBy(LocDetl::getLocNo));
+                    locMaps.forEach((locNo, adetls) -> {
+                        LocMast locMast = locMastService.selectById(locNo);
+                        if (Objects.isNull(locMast)) {
+                            throw new CoolException("鏁版嵁閿欒锛屽簱浣嶄俊鎭笉瀛樺湪锛侊紒");
+                        }
+                        BasContainer container = basContainerService.selectOne(new EntityWrapper<BasContainer>().eq("barcode", locMast.getBarcode()));
+                        if (Objects.isNull(container)) {
+                            throw new CoolException("鏁版嵁閿欒锛屽鍣ㄤ笉瀛樺湪锛侊紒");
+                        }
+                        Set<String> sets = adetls.stream().map(LocDetl::getMatnr).collect(Collectors.toSet());
+                        //鍒ゆ柇瀹瑰櫒鏄惁杩樺彲娣锋斁,鍙婂綋鍓嶇墿鏂欏彲鏀惧灏�
+                        if (container.getMixMax() > sets.size()) {
+                            int suplus = container.getMixMax() - sets.size();
+                            Mat mats = matService.selectOne(new EntityWrapper<Mat>().eq("matnr", matnr));
+                            if (Objects.isNull(mats)) {
+                                throw new CoolException("鐗╂枡涓嶅瓨鍦紒锛�");
+                            }
+                            Double v = mats.getUpQty() * suplus;
+                            //灏忎簬闆�
+                            if (sum.compareTo(v) <= 0) {
+                                //鍙斁涓�
+                                locMasts.add(locMast);
+                            }
+                        }
+                    });
+                }
+            });
+        });
+
+        if (!locMasts.isEmpty()) {
+            //鐢熸垚鍫嗗灈鏈哄嚭搴撲换鍔�
+            generateOutTask(locMasts, TaskIOType.MERGE_OUT.type, basDevp, userId);
+        }
+    }
+
+    /**
+     * 鐢熸垚鍫嗗灈鏈哄嚭搴撲换鍔�
+     * @author Ryan
+     * @date 2025/12/6 14:44
+     * @param locMasts
+     */
+    @Transactional(rollbackFor = Exception.class)
+    public void generateOutTask(List<LocMast> locMasts, Integer ioType, BasDevp devp, Long userId) {
+        Date now = new Date();
+        for (LocMast locMast : locMasts) {
+            if (Objects.isNull(ioType)) {
+                continue;
+            }
+            Integer outSta = devp.getDevNo();
+            // 鑾峰彇璺緞
+            StaDesc staDesc = staDescService.queryCrnStn(ioType, locMast.getCrnNo(), outSta);
+            // 鐢熸垚宸ヤ綔鍙�
+            int workNo = commonService.getWorkNo(WorkNoType.getWorkNoType(ioType));
+            // 鐢熸垚宸ヤ綔妗�
+            WrkMast wrkMast = new WrkMast();
+            wrkMast.setWrkNo(workNo);
+            wrkMast.setIoTime(now);
+            wrkMast.setWrkSts(11L); // 宸ヤ綔鐘舵�侊細11.鐢熸垚鍑哄簱ID
+            wrkMast.setIoType(ioType); // 鍏ュ嚭搴撶被鍨�
+            wrkMast.setIoPri(13D); // 浼樺厛绾э細13
+            wrkMast.setCrnNo(locMast.getCrnNo());
+            wrkMast.setSourceStaNo(staDesc.getCrnStn() + ""); // 婧愮珯
+            wrkMast.setStaNo(staDesc.getStnNo() + ""); // 鐩爣绔�
+            wrkMast.setSourceLocNo(locMast.getLocNo()); // 婧愬簱浣�
+            wrkMast.setFullPlt("Y"); // 婊℃澘锛歒
+            wrkMast.setPicking("N"); // 鎷f枡
+            wrkMast.setExitMk("N"); // 閫�鍑�
+            wrkMast.setEmptyMk("N"); // 绌烘澘
+            wrkMast.setLinkMis("N");
+            wrkMast.setBarcode(locMast.getBarcode());
+            wrkMast.setAppeUser(userId); // 鎿嶄綔浜哄憳鏁版嵁
+            wrkMast.setAppeTime(now);
+            wrkMast.setModiUser(userId);
+            wrkMast.setModiTime(now);
+            if (!wrkMastService.insert(wrkMast)) {
+                throw new CoolException("淇濆瓨宸ヤ綔妗eけ璐ワ紝鍑哄簱搴撲綅鍙凤細" + locMast.getLocNo());
+            }
+
+            List<LocDetl> locDetls = locDetlService.selectList(new EntityWrapper<LocDetl>().eq("loc_no", locMast.getLocNo()));
+
+            // 鐢熸垚宸ヤ綔妗f槑缁�
+            for (LocDetl detlDto : locDetls) {
+                WrkDetl wrkDetl = new WrkDetl();
+                BeanUtils.copyProperties(detlDto, wrkDetl);
+                wrkDetl.setOrderNo(""); // 鎵嬪姩鍑哄簱涓嶉渶瑕佸甫鍑哄簱瀛樹腑鐨勫崟鎹紪鍙�
+                wrkDetl.setWrkNo(workNo);
+                wrkDetl.setIoTime(now);
+                wrkDetl.setAppeTime(now);
+                wrkDetl.setAppeUser(userId);
+                wrkDetl.setModiTime(now);
+                wrkDetl.setModiUser(userId);
+                if (!wrkDetlService.insert(wrkDetl)) {
+                    throw new CoolException("淇濆瓨宸ヤ綔妗f槑缁嗗け璐�");
+                }
+            }
+            // 淇敼搴撲綅鐘舵��:   F.鍦ㄥ簱 ====>>> R.鍑哄簱棰勭害/P.鎷f枡/鐩樼偣/骞舵澘鍑哄簱涓�
+            locMast = locMastService.selectById(locMast.getLocNo());
+            if (locMast.getLocSts().equals(LocStsType.LOC_STS_TYPE_F.type)) {
+                locMast.setLocSts(ioType == 101 ? "R" : "P");
+                locMast.setModiUser(userId);
+                locMast.setModiTime(now);
+                if (!locMastService.updateById(locMast)) {
+                    throw new CoolException("棰勭害搴撲綅鐘舵�佸け璐ワ紝搴撲綅鍙凤細" + locMast.getLocNo());
+                }
+            } else {
+                throw new CoolException(locMast.getLocNo() + "搴撲綅涓嶆槸鍦ㄥ簱鐘舵��");
+            }
+        }
+    }
+
+    /**
+     * @author Ryan
+     * @date 2025/9/25
+     * @description: 鍛煎彨AGV鐢熸垚鍑哄簱浠诲姟
+     * @version 1.0
+     */
+    @Transactional(rollbackFor = Exception.class)
+    public void generateCacheOutTask(BasStation station, LocCache loc, Long userId) {
+        // 鑾峰彇宸ヤ綔鍙�
+        int workNo = commonService.getWorkNo(WorkNoType.PICK.type);
+        // 淇濆瓨宸ヤ綔妗�
+        Task task = new Task();
+        task.setWrkNo(workNo)
+                .setIoTime(new Date())
+                .setWrkSts(11L) // 宸ヤ綔鐘舵�侊細11.鐢熸垚鍑哄簱ID
+                .setIoType(loc.getLocSts().equals("D") ? 110 : 101) // 鍏ュ嚭搴撶姸鎬侊細 11.搴撴牸绉昏浇
+                .setTaskType("agv")
+                .setIoPri(10D)
+                .setFullPlt(loc.getLocSts().equals("D") ? "N" : "Y") // 婊℃澘锛歒
+                .setPicking("N") // 鎷f枡
+                .setExitMk("N")// 閫�鍑�
+                .setStaNo(station.getDevNo())
+                .setSourceLocNo(loc.getLocNo())
+                .setEmptyMk(loc.getLocSts().equals("D") ? "Y" : "N")// 绌烘澘
+                .setBarcode(loc.getBarcode())// 鎵樼洏鐮�
+                .setLinkMis("N")
+                .setAppeUser(userId)
+                .setAppeTime(new Date())
+                .setModiUser(userId)
+                .setModiTime(new Date());
+        if (!taskService.insert(task)) {
+            throw new CoolException("淇濆瓨宸ヤ綔妗eけ璐�");
+        }
+        List<LocDetl> detls = locDetlService.selectList(new EntityWrapper<LocDetl>().eq("loc_id", loc.getId()));
+        if (!detls.isEmpty()) {
+            List<TaskDetl> taskDetls = new ArrayList<>();
+            detls.forEach(pakin -> {
+                TaskDetl wrkDetl = new TaskDetl();
+                BeanUtils.copyProperties(pakin, wrkDetl);
+                wrkDetl.setWrkNo(workNo)
+                        .setIoTime(new Date())
+                        .setOrderNo(pakin.getOrderNo())
+                        .setAnfme(pakin.getAnfme())
+                        .setZpallet(pakin.getZpallet())
+                        .setBatch(pakin.getBatch())
+                        .setMatnr(pakin.getMatnr())
+                        .setMaktx(pakin.getMaktx())
+                        .setAppeUser(userId)
+                        .setUnit(pakin.getUnit())
+                        .setModel(pakin.getModel())
+                        .setAppeTime(new Date())
+                        .setModiUser(userId);
+                taskDetls.add(wrkDetl);
+            });
+            //淇濆瓨宸ヤ綔妗f槑缁�
+            if (!taskDetlService.insertBatch(taskDetls)) {
+                throw new CoolException("淇濆瓨宸ヤ綔妗f槑缁嗗け璐�");
+            }
+        }
+
+        loc.setLocSts(LocStsType.LOC_STS_TYPE_R.type);
+        loc.setModiUser(userId);
+        loc.setModiTime(new Date());
+
+        if (!locCacheService.updateById(loc)) {
+            throw new CoolException("鏇存柊搴撲綅鐘舵�佷俊鎭紒锛�");
+        }
+
+        // 淇敼鐩爣绔欑偣淇℃伅
+        if (station.getLocSts().equals("O")) {
+            station.setLocSts("S"); // S.鍏ュ簱棰勭害
+            station.setModiTime(new Date());
+            station.setModiUser(userId);
+            if (!basStationService.updateById(station)) {
+                throw new CoolException("鏇存柊鐩爣搴撲綅鐘舵�佸け璐�");
+            }
+        } else {
+            throw new CoolException("绉昏浆澶辫触锛岀洰鏍囧簱浣嶇姸鎬侊細" + station.getLocSts());
+        }
+    }
+
+    /**
+     * @author Ryan
      * @date 2025/9/22
      * @description: 鐢熸垚AGV鎼繍浠诲姟
      * @version 1.0
@@ -1225,8 +1628,8 @@
         Task task = new Task();
         task.setWrkNo(workNo)
                 .setIoTime(new Date())
-                .setWrkSts(11L) // 宸ヤ綔鐘舵�侊細11.鐢熸垚鍑哄簱ID
-                .setIoType(11) // 鍏ュ嚭搴撶姸鎬侊細 11.搴撴牸绉昏浇
+                .setWrkSts(1L) // 宸ヤ綔鐘舵�侊細11.鐢熸垚鍑哄簱ID
+                .setIoType(1) // 鍏ュ嚭搴撶姸鎬侊細 11.搴撴牸绉昏浇
                 .setTaskType("agv")
                 .setIoPri(10D)
                 .setLocNo(loc.getLocNo()) // 鐩爣搴撲綅
@@ -1269,9 +1672,16 @@
         if (!taskDetlService.insertBatch(taskDetls)) {
             throw new CoolException("淇濆瓨宸ヤ綔妗f槑缁嗗け璐�");
         }
+
+        pakins.forEach(pakin -> {pakin.setIoStatus("Y");});
+
+        if (!waitPakinService.updateBatchById(pakins)) {
+            throw new CoolException("鏇存柊缁勬墭淇℃伅澶辫触");
+        }
+
         // 淇敼鐩爣搴撲綅鐘舵��
-        if (loc.getLocSts().equals("O")) {
-            loc.setLocSts("S"); // S.鍏ュ簱棰勭害
+        if (loc.getLocSts().equals(LocStsType.LOC_STS_TYPE_O.type)) {
+            loc.setLocSts(LocStsType.LOC_STS_TYPE_S.type); // S.鍏ュ簱棰勭害
             loc.setModiTime(new Date());
             loc.setModiUser(userId);
             if (!locCacheService.updateById(loc)) {
@@ -1280,5 +1690,73 @@
         } else {
             throw new CoolException("绉昏浆澶辫触锛岀洰鏍囧簱浣嶇姸鎬侊細" + loc.getLocSts$());
         }
+
+        // 淇敼鐩爣绔欑偣淇℃伅
+        BasStation station = basStationService.selectOne(new EntityWrapper<BasStation>().eq("dev_no", orgSite));
+        if (station.getLocSts().equals("O")) {
+            station.setLocSts("R"); // S.鍏ュ簱棰勭害
+            station.setBarcode(barcode);
+            station.setModiTime(new Date());
+            station.setModiUser(userId);
+            if (!basStationService.updateById(station)) {
+                throw new CoolException("鏇存柊鐩爣搴撲綅鐘舵�佸け璐�");
+            }
+        } else {
+            throw new CoolException("绉昏浆澶辫触锛岀洰鏍囧簱浣嶇姸鎬侊細" + station.getLocSts());
+        }
+    }
+
+
+    public HIKResultDTO sendAgvTask(HIKApiDTO haiKangApiDTO,String path){
+        HIKResultDTO result = new HIKResultDTO();
+
+        ForwardAGVTaskDTO forwardAGVTaskParam = new ForwardAGVTaskDTO();
+        forwardAGVTaskParam.setReqCode(UUID.randomUUID().toString().replace("-", ""));
+        forwardAGVTaskParam.setClientCode("IWMS");
+        forwardAGVTaskParam.setTaskTyp(haiKangApiDTO.getTaskType());
+        forwardAGVTaskParam.setCtnrTyp(haiKangApiDTO.getCtnrType());
+        forwardAGVTaskParam.setPriority(haiKangApiDTO.getPriority());
+        List<ForwardAGVTaskDTO.PositionCodePaths> positionCodePathsList = new ArrayList<>();
+        positionCodePathsList.add(new ForwardAGVTaskDTO.PositionCodePaths(haiKangApiDTO.getOrg(), haiKangApiDTO.getOrgType()));
+        positionCodePathsList.add(new ForwardAGVTaskDTO.PositionCodePaths(haiKangApiDTO.getTar(), haiKangApiDTO.getTarType()));
+        forwardAGVTaskParam.setPositionCodePath(positionCodePathsList);
+
+        String body = JSON.toJSONString(forwardAGVTaskParam);
+        String response = "";
+        try {
+            response = new HttpHandler.Builder()
+                    .setUri(HIKApiConstant.AGV_IP)
+                    .setPath(path)
+                    .setJson(body)
+                    .build()
+                    .doPost();
+            JSONObject jsonObject = JSON.parseObject(response);
+            if (jsonObject.getInteger("code").equals(0)) {
+                result.setSuccess(true);
+            } else {
+                result.setMessage(jsonObject.getString("message"));
+                log.error("鍙戦�乤gv浠诲姟澶辫触锛侊紒锛乽rl锛歿}锛況equest锛歿}锛況esponse锛歿}", HIKApiConstant.AGV_IP + path, body, response);
+            }
+//            {"code":"1","data":"","interrupt":false,"message":"閲嶅鎻愪氦","msgErrCode":"0x3a80D012","reqCode":"fa92b49481a44627ae4d80c1400f28f6"}
+        } catch (Exception e) {
+            result.setMessage(e.getMessage());
+            log.error("鍙戦�乤gv浠诲姟寮傚父", e);
+        } finally {
+            try {
+                // 淇濆瓨鎺ュ彛鏃ュ織
+                apiLogService.save(
+                        "鍙戦�乤gv浠诲姟",
+                        HIKApiConstant.AGV_IP + path,
+                        null,
+                        "127.0.0.1",
+                        body,
+                        response,
+                        result.isSuccess()
+                );
+            } catch (Exception e) {
+                log.error("", e);
+            }
+        }
+        return result;
     }
 }

--
Gitblit v1.9.1