| | |
| | | import com.vincent.rsf.framework.common.R; |
| | | |
| | | import com.vincent.rsf.server.manager.entity.Loc; |
| | | import com.vincent.rsf.server.manager.entity.Transfer; |
| | | import com.vincent.rsf.server.manager.service.MatnrGroupService; |
| | | import com.vincent.rsf.server.system.controller.BaseController; |
| | | import io.swagger.annotations.Api; |
| | |
| | | return receiveMsgService.syncLocsDetl(pageParam, wrapper); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/21 |
| | | * @description: 调拔单信息查询 |
| | | * @version 1.0 |
| | | */ |
| | | @PostMapping("/query/transfer") |
| | | @ApiOperation("查询调拔单及明细") |
| | | @OperationLog("调拔单及明细查询") |
| | | public R queryTransfer(@RequestBody QueryOrderParam queryParams) { |
| | | if (Objects.isNull(queryParams)) { |
| | | throw new CoolException("参数不能为空!!"); |
| | | } |
| | | return receiveMsgService.queryTransfer(queryParams); |
| | | } |
| | | } |