|
@@ -60,6 +60,12 @@ public class RepairInfoController extends BaseController{
|
|
@Autowired
|
|
@Autowired
|
|
IPriceListService priceListService;
|
|
IPriceListService priceListService;
|
|
|
|
|
|
|
|
+ @PostMapping("/invalidRepair/{repairId}")
|
|
|
|
+ public ResultData invalidRepair(@PathVariable String repairId){
|
|
|
|
+ repairService.invalidRepair(repairId);
|
|
|
|
+ return ResultData.ok();
|
|
|
|
+ }
|
|
|
|
+
|
|
@GetMapping("/details")
|
|
@GetMapping("/details")
|
|
public ResultData details(@RequestParam(required = false) String repairId){
|
|
public ResultData details(@RequestParam(required = false) String repairId){
|
|
if(StringUtils.isBlank(repairId)){
|
|
if(StringUtils.isBlank(repairId)){
|