skyouc
18 小时以前 30c34b32416f96520624d766075d2f820d420e04
rsf-server/src/main/java/com/vincent/rsf/server/api/controller/erp/ErpQueryController.java
@@ -10,6 +10,7 @@
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;
@@ -86,5 +87,19 @@
        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);
    }
}