Просмотр исходного кода

feat(types): 面积增加费调整

zhangweicheng 4 лет назад
Родитель
Сommit
4c634f406c
2 измененных файлов с 2 добавлено и 2 удалено
  1. 2 0
      types/src/interface/base.ts
  2. 0 2
      types/src/interface/ration.ts

+ 2 - 0
types/src/interface/base.ts

@@ -267,6 +267,8 @@ export interface IBRBase {
   quantity?: number;
   quantityEXP?: string;
   quantityDetails?: IQuantityDetail[]; // 工程量明细 -- 原先保存在另外的表中
+  // 是否记取面积增加费
+  areaIncreaseFee?: boolean | null; // { type: Schema.Types.Mixed; default: false }; // true 是,false否,null 不确定,三个状态
   fees?: {
     [key: string]: {
       tenderTotalFee: number;

+ 0 - 2
types/src/interface/ration.ts

@@ -318,8 +318,6 @@ export interface IRation extends IBRBase {
   referenceRationID?: string; // 如果是通过模板关联子目生成的定额,这里记录对应的主定额ID
   jobContentText?: string; // 工作内容 (选择自清单)
   manageFeeRate?: number; // 管理费率
-  // 是否记取面积增加费
-  areaIncreaseFee?: boolean | null; // { type: Schema.Types.Mixed; default: false }; // true 是,false否,null 不确定,三个状态
   // 工料机特有属性
   // 工料机类型的定额或者特殊清单会用到市场价和调后价
   marketPrice?: number;