自动化立体仓库 - WMS系统
*
L
2026-01-21 505211a75e1652b92c2bb75d09f0d45b7d73d29e
src/main/java/com/zy/asrs/service/impl/MobileServiceImpl.java
@@ -1567,7 +1567,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<>();