|
|
@@ -9,7 +9,13 @@ import {
|
|
|
ITreeScm,
|
|
|
} from './base';
|
|
|
import { IBookmark } from './bill';
|
|
|
-import { GljType, ICptGlj, IStdGlj, MaterialType } from './glj';
|
|
|
+import {
|
|
|
+ GljType,
|
|
|
+ ICptDisplayRationGlj,
|
|
|
+ ICptGlj,
|
|
|
+ IStdGlj,
|
|
|
+ MaterialType,
|
|
|
+} from './glj';
|
|
|
import { IQuantityDetail } from './quantityDetail';
|
|
|
|
|
|
// 标准定额库
|
|
|
@@ -368,3 +374,21 @@ export interface IInsertCptRation {
|
|
|
machinePrice: number;
|
|
|
basePrice: number;
|
|
|
}
|
|
|
+
|
|
|
+// 更新补充定额人材机的请求数据
|
|
|
+export interface IUpdateCptRationGlj {
|
|
|
+ ID?: string | number; // 人材机ID
|
|
|
+ code?: string;
|
|
|
+ consumeAmt?: number;
|
|
|
+ from?: FromType;
|
|
|
+}
|
|
|
+
|
|
|
+// 更新补充定额人材机的返回更新数据
|
|
|
+export interface IUpdateCptRationGljResult {
|
|
|
+ labourPrice: number;
|
|
|
+ materialPrice: number;
|
|
|
+ machinePrice: number;
|
|
|
+ basePrice: number;
|
|
|
+ rationGljList: ICptRationGljRef[];
|
|
|
+ displayRationGljList: ICptDisplayRationGlj[];
|
|
|
+}
|