|
|
@@ -231,9 +231,6 @@ INTERFACE_EXPORT = (() => {
|
|
|
'量价': 14,
|
|
|
};
|
|
|
const rate = isEmptyVal(item.rate) ? '100' : item.rate; // 为空时输出=100,为0时输出=0
|
|
|
- /* if (!FeeRateTypeMap[rootItem.name]) {
|
|
|
- debugger;
|
|
|
- } */
|
|
|
const attrs = [
|
|
|
{ name: 'Bm', value: FeeRateCodeMap[item.name] }, // 编码
|
|
|
{ name: 'Name', value: item.name }, // 名称
|
|
|
@@ -475,7 +472,7 @@ INTERFACE_EXPORT = (() => {
|
|
|
{ name: 'Dw', value: glj.unit }, // 单位
|
|
|
{ name: 'Dj', value: glj.priceInfo.tenderPrice, type: TYPE.DECIMAL }, // 预算价,调后
|
|
|
{ name: 'Sl', value: glj.tenderQuantity, type: TYPE.DECIMAL }, // 总消耗量
|
|
|
- { name: 'Hj', value: glj.totalPrice, type: TYPE.DECIMAL }, // 合价,人材料总消耗量*预算价
|
|
|
+ { name: 'Hj', value: glj.priceInfo.totalPrice, type: TYPE.DECIMAL }, // 合价,人材料总消耗量*预算价
|
|
|
{ name: 'Cd', value: '' }, // 产地
|
|
|
{ name: 'Gycs', value: '' }, // 厂商
|
|
|
{ name: 'Rcjlb', value: rootType, type: TYPE.INT }, // 人材机类型 1=人工;2=材料;3=机械
|
|
|
@@ -690,7 +687,7 @@ INTERFACE_EXPORT = (() => {
|
|
|
map[glj.projectGLJID] = {
|
|
|
rcjID: projectGLJIDToRcjID[glj.projectGLJID],
|
|
|
totalQuantity: glj.tenderQuantity,
|
|
|
- price: glj.tenderPrice,
|
|
|
+ price: projectGLJ.priceInfo.tenderPrice,
|
|
|
isEvaluate: !!projectGLJ.is_evaluate,
|
|
|
isMainMaterial: !!projectGLJ.is_main_material
|
|
|
};
|