| | |
| | | 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.RequestParam; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import zy.cloud.wms.common.web.BaseController; |
| | | import zy.cloud.wms.manager.entity.param.StockInParam; |
| | |
| | | return workService.stockIn(stockInParam, getUserId()); |
| | | } |
| | | |
| | | @RequestMapping("/stock/out/check") |
| | | @ManagerAuth(memo = "拣货") |
| | | public R stockOutCheck(@RequestParam String number) { |
| | | return workService.stockOutCheck(number, getUserId()); |
| | | } |
| | | |
| | | @RequestMapping("/stock/out") |
| | | @ManagerAuth(memo = "拣货") |
| | | public R stockOut(@RequestBody StockOutParam stockOutParam) { |