add 企标计划变更流程

This commit is contained in:
lijiarao
2024-10-08 10:08:22 +08:00
parent fc8aa97318
commit 99d28de428
5 changed files with 260 additions and 68 deletions
+48 -16
View File
@@ -155,22 +155,32 @@ alter table process_plan_change
create table process_plan_change_link
(
id varchar(36) not null comment '主键id',
process_id varchar(36) comment '流程主表id',
revision_type varchar(50) comment '制修订类别',
plan_id varchar(36) comment '企标计划',
drafting_user varchar(50) comment '起草人',
depart_id varchar(50) comment '所在部门id',
draft_complete_date datetime comment '初稿完成日期变更后',
plan_archiving_date datetime comment '计划归档日期变更后',
change_reason varchar(500) comment '变更原因',
create_by varchar(36) comment '创建',
create_time datetime comment '创建时间',
update_by varchar(36) comment '更新人',
update_time datetime comment '更新时间',
org_code varchar(64) comment '所属部门',
del_flag tinyint comment '删除状态(0-正常,1-删除)',
primary key (id)
id varchar(36) not null comment '主键id'
primary key,
process_id varchar(36) null comment '流程主表id',
revision_type varchar(50) null comment '制修订类别',
plan_id varchar(36) null comment '企标计划id',
standard_id varchar(50) null comment '标准id',
standard_number varchar(200) null comment '标准编号',
standard_name varchar(200) null comment '标准名称',
main_drafting_user varchar(50) null comment '起草人',
main_drafting_user_new varchar(50) null comment '新起草',
depart_id varchar(50) null comment '所在部门id',
depart_id_new varchar(50) null comment '新所在部门id',
professional_module varchar(30) null comment '专业模块',
draft_complete_date datetime null comment '初稿完成日期',
plan_archiving_date datetime null comment '计划归档日期',
draft_complete_date_change datetime null comment '初稿完成日期变更后',
plan_archiving_date_change datetime null comment '计划归档日期变更后',
have_english_version varchar(50) null comment '是否有英文版',
committee varchar(500) null comment '所属技术委员会',
change_reason varchar(500) null comment '变更原因',
create_by varchar(36) null comment '创建人',
create_time datetime null comment '创建时间',
update_by varchar(36) null comment '更新人',
update_time datetime null comment '更新时间',
org_code varchar(64) null comment '所属部门',
del_flag tinyint null comment '删除状态(0-正常,1-删除)'
);
alter table process_plan_change_link
@@ -258,3 +268,25 @@ VALUES ('1836301659982864385', '1836301517254893569', '取消', '3', '', 3, 1, '
-- 企标状态增加 征求意见 --
INSERT INTO `sys_dict_item` (`id`, `dict_id`, `parent_id`, `item_text`, `en_name`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `is_tag_dict`, `is_read_only`, `attribute_type`, `del_flag`, `stat_node`, `en_base`) VALUES ('1696811980113661954', '1696811542077329409', NULL, '征求意见', 'Seek For Opinions', '2', '征求意见', 2, 1, 'admin', '2023-08-30 17:07:56', NULL, NULL, 1, 1, NULL, '0', NULL, NULL);
-- 企标计划变更-变更类型
INSERT INTO sys_dict (id, dict_name, dict_code, description, del_flag, create_by, create_time, is_tag_dict,
is_read_only)
VALUES ('1843464136587796482', '企标计划变更-变更类型', 'espc_change_type', '新增,取消,延期,人员变更', 0, 'cheryrsm', '2024-10-08 09:31:14',
0, 0);
INSERT INTO sys_dict_item (id, dict_id, item_text, en_name, item_value, description, sort_order, `status`, create_by,
create_time, is_tag_dict, is_read_only, del_flag)
VALUES ('1843464372399955969', '1843464136587796482', '新增', 'add', '1', '', 1, 1, 'cheryrsm', '2024-10-08 09:32:10', 0,
0, 0);
INSERT INTO sys_dict_item (id, dict_id, item_text, en_name, item_value, description, sort_order, `status`, create_by,
create_time, is_tag_dict, is_read_only, del_flag)
VALUES ('1843464482533990401', '1843464136587796482', '取消', 'cancel', '2', '', 2, 1, 'cheryrsm', '2024-10-08 09:32:37',
0, 0, 0);
INSERT INTO sys_dict_item (id, dict_id, item_text, en_name, item_value, description, sort_order, `status`, create_by,
create_time, is_tag_dict, is_read_only, del_flag)
VALUES ('1843464553690357761', '1843464136587796482', '延期', 'delay', '3', '', 3, 1, 'cheryrsm', '2024-10-08 09:32:54',
0, 0, 0);
INSERT INTO sys_dict_item (id, dict_id, item_text, en_name, item_value, description, sort_order, `status`, create_by,
create_time, is_tag_dict, is_read_only, del_flag)
VALUES ('1843464714877460481', '1843464136587796482', '人员变更', 'Person change', '4', '', 4, 1, 'cheryrsm',
'2024-10-08 09:33:32', 0, 0, 0);