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