[agent-pipeline] pipe-20260329080516-zyud round-1

This commit is contained in:
DDD1542
2026-03-29 17:48:45 +09:00
parent 9277c93ddc
commit 0fc2101331
32 changed files with 213 additions and 189 deletions
+6 -6
View File
@@ -9,9 +9,9 @@ import type { ButtonDataflowConfig, ExtendedControlContext } from "@/types/contr
export interface ButtonExecutionContext {
buttonId: string;
screenId?: number;
companyCode?: string;
userId?: string;
screen_id?: number;
company_code?: string;
user_id?: string;
formData: Record<string, any>;
selectedRows?: any[];
selectedRowsData?: Record<string, any>[];
@@ -193,9 +193,9 @@ function prepareContextData(context: ButtonExecutionContext): Record<string, any
const baseContext = {
buttonId: context.buttonId,
screenId: context.screenId,
companyCode: context.companyCode,
userId: context.userId,
screen_id: context.screen_id,
company_code: context.company_code,
user_id: context.user_id,
controlDataSource: dataSource,
};