| | |
| | | package zy.cloud.wms.pda.controller; |
| | | |
| | | import com.baomidou.mybatisplus.mapper.EntityWrapper; |
| | | import com.core.annotations.ManagerAuth; |
| | | import com.core.common.R; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import zy.cloud.wms.common.web.BaseController; |
| | | import zy.cloud.wms.manager.entity.Comb; |
| | | import zy.cloud.wms.manager.service.CombService; |
| | | import zy.cloud.wms.pda.entity.CombParam; |
| | | import zy.cloud.wms.pda.service.MobileService; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 移动端接口控制器 |
| | |
| | | |
| | | @Autowired |
| | | private MobileService mobileService; |
| | | @Autowired |
| | | private CombService combService; |
| | | |
| | | /** |
| | | * 组托 |
| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * 根据库位号查找库存明细 |
| | | */ |
| | | @PostMapping("/inStock/auth") |
| | | @ManagerAuth |
| | | public R getLocDetl(@RequestParam String zpallet){ |
| | | List<Comb> combs = combService.selectList(new EntityWrapper<Comb>().eq("zpallet", zpallet).eq("io_status", 1)); |
| | | return R.ok().add(combs); |
| | | } |
| | | |
| | | |
| | | // /** |
| | | // * 根据库位号查找库存明细 |