|
@@ -120,6 +120,7 @@ export interface IRationCoe {
|
|
|
originalCode?: string;
|
|
originalCode?: string;
|
|
|
optionList?: IOptionList[];
|
|
optionList?: IOptionList[];
|
|
|
optionCodes?: string; // 可选人材机编码
|
|
optionCodes?: string; // 可选人材机编码
|
|
|
|
|
+ selectCode?: string; // 选中的人材机编码
|
|
|
isAdjust: boolean; // 默认 false
|
|
isAdjust: boolean; // 默认 false
|
|
|
coes: IStdCoe[];
|
|
coes: IStdCoe[];
|
|
|
}
|
|
}
|
|
@@ -242,8 +243,9 @@ export interface IGljQtyCoe {
|
|
|
|
|
|
|
|
// 实际保存到项目中的辅助定额数据
|
|
// 实际保存到项目中的辅助定额数据
|
|
|
export interface IRationAss extends IStdRationAss {
|
|
export interface IRationAss extends IStdRationAss {
|
|
|
|
|
+ ID: string;
|
|
|
actualValue?: number;
|
|
actualValue?: number;
|
|
|
- isAdjust?: boolean; // 是否调整
|
|
|
|
|
|
|
+ isAdjust: boolean; // 是否调整
|
|
|
groupList?: IRationAss[]; // 当有分组的时候用这个
|
|
groupList?: IRationAss[]; // 当有分组的时候用这个
|
|
|
// 这里辅助定额直接保存工料机的数据,用的时候不用再获取
|
|
// 这里辅助定额直接保存工料机的数据,用的时候不用再获取
|
|
|
rationGljList?: IRationGlj[]; // 定额工料机
|
|
rationGljList?: IRationGlj[]; // 定额工料机
|
|
@@ -325,7 +327,7 @@ export interface IRation {
|
|
|
customQuantity?: string; // 自定义消耗
|
|
customQuantity?: string; // 自定义消耗
|
|
|
model?: number; // 机型
|
|
model?: number; // 机型
|
|
|
adjCoe?: number;
|
|
adjCoe?: number;
|
|
|
- remark?: string;
|
|
|
|
|
|
|
+ remark?: string; // 备注
|
|
|
bookmarkBackground?: string; // 书签背景色
|
|
bookmarkBackground?: string; // 书签背景色
|
|
|
bookmarkAnnotation?: string; // 批注
|
|
bookmarkAnnotation?: string; // 批注
|
|
|
overHeight?: string; // 超高降效
|
|
overHeight?: string; // 超高降效
|
|
@@ -350,3 +352,9 @@ export interface IStdRationsAndGljs {
|
|
|
rations: (IStdRation | ICptRation)[];
|
|
rations: (IStdRation | ICptRation)[];
|
|
|
rationGljs: (IStdRationGlj | ICptRationGlj)[];
|
|
rationGljs: (IStdRationGlj | ICptRationGlj)[];
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+export enum RationListType {
|
|
|
|
|
+ ASS = 'rationAssList',
|
|
|
|
|
+ COE = 'rationCoeList',
|
|
|
|
|
+ GLJ = 'rationGLJList',
|
|
|
|
|
+}
|