Sfoglia il codice sorgente

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

qinlaiqiao 4 anni fa
parent
commit
b791a9ea0d
2 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  1. 2 0
      types/src/interface/bill.ts
  2. 2 0
      types/src/interface/project.ts

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

@@ -127,6 +127,8 @@ export interface IBill extends IBRBase {
   feeRate?: number; // 费率值
   mainBills?: boolean; // 主要清单
   lockUnitPrice?: boolean; // 锁定单价
+  maxPrice?: number; // 最高限价
+  minPrice?: number; // 最低限价
   [key: string]: any; // 剩下的之后补充
 }
 

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

@@ -235,6 +235,8 @@ export interface IProperty {
   distributeSetting?: IDistributeSetting; // 强制修改叶子清单的综合单价,分摊计算定额工程量 或 分摊计算定额下的工料机消耗量。
   colMetas?: IColumnMeta[];
   valuationName?: string; // 计价规则名称
+  maxLimitPriceRate?: number; // 设置最高限价单价浮动率
+  minLimitPriceRate?: number; // 设置最低限价单价浮动率
 }
 
 // 原来的列设置太复杂了,没什么必要