自动化立体仓库 - WMS系统
*
L
2026-01-21 66c991b89f3f22f04dd5d56f852938c31dd16798
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<>();