|
|
|
@ -92,4 +92,13 @@ public class AppEnfCpPlanController extends EfcodeCpPlanController { |
|
|
|
String opMessage = params.get("opMessage"); |
|
|
|
return cpReserveService.doReserve(targetPlanId, opMessage); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 计划自动匹配预约(手动触发,强制匹配并落库) |
|
|
|
*/ |
|
|
|
@GetMapping("/autoMatchReserve") |
|
|
|
public R<Void> autoMatchReserve() { |
|
|
|
cpPlanService.autoMatchReserve(true, true, true); |
|
|
|
return R.ok(); |
|
|
|
} |
|
|
|
} |
|
|
|
|