|  |  | 
 |  |  | package com.zy.asrs.wms.controller; | 
 |  |  |  | 
 |  |  | import com.alibaba.fastjson.JSONArray; | 
 |  |  | import com.alibaba.fastjson.JSONObject; | 
 |  |  | import com.alibaba.fastjson.JSON; | 
 |  |  | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; | 
 |  |  | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | 
 |  |  | import com.zy.asrs.common.domain.entity.Parameter; | 
 |  |  | 
 |  |  | import com.zy.asrs.framework.common.DateUtils; | 
 |  |  | import com.zy.asrs.common.web.BaseController; | 
 |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
 |  |  | import org.springframework.beans.factory.annotation.Value; | 
 |  |  | import org.springframework.transaction.annotation.Transactional; | 
 |  |  | import org.springframework.web.bind.annotation.*; | 
 |  |  |  | 
 |  |  | import java.util.*; | 
 |  |  |  | 
 |  |  | @RestController | 
 |  |  | 
 |  |  |     private LocMastService locMastService; | 
 |  |  |     @Autowired | 
 |  |  |     private LocDetlService locDetlService; | 
 |  |  |  | 
 |  |  |     @Value("${wcs.url}") | 
 |  |  |     private String WCS_URL; | 
 |  |  |  | 
 |  |  |     @RequestMapping(value = "/locMast/{id}/auth") | 
 |  |  |     @ManagerAuth | 
 |  |  | 
 |  |  |         if (!Cools.isEmpty(param.get("loc_no"))) { | 
 |  |  |             wrapper.eq(LocMast::getLocNo, param.get("loc_no")); | 
 |  |  |         } | 
 |  |  |         if (!Cools.isEmpty(param.get("loc_sts"))) { | 
 |  |  |             wrapper.eq(LocMast::getLocSts, param.get("loc_sts")); | 
 |  |  |         } | 
 |  |  |         return R.ok(locMastService.page(new Page<>(curr, limit), wrapper)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | 
 |  |  |         return R.ok(); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |    @RequestMapping(value = "/locMast/update/auth") | 
 |  |  |    @ManagerAuth | 
 |  |  |     @RequestMapping(value = "/locMast/update/auth") | 
 |  |  |     @ManagerAuth(memo = "库位修改") | 
 |  |  |     public R update(LocMast locMast){ | 
 |  |  |         if (Cools.isEmpty(locMast) || null==locMast.getLocNo()){ | 
 |  |  |             return R.error(); | 
 |  |  |         } | 
 |  |  |         locMastService.updateById(locMast); | 
 |  |  |         LocMast oldLocMast = locMastService.getOne(new LambdaQueryWrapper<LocMast>().eq(LocMast::getLocNo, locMast.getLocNo()).eq(LocMast::getHostId, getHostId())); | 
 |  |  |         if (locMast.getLocSts().equals("F") && (oldLocMast.getLocSts().equals("D") || oldLocMast.getLocSts().equals("O"))) { | 
 |  |  |             return R.error("当前操作已被阻止,请联系管理员"); | 
 |  |  |         } | 
 |  |  |         // 有物料时修改为空库位或者空板库位,则删除库存明细 | 
 |  |  |         if (oldLocMast.getLocSts().equals("R") || oldLocMast.getLocSts().equals("F")) { | 
 |  |  |             if (locMast.getLocSts().equals("O") || locMast.getLocSts().equals("D")) { | 
 |  |  |                 locDetlService.remove(new LambdaQueryWrapper<LocDetl>().eq(LocDetl::getLocNo, locMast.getLocNo())); | 
 |  |  |             } | 
 |  |  |         } | 
 |  |  |         locMast.setModiUser(getUserId()); | 
 |  |  |         locMast.setModiTime(new Date()); | 
 |  |  |         locMastService.update(locMast,new LambdaQueryWrapper<LocMast>().eq(LocMast::getLocNo, locMast.getLocNo()).eq(LocMast::getHostId, getHostId())); | 
 |  |  |         return R.ok(); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | 
 |  |  |                     locMast.setModiUser(getUserId()); | 
 |  |  |                     locMast.setModiTime(new Date()); | 
 |  |  |                     locMast.setHostId(hostId); | 
 |  |  |                     locMast.setWhsType(0L); | 
 |  |  |                     list.add(locMast); | 
 |  |  |                 } | 
 |  |  |             } | 
 |  |  | 
 |  |  |         return R.ok("初始化成功"); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @GetMapping("/locMast/picUrl") | 
 |  |  |     @ManagerAuth | 
 |  |  |     public R getPicUrl(@RequestParam String locNo) { | 
 |  |  |         LocMast locMast = locMastService.getOne(new LambdaQueryWrapper<LocMast>() | 
 |  |  |                 .eq(LocMast::getLocNo, locNo) | 
 |  |  |                 .eq(LocMast::getHostId, getHostId())); | 
 |  |  |         if (locMast == null) { | 
 |  |  |             return R.error(); | 
 |  |  |         } | 
 |  |  |  | 
 |  |  |         ArrayList<String> list = new ArrayList<>(); | 
 |  |  |         String picStr = locMast.getPic(); | 
 |  |  |         if (Cools.isEmpty(picStr)) { | 
 |  |  |             return R.ok().add(list); | 
 |  |  |         } | 
 |  |  |         List<String> pics = JSON.parseArray(picStr, String.class); | 
 |  |  |         for (String pic : pics) { | 
 |  |  |             list.add("http://" + WCS_URL + "/image/" + pic + "-1.jpg"); | 
 |  |  |             list.add("http://" + WCS_URL + "/image/" + pic + "-2.jpg"); | 
 |  |  |         } | 
 |  |  |         return R.ok().add(list); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | } |