Procházet zdrojové kódy

feat(types): 传统结算组件增加费用类型

vian před 3 roky
rodič
revize
cb06773816
1 změnil soubory, kde provedl 5 přidání a 2 odebrání
  1. 5 2
      types/src/interface/process.ts

+ 5 - 2
types/src/interface/process.ts

@@ -583,14 +583,16 @@ export interface IAuditCommentHistory {
 export interface ISettlementItem {
 export interface ISettlementItem {
   // 建设项目ID
   // 建设项目ID
   constructionID: string;
   constructionID: string;
-  // 建设项目名称
-  constructionName: string;
+  // 名称
+  name: string;
   // 项目原报金额
   // 项目原报金额
   orgFee: string;
   orgFee: string;
   // 当前步骤审核金额
   // 当前步骤审核金额
   curFee: string;
   curFee: string;
   // 清单检测合格率
   // 清单检测合格率
   billCheckRate: string;
   billCheckRate: string;
+  // 费用类型
+  type?: AuditMoneyType;
 }
 }
 
 
 // 传统结算已上报审核数据
 // 传统结算已上报审核数据
@@ -622,4 +624,5 @@ export interface ISettlementAuditItem {
   // 审核状态
   // 审核状态
   approvalStatus?: string;
   approvalStatus?: string;
   children: ISettlementAuditItem[];
   children: ISettlementAuditItem[];
+  type?: AuditMoneyType;
 }
 }