|
|
@@ -1,3 +1,4 @@
|
|
|
+import { IScopeType } from './process';
|
|
|
import { BusinessTypeKey, MatterTypeKey } from './gather';
|
|
|
|
|
|
// 审批金额汇总组件阶段数据
|
|
|
@@ -31,7 +32,13 @@ export interface IMatter {
|
|
|
auditAmountConfig?: IAuditSummaryConfig[];
|
|
|
// 审核意见组件配置
|
|
|
auditCommentsConfig?: IAuditCommentConfig;
|
|
|
+
|
|
|
+ // 多文件组件合格率设置
|
|
|
settlementPassingRate?: number;
|
|
|
+ // 多文件组件区间来源可见性范围
|
|
|
+ settlementSourceScope?: IScopeType[];
|
|
|
+ // 多文件组件区间来源项目名称可见性范围
|
|
|
+ settlementProjectScope?: IScopeType[];
|
|
|
}
|
|
|
|
|
|
export interface IGatherMatter extends IMatter {
|