[update] 法规符合性排查流程

This commit is contained in:
lideqin
2024-07-08 16:31:27 +08:00
parent 401f15d761
commit 8d826a244e
6 changed files with 158 additions and 103 deletions
+16 -10
View File
@@ -147,7 +147,7 @@ export const ProcessKey = {
// 标准解读流程
STANDARD_INTERPRETATION_PROCESS: { text: 'standard_interpret', value: 'standard_interpret' },
// 法规符合性排查流程
REGULATORY_COMPLIANCE_CHECK: { text: '', value: '' },
REGULATORY_COMPLIANCE_CHECK: { text: 'laws-evaluation-main', value: 'laws-evaluation-main' },
// 市场清单发布流程
MARKET_LIST_RELEASE: { text: '', value: '' }
}
@@ -174,15 +174,15 @@ export const NewRegulationsImportNodes = new EsEnums({
// 法规符合性排查流程
export const RegulatoryComplianceCheckNodes = new EsEnums({
initiated: { text: '法规工程师发起', value: '' },
interfacesDistributed: { text: '各部门接口人分发', value: '' },
mainFinderDistributes: { text: '主排查人分发', value: '' },
designEngineerEvaluation: { text: '设计工程师评估', value: '' },
mainFinderSingleLineAudit: { text: '主排查人单线审核', value: '' },
mainFinderCollect: { text: '主排查人汇总', value: '' },
countersign: { text: '会签', value: '' },
designEngineerManagerReview: { text: '设计工程师科室经理审核', value: '' },
seniorManagerApproved: { text: '高级经理/技术官批准', value: '' }
initiated: { text: '法规工程师发起', value: 'sid-F144BD89-366F-482C-89DE-3AE2BD22D371' },
interfacesDistributed: { text: '各部门接口人分发', value: 'sid-F07416DD-65BF-499E-AC96-F7A407AA3CEB' },
mainFinderDistributes: { text: '主排查人分发', value: 'sid-96A59284-7EE2-4F10-A327-F76BC26B95F8' },
designEngineerEvaluation: { text: '设计工程师评估', value: 'sid-45FC4ED6-DB83-49E0-A080-55192B7860EB' },
mainFinderSingleLineAudit: { text: '主排查人单线审核', value: 'sid-C9A2FE2E-8A8A-4846-8010-5AE4ECF14DFE' },
mainFinderCollect: { text: '主排查人汇总', value: 'sid-A478E1B2-84B6-4884-875B-E6C53392BC4F' },
countersign: { text: '会签', value: 'sid-D3B3377E-9392-44D6-81D5-9DDDA91FB083' },
designEngineerManagerReview: { text: '设计工程师科室经理审核', value: 'sid-B253F229-2E92-4882-A054-EAA068069F0F' },
seniorManagerApproved: { text: '高级经理/技术官批准', value: 'sid-31D9FF6F-D1BE-4B02-910C-5DB7A5D0A626' }
})
// 市场清单发布流程节点
@@ -240,3 +240,9 @@ export const EvaluationResult = {
NOT_INVOLVE: { text: '不涉及', value: '3' },
TO_BE_VERIFIED: { text: '待验证', value: '4' }
}
// 法规符合性排查流程-新增方式
export const AddType = {
SELECT_STANDARD: { text: '选择标准', value: '1' },
MANUAL_ADD: { text: '手动新增', value: '2' }
}