@@ -43,6 +43,7 @@ export interface IFinancialProject {
delete?: number;
sendReviewTime?: string; // 送审时间
completionTime?: string; // 审结时间
+ estimateCode?: string; // 批复概算编号
/* 为了实现三合一业务审批显示全部业务并且分页的需求 */
members?: string[]; // 项目参与者
@@ -49,6 +49,7 @@ export interface IStepMatter {
profilePermission: string[];
auditCommentsPermission: string[];
settlementPermission: string[];
+ budgetComparePermission: string[];
}
export interface IGatherStepMatter extends IStepMatter {
@@ -640,3 +640,22 @@ export interface ISettlementAuditItem {
// 备注
remark?: string;
+
+// 概算预算阶段造价对比 审核明细表格数据
+export interface IBudgetEstimateTableItem {
+ name: string;
+ // 原报金额
+ reportFee: string;
+ // 审核金额
+ curFee: string;
+ // 增减金额
+ incFee?: string;
+ decFee?: string;
+ // 增减率
+ incRate?: string;
+ decRate?: string;
+ // 审核状态
+ approvalStatus?: string;
+ // 审核状态文本
+ approvalStatusText?: string;
+}