From 66c991b89f3f22f04dd5d56f852938c31dd16798 Mon Sep 17 00:00:00 2001
From: L <L@123>
Date: 星期三, 21 一月 2026 08:19:00 +0800
Subject: [PATCH] *

---
 src/main/java/com/zy/asrs/service/impl/MobileServiceImpl.java |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 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 f10f470..ec219b7 100644
--- a/src/main/java/com/zy/asrs/service/impl/MobileServiceImpl.java
+++ b/src/main/java/com/zy/asrs/service/impl/MobileServiceImpl.java
@@ -426,6 +426,11 @@
     @Override
     @Transactional
     public void PalletizingCompleteTwoFloorParam(PalletizingCompleteTwoFloorParam param) {
+        EntityWrapper<BasBoxType> wrapper = new EntityWrapper<>();
+        List<BasBoxType> basBoxTypes = basBoxTypeService.selectList(wrapper.orderBy("id",true).eq("box_specs",param.getBoxType()));
+
+
+
         Long userId = 7777L;//涓帶
         param.setPalletizingNo(212);
 
@@ -1567,7 +1572,15 @@
     @Transactional
     public List<Map<String, Object>> boxTypeComb() {
         EntityWrapper<BasBoxType> wrapper = new EntityWrapper<>();
+        EntityWrapper<BasBoxType> wrapper2 = new EntityWrapper<>();
         List<Map<String, Object>> result = new ArrayList<>();
+        List<BasBoxType> basBoxTypes999 = basBoxTypeService.selectList(wrapper2.orderBy("id",true).eq("arm_type",999));
+        for (BasBoxType basBoxType : basBoxTypes999){
+            Map<String, Object> map = new HashMap<>();
+            map.put("boxType", basBoxType.getBoxType());
+            map.put("boxSpecs", basBoxType.getBoxSpecs());
+            result.add(map);
+        }
         List<BasBoxType> basBoxTypes = basBoxTypeService.selectList(wrapper.orderBy("id",true).eq("arm_type",1));
         for (BasBoxType basBoxType : basBoxTypes){
             Map<String, Object> map = new HashMap<>();

--
Gitblit v1.9.1