|
|
@@ -5,17 +5,18 @@ export interface ICalcOption {
|
|
|
calcEst: boolean;
|
|
|
}
|
|
|
|
|
|
-// 调价选项
|
|
|
-export enum TenderOption {
|
|
|
- COE_BASE = 'coeBase',
|
|
|
- GLJ_BASE = 'gljBase',
|
|
|
- ZM_BASE = 'zmBase',
|
|
|
+// 调价类型:
|
|
|
+export enum TenderKinds {
|
|
|
+ COE_CALC, // 正向调价-按系数计算
|
|
|
+ REVERSE_RATION, // 反向调价-调子目
|
|
|
+ REVERSE_GLJ, // 反向调价-调工料机
|
|
|
+ NULL, // 无需参数时,用作占位
|
|
|
}
|
|
|
|
|
|
// 调价设置
|
|
|
export interface ITenderSetting {
|
|
|
gljPriceTenderCoe: number; // 工料机单价调整系数
|
|
|
- calcPriceOption: TenderOption; // 根据调整系数计算报价
|
|
|
+ tenderKind: TenderKinds;
|
|
|
}
|
|
|
|
|
|
export interface ICalcItem {
|