This commit is contained in:
van
2026-05-05 14:58:52 +08:00
parent e75f71d37b
commit 8b5abb44ee
4 changed files with 113 additions and 23 deletions

View File

@@ -28,8 +28,8 @@ public class InstructionController extends BaseController {
public AjaxResult execute(@RequestBody Map<String, Object> body) {
String cmd = body != null ? (body.get("command") != null ? String.valueOf(body.get("command")) : null) : null;
boolean forceGenerate = body != null && body.get("forceGenerate") != null && Boolean.parseBoolean(String.valueOf(body.get("forceGenerate")));
// 控制台入口,传递 isFromConsole=true跳过订单查询校验
java.util.List<String> result = instructionService.execute(cmd, forceGenerate, true);
// 控制台入口:全量统计视角(排除后台标记不参与统计的联盟),非单个企微成员
java.util.List<String> result = instructionService.execute(cmd, forceGenerate, true, null);
return AjaxResult.success(result);
}