|
@@ -57,8 +57,7 @@ public class RepairInvoiceController extends BaseController {
|
|
if(StringUtils.isBlank(param.getRepairId())){
|
|
if(StringUtils.isBlank(param.getRepairId())){
|
|
throw new BusinessException(ResultCode.MISSING_REQUIRED_PARAMETERS);
|
|
throw new BusinessException(ResultCode.MISSING_REQUIRED_PARAMETERS);
|
|
}
|
|
}
|
|
- repairInvoiceService.getByRepairId(param.getRepairId());
|
|
|
|
- return ResultData.ok();
|
|
|
|
|
|
+ return ResultData.ok(repairInvoiceService.getByRepairId(param.getRepairId()));
|
|
}
|
|
}
|
|
|
|
|
|
@PostMapping("/open")
|
|
@PostMapping("/open")
|