Skip to content

Commit 91d88ef

Browse files
committed
feat: sendemail节点新增是否发送飞书选项#AI Commit#
1 parent 3725f5f commit 91d88ef

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

db/dss_dml.sql

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@ insert into `dss_workflow_node_ui`(`id`,`key`,`description`,`description_en`,`l
143143
insert into `dss_workflow_node_ui`(`id`,`key`,`description`,`description_en`,`lable_name`,`lable_name_en`,`ui_type`,`required`,`value`,`default_value`,`is_hidden`,`condition`,`is_advanced`,`order`,`node_menu_type`,`is_base_info`,`position`) values (16,'to','请填写收件人','Please enter recipients','收件人','To','Input',1,NULL,NULL,0,NULL,0,1,1,0,'runtime');
144144
insert into `dss_workflow_node_ui`(`id`,`key`,`description`,`description_en`,`lable_name`,`lable_name_en`,`ui_type`,`required`,`value`,`default_value`,`is_hidden`,`condition`,`is_advanced`,`order`,`node_menu_type`,`is_base_info`,`position`) values (17,'cc','请填写抄送人','Please enter carbon copy recipients','抄送','Cc','Input',0,NULL,NULL,0,NULL,0,1,1,0,'runtime');
145145
insert into `dss_workflow_node_ui`(`id`,`key`,`description`,`description_en`,`lable_name`,`lable_name_en`,`ui_type`,`required`,`value`,`default_value`,`is_hidden`,`condition`,`is_advanced`,`order`,`node_menu_type`,`is_base_info`,`position`) values (18,'bcc','请填写秘密发送人','Please enter blind carbon copy recipients','秘密抄送','Bcc','Input',0,NULL,NULL,0,NULL,0,1,1,0,'runtime');
146+
insert into `dss_workflow_node_ui`(`id`,`key`,`description`,`description_en`,`lable_name`,`lable_name_en`,`ui_type`,`required`,`value`,`default_value`,`is_hidden`,`condition`,`is_advanced`,`order`,`node_menu_type`,`is_base_info`,`position`) values (48,'sendFeishu','请选择是否发送飞书','Please choose whether to send Feishu message','是否发送飞书','Send Feishu','Select',0,'["true","false"]','false',0,NULL,0,1,1,0,'runtime');
147+
insert into `dss_workflow_node_ui`(`id`,`key`,`description`,`description_en`,`lable_name`,`lable_name_en`,`ui_type`,`required`,`value`,`default_value`,`is_hidden`,`condition`,`is_advanced`,`order`,`node_menu_type`,`is_base_info`,`position`) values (49,'feishuTo','请填写飞书接收人英文名,多个用英文分号分隔','Please enter Feishu receiver name, separated by semicolons','飞书接收人','Feishu To','Input',0,NULL,NULL,0,NULL,0,1,1,0,'runtime');
146148
insert into `dss_workflow_node_ui`(`id`,`key`,`description`,`description_en`,`lable_name`,`lable_name_en`,`ui_type`,`required`,`value`,`default_value`,`is_hidden`,`condition`,`is_advanced`,`order`,`node_menu_type`,`is_base_info`,`position`) values (19,'itsm','请填写关联审批单','Please enter ITSM','关联审批单','ITSM','Input',1,NULL,NULL,0,NULL,0,1,1,0,'runtime');
147149
insert into `dss_workflow_node_ui`(`id`,`key`,`description`,`description_en`,`lable_name`,`lable_name_en`,`ui_type`,`required`,`value`,`default_value`,`is_hidden`,`condition`,`is_advanced`,`order`,`node_menu_type`,`is_base_info`,`position`) values (20,'msg.type','请正确填写消息类型','Please enter message type correctly','msg.type','msg.type','Disable',1,NULL,'SEND',0,NULL,0,1,1,0,'runtime');
148150
insert into `dss_workflow_node_ui`(`id`,`key`,`description`,`description_en`,`lable_name`,`lable_name_en`,`ui_type`,`required`,`value`,`default_value`,`is_hidden`,`condition`,`is_advanced`,`order`,`node_menu_type`,`is_base_info`,`position`) values (21,'msg.topic','消息主题,必须与eventreceiver完全一致','Message subject must be exactly the same as eventreceiver','msg.topic','msg.topic','Input',1,NULL,NULL,0,NULL,0,1,1,0,'runtime');
@@ -197,6 +199,8 @@ select @node_ui_content:=id from dss_workflow_node_ui where `key`='content';
197199
select @node_ui_to:=id from dss_workflow_node_ui where `key`='to';
198200
select @node_ui_cc:=id from dss_workflow_node_ui where `key`='cc';
199201
select @node_ui_bcc:=id from dss_workflow_node_ui where `key`='bcc';
202+
select @node_ui_sendFeishu:=id from dss_workflow_node_ui where `key`='sendFeishu';
203+
select @node_ui_feishuTo:=id from dss_workflow_node_ui where `key`='feishuTo';
200204
select @node_ui_itsm:=id from dss_workflow_node_ui where `key`='itsm';
201205
select @node_ui_msg_sender:=id from dss_workflow_node_ui where `key`='msg.sender';
202206
select @node_ui_msg_body:=id from dss_workflow_node_ui where `key`='msg.body';
@@ -553,4 +557,4 @@ VALUES(@workflow_node_eventsenderWTSS, @node_ui_auto_disabled);
553557

554558

555559
COMMIT;
556-
SET @@autocommit=1;
560+
SET @@autocommit=1;

0 commit comments

Comments
 (0)