|
|
@@ -293,6 +293,8 @@ export enum AuditMoneyType {
|
|
|
export interface IProcessAuditMoney {
|
|
|
ID: string;
|
|
|
type: AuditMoneyType;
|
|
|
+ // 来源ID,有的数据是基于某条数据拷贝而来的,sourceID为被拷贝数据的ID,方便查找源数据
|
|
|
+ sourceID?: string;
|
|
|
processID: string;
|
|
|
data: any[];
|
|
|
}
|
|
|
@@ -585,7 +587,7 @@ export interface ISettlementItem {
|
|
|
// 建设项目ID
|
|
|
constructionID: string;
|
|
|
// 名称
|
|
|
- constructionName: string;
|
|
|
+ name: string;
|
|
|
// 项目原报金额
|
|
|
orgFee: string;
|
|
|
// 当前步骤审核金额
|
|
|
@@ -627,6 +629,8 @@ export interface ISettlementAuditItem {
|
|
|
// 审核状态
|
|
|
approvalStatus?: string;
|
|
|
children: ISettlementAuditItem[];
|
|
|
+ // 数据是否是原始数据(有的费用项是从上一步拷贝而来的,不给删除)
|
|
|
+ isOriginal?: boolean;
|
|
|
// 费用项ID
|
|
|
feeID?: string;
|
|
|
// 费用类型
|