|
@@ -47,6 +47,7 @@ public class TBDeviceInOutController {
|
|
|
private TBDeviceInOutService tbDeviceInOutService;
|
|
|
@Resource
|
|
|
private SysUserService sysUserService;
|
|
|
+ // TODO: 2023/11/10 设备出入库sop数据权限变更
|
|
|
|
|
|
@ApiOperation(value = "sop管理 - 设备出入库登记查询")
|
|
|
@RequestMapping(value = "/sop_page", method = RequestMethod.POST)
|
|
@@ -81,8 +82,8 @@ public class TBDeviceInOutController {
|
|
|
@RequestMapping(value = "/can_in_info", method = RequestMethod.POST)
|
|
|
@ApiResponses({@ApiResponse(code = 200, message = "查询成功", response = DeviceInOutResult.class)})
|
|
|
public Result findDeviceCanInInfo(@ApiParam(value = "供应商id") @RequestParam(required = false) String supplierId,
|
|
|
- @ApiParam(value = "派单号") @RequestParam(required = false) String crmNo) {
|
|
|
- return ResultUtil.ok(tbDeviceInOutService.findDeviceCanInInfo(SystemConstant.convertIdToLong(supplierId), crmNo));
|
|
|
+ @ApiParam(value = "派单号") @RequestParam(required = false) String sopNo) {
|
|
|
+ return ResultUtil.ok(tbDeviceInOutService.findDeviceCanInInfo(SystemConstant.convertIdToLong(supplierId), sopNo));
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "设备出入库提交")
|