Преглед изворни кода

Merge branch 'master' of http://192.168.1.41:3000/SmartCost/SCCommon

LuoHaoxuan пре 3 година
родитељ
комит
523792cbb7
1 измењених фајлова са 15 додато и 2 уклоњено
  1. 15 2
      types/src/interface/process.ts

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

@@ -282,7 +282,17 @@ export enum ApprovalStatus {
   APPROVED = 'approved', // 审批通过
 }
 
+// 审核费用类型
+export enum AuditMoneyType {
+  // 建设项目相关费用
+  CONSTRUCTION = 'construction',
+  // 费用项
+  FEE_ITEM = 'feeItem',
+}
+
 export interface IProcessAuditMoney {
+  ID: string;
+  type: AuditMoneyType;
   processID: string;
   data: any[];
 }
@@ -574,14 +584,16 @@ export interface IAuditCommentHistory {
 export interface ISettlementItem {
   // 建设项目ID
   constructionID: string;
-  // 建设项目名称
-  constructionName: string;
+  // 名称
+  name: string;
   // 项目原报金额
   orgFee: string;
   // 当前步骤审核金额
   curFee: string;
   // 清单检测合格率
   billCheckRate: string;
+  // 费用类型
+  type?: AuditMoneyType;
 }
 
 // 传统结算已上报审核数据
@@ -613,4 +625,5 @@ export interface ISettlementAuditItem {
   // 审核状态
   approvalStatus?: string;
   children: ISettlementAuditItem[];
+  type?: AuditMoneyType;
 }