| | |
| | | import com.core.common.R; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import zy.cloud.wms.common.service.asrs.AsrsService; |
| | | import zy.cloud.wms.common.web.BaseController; |
| | | import zy.cloud.wms.manager.entity.*; |
| | | import zy.cloud.wms.manager.entity.param.StockTransferParam; |
| | | import zy.cloud.wms.manager.service.MatService; |
| | | import zy.cloud.wms.manager.service.NodeService; |
| | | import zy.cloud.wms.manager.service.PriorService; |
| | |
| | | private MatService matService; |
| | | @Autowired |
| | | private NodeService nodeService; |
| | | @Autowired |
| | | private AsrsService asrsService; |
| | | |
| | | /** |
| | | * 安全库存警告分页 |
| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | @RequestMapping(value = "/available/take/site") |
| | | @ManagerAuth |
| | | public R takeSite() { |
| | | Object response = asrsService.takeSite().getData(); |
| | | return R.ok(response); |
| | | } |
| | | |
| | | @RequestMapping(value = "/get/asrsLocDetl") |
| | | @ManagerAuth |
| | | public R getLocDetl(String matnr) { |
| | | Object response = asrsService.getAsrsLocDetl(matnr).getData(); |
| | | return R.ok(response); |
| | | } |
| | | } |