| | |
| | | import com.zy.asrs.service.*; |
| | | import com.core.annotations.ManagerAuth; |
| | | import com.zy.common.model.DetlDto; |
| | | import com.zy.common.model.LocDto; |
| | | import com.zy.common.web.BaseController; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | |
| | | private DocTypeService docTypeService; |
| | | |
| | | |
| | | @PostMapping(value = "/checkOrder/preview/auth") |
| | | @ManagerAuth |
| | | public R checkOrderPreview(@RequestParam("orderId") Long orderId) { |
| | | |
| | | |
| | | |
| | | List<LocDto> locDtos = checkOrderService.preview(orderId); |
| | | return R.ok(locDtos); |
| | | } |
| | | |
| | | |
| | | |
| | | @PostMapping(value = "/checkOrder/createTask/auth") |
| | | @ManagerAuth |