| | |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.apache.tika.utils.StringUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.scheduling.annotation.Async; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | if (!Objects.isNull(params.get("type")) && params.get("type").equals("unbind")) { |
| | | return mobileService.getUnItemByContainer(params); |
| | | } else { |
| | | return mobileService.getItemByContainer(params); |
| | | return mobileService.getItemByContainer(params,getLoginUser()); |
| | | } |
| | | } |
| | | |
| | |
| | | if (Objects.isNull(map)) { |
| | | return R.error("参数不能为空!!"); |
| | | } |
| | | return mobileService.getItemByContainer(map); |
| | | return mobileService.getItemByContainer(map,getLoginUser()); |
| | | } |
| | | |
| | | @ApiOperation("获取订单不良物料") |